@import url('../css/button/styleButton.css');

/* Fuentes locales: Eastman Roman Trial */
@font-face {
  font-family: 'Eastman Roman';
  src: url('../fonts/EastmanRomanTrial-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eastman Roman';
  src: url('../fonts/EastmanRomanTrial-Extralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eastman Roman';
  src: url('../fonts/EastmanRomanTrial-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eastman Roman';
  src: url('../fonts/EastmanRomanTrial-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eastman Roman';
  src: url('../fonts/EastmanRomanTrial-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eastman Roman';
  src: url('../fonts/EastmanRomanTrial-DemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eastman Roman';
  src: url('../fonts/EastmanRomanTrial-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eastman Roman';
  src: url('../fonts/EastmanRomanTrial-Extrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eastman Roman';
  src: url('../fonts/EastmanRomanTrial-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Tipografía global */
  --font-family: 'Eastman Roman', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  /* Fuente opcional para números (fallback anterior) */
  --font-numeric: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  --font-size-base: 16px; /* base para cálculo */
  --scale-ratio: 1.25;
  --primary: #00b4e8;
  --secondary: #01566b;
  --tertiary: #26d0f4;
  --fourth: #4b4a4a;
  --btn-color: #00b4e8;
  --title: #1a1919;
  --text: #141414;
  --btn-hover-color: #0e98be;
  --btn-border-color: #045a72;
}

body {
  color: white;
  overflow-x: hidden;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;


/* Jerarquía tipográfica sugerida */
h1 { font-size: calc(var(--font-size-base) * 2.25); line-height: 1.05; font-weight: 800; }
h2 { font-size: calc(var(--font-size-base) * 1.75); line-height: 1.15; font-weight: 700; }
h3 { font-size: calc(var(--font-size-base) * 1.375); line-height: 1.25; font-weight: 600; }
h4 { font-size: calc(var(--font-size-base) * 1.125); line-height: 1.3; font-weight: 600; }
h5 { font-size: calc(var(--font-size-base) * 1.0); line-height: 1.4; font-weight: 500; }
h6 { font-size: calc(var(--font-size-base) * 0.875); line-height: 1.4; font-weight: 500; }

.lead { font-size: calc(var(--font-size-base) * 1.125); font-weight: 400; }
small, .small { font-size: calc(var(--font-size-base) * 0.875); }

/* Botones y elementos destacados usarán weight semibold/bold por defecto */
button, .btn, .call-to-action { font-weight: 700; font-family: var(--font-family); }

/* Clase para forzar que los números usen la fuente opcional */
.nums { font-family: var(--font-numeric); }

/* Responsive adjustments */
@media (min-width: 768px) {
  :root { --font-size-base: 16px; }
  h1 { font-size: calc(var(--font-size-base) * 2.5); }
}

@media (min-width: 1200px) {
  :root { --font-size-base: 18px; }
}
}

/* Estilos para el scrollbar */
::-webkit-scrollbar {
  width: 12px;
  /* Ancho de la barra de desplazamiento */
}

/* Handle del scrollbar */
::-webkit-scrollbar-thumb {
  background: var(--btn-hover-color);
  /* Color del handle */
  border-radius: 6px;
  /* Bordes redondeados */
}


.scroolbarSubBlock::-webkit-scrollbar {
  width: 6px;
  /* Ancho de la barra de desplazamiento */

}

.scroolbarSubBlock::-webkit-scrollbar-thumb {
  background: var(--btn-hover-color);
  /* Nuevo color del handle */
  border-radius: 8px;
  /* Bordes redondeados */
}

.scroolbarSubBlock::-webkit-scrollbar-track {
  background: var(--btn-color);
  /* Color de fondo de la barra de desplazamiento */
  border-radius: 8px;
  /* Bordes redondeados */

}

/* ***************************************************************************************************************** */

/* estilo de gallery masonry */

.my-masonry-grid {
  display: -webkit-box;
  /* Not needed if autoprefixing */
  display: -ms-flexbox;
  /* Not needed if autoprefixing */
  display: flex;
  justify-content: center;
  margin-left: -30px;
  /* gutter size offset */
  width: auto;
}

.my-masonry-grid_column {
  padding-left: 30px;
  /* gutter size */
  background-clip: padding-box;
}

/* Style your items */
.my-masonry-grid_column>div {
  /* change div to reference your elements you put in <Masonry> */
  background: grey;
  margin-bottom: 20px;
}

/* ***************************************************************************************************************** */


.bg3 {
  background: rgb(251, 205, 5);
  background: linear-gradient(333deg, rgba(251, 205, 5, 1) 27%, rgba(255, 227, 104, 1) 100%);
}

.bg4 {
  background: rgb(252, 223, 93);
  background: linear-gradient(217deg, rgba(252, 223, 93, 1) 14%, rgba(255, 218, 58, 1) 37%, rgba(251, 205, 5, 1) 55%, rgba(235, 193, 15, 1) 79%);
}

.bg5 {
  background: rgb(120, 120, 120);
  background: linear-gradient(53deg, rgba(120, 120, 120, 1) 12%, rgba(159, 159, 159, 1) 32%, rgba(189, 189, 189, 1) 50%, rgba(159, 159, 159, 1) 64%, rgba(120, 120, 120, 1) 85%);
}