:root {
  --navy: #0b1f3a;
  --gold: #c9a84c;
  --white: #ffffff;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--navy);
  color: var(--white);
}

/* TITULOS */
h1, h2, .band-left {
  font-family: 'Cormorant', serif;
}

/* TEXTOS GENERALES */
p,
.nav a,
.cta,
.band-top,
.band-bottom {
  font-family: 'Montserrat', sans-serif;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 15px 8%;
  background: var(--navy);
}

/* LOGO */
.logo img {
  height: 50px;
  display: block;
}

/* NAV */
.nav {
  display: flex;
  gap: 30px;
  font-size: 12px;
  letter-spacing: 2px;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
}

.nav a:hover {
  opacity: 1;
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* SOCIAL */
.social {
  display: flex;
  gap: 12px;
}

.social img {
  width: 18px;
  filter: invert(1); /* blancos */
  opacity: 0.8;
  transition: 0.3s;
}

.social img:hover {
  opacity: 1;
}

/* CTA */
.cta {
  border: 1px solid var(--gold);
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
}

/* HERO */
.hero {
  display: grid !important;
  grid-template-columns: 1.1fr 1fr !important;

  align-items: stretch;

  min-height: 80vh;
}
.hero-left {
  padding: 100px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--gold);
  font-style: italic;
}

.hero p {
  font-size: 15px;

  font-family: 'Montserrat', sans-serif;
  font-weight: 500;

  line-height: 1.8;

  color: rgba(255,255,255,0.82);

  max-width: 420px;
  margin-bottom: 30px;

  opacity: 1;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy); /* azul */
  padding: 14px 22px;
  font-size: 12px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; /* bold */
  letter-spacing: 1px;
}

.btn-secondary {
  background: #ffffff; /* fondo blanco */
  color: var(--navy); /* texto azul */
  border: 1px solid rgba(255,255,255,0.4); /* podés ajustar si querés más contraste */

  padding: 14px 22px;
  font-size: 12px;
  cursor: pointer;

  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;

  display: inline-block;
  text-decoration: none;
}

/* HERO IMAGE */
.hero-right {
  position: relative;

  width: 100%;
  height: 100%;

  background-image: url('../images/01.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 35% center;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    var(--navy) 0%,
    rgba(11,31,58,0.85) 20%,
    rgba(11,31,58,0.4) 35%,
    transparent 55%
  );
}
/* BANDA */
.band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--gold);
  color: var(--navy); 
}

.band-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 40px;
  border-right: 1px solid rgba(0,0,0,0.2);
}

.band-item:last-child {
  border-right: none;
}

/* NÚMERO */
.band-left {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  line-height: 1;
}

/* TEXTOS */
.band-left {
  font-family: 'Cormorant', serif;
  font-size: 52px;
  line-height: 1;
}

.band-top {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
}

.band-bottom {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .band {
    grid-template-columns: 1fr;
  }

  .band-item {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.2);
  }

  .band-item:last-child {
    border-bottom: none;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    height: 300px;
  }

  .band {
    grid-template-columns: 1fr;
  }
}
/* ABOUT SECTION */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f5f5f5;
  color: #333;
}

/* IMAGE */
.about-image {
  background: url('../images/02.jpg') center/cover no-repeat;
  min-height: 600px;
}

/* CONTENT */
.about-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* EYEBROW CON LÍNEA */
.eyebrow-line {
  gap: 18px; /* antes 15 */
  margin-bottom: 35px;
}

.eyebrow-line span {
  width: 50px; /* antes 40 */
}

.eyebrow-line p {
  font-size: 13px; /* antes 11 */
  letter-spacing: 3px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500; /* le da más presencia */
}

/* TITULO */
.about h2 {
  font-family: 'Cormorant', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about h2 span {
  color: var(--gold);
  font-style: italic;
}

/* DIVIDER */
.divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 30px;
}

/* TEXTO */
.about p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
  }

  .about-image {
    height: 300px;
  }

  .about-content {
    padding: 60px 30px;
  }

  .about h2 {
    font-size: 34px;
  }
}

/* SERVICES SECTION */
.services-section {
  background: #eae6df;
  padding: 100px 8%;
}

/* TOP */
.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
}

.services-left h2 {
  font-family: 'Cormorant', serif;
  font-size: 48px;
  line-height: 1.2;
}

.services-left h2 span {
  color: var(--gold);
  font-style: italic;
}

.services-right {
  display: flex;
  align-items: center;
}

.services-right p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  max-width: 650px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d6d0c8;
  border-left: 1px solid #d6d0c8;
}

.service-item {
  padding: 40px;
  background: #ffffff; /* 👈 blanco */
  transition: all 0.3s ease;

  border-right: 1px solid #d6d0c8;
  border-bottom: 1px solid #d6d0c8;
}

/* ICON */
.icon {
  font-size: 22px;
  margin-bottom: 15px;
}

/* TITLE */
.service-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy); /* 👈 azul */
}

/* TEXT */
.service-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .services-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

}

.services-left h2 {
  font-family: 'Cormorant', serif;
  font-size: 48px;
  line-height: 1.2;
  color: var(--navy); /* 👈 azul */
}

/* EXPERIENCE SECTION */
.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  color: var(--white);
}

/* IMAGE */
.experience-image {
  background: url('../images/03.jpg') center/cover no-repeat;
  min-height: 600px;
}

/* CONTENT */
.experience-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* EYEBROW LIGHT */
.eyebrow-line.light p {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; /* semibold */
}

.eyebrow-line.light span {
  background: var(--gold);
}

/* TITLE */
.experience h2 {
  font-family: 'Cormorant', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.experience h2 span {
  color: var(--gold);
  font-style: italic;
}

/* TEXT */
.experience p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.8);
  max-width: 650px; /* 👈 más ancho */
}

/* BUTTON (ya lo tenías pero lo ajustamos) */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .experience {
    grid-template-columns: 1fr;
  }

  .experience-image {
    height: 300px;
  }

  .experience-content {
    padding: 60px 30px;
  }

  .experience h2 {
    font-size: 34px;
  }
}

.experience .btn-primary {
  display: inline-block;
  width: fit-content;
  min-width: 260px; /* podés ajustar */
  text-align: center;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* ITEM */
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 630 / 470; /* mantiene proporción */
}

/* IMAGEN */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* ZOOM */
.gallery-item:hover img {
  transform: scale(1.10);
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;

  background: linear-gradient(
    to top,
    rgba(11,31,58,0.6) 0%,
    rgba(11,31,58,0.3) 40%,
    transparent 70%
  );

  opacity: 0;
  transition: opacity 0.3s ease;
}

/* TEXTO */
.overlay p {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

/* HOVER */
.gallery-item:hover .overlay {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* CONTENEDORES (evita desbordes) */
.about-image,
.experience-image {
  overflow: hidden;
}

/* TRANSICIÓN */
/* CONTENEDORES */
.about-image,
.experience-image {
  overflow: hidden;
  position: relative;
  min-height: 600px; /* mantenemos altura */
}

/* IMÁGENES */
.about-image img,
.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1); /* estado inicial */
  transition: transform 0.6s ease; /* 👈 suavidad real */
}

/* HOVER (desde la sección, no solo la imagen) */
.about:hover .about-image img,
.experience:hover .experience-image img {
  transform: scale(1.15);
}

/* HOVER CARD */
.service-item:hover {
  background: var(--navy);
}
.service-item:hover {
  transform: translateY(-5px);
}

/* TEXTO EN HOVER */
.service-item:hover h3,
.service-item:hover p,
.service-item:hover .icon {
  color: #ffffff;
}

/* SECTION */
.forwho {
  background: #f5f5f5;
  padding: 100px 8%;
}

/* TOP */
.forwho-top {
  margin-bottom: 60px;
}

.forwho-left h2 {
  font-family: 'Cormorant', serif;
  font-size: 48px;
  line-height: 1.2;
  color: var(--navy);
}

.forwho-left h2 span {
  color: var(--gold);
  font-style: italic;
}

/* GRID */
.forwho-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ITEM */
/* GRID */
.forwho-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d6d0c8;
  border-left: 1px solid #d6d0c8;
}

/* CARD */
.forwho-item {
  padding: 40px;
  background: #ffffff;

  border-right: 1px solid #d6d0c8;
  border-bottom: 1px solid #d6d0c8;

  transition: all 0.3s ease;
}

/* TITULO CHICO (DORADO) */
.forwho-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

/* SUBTITULO */
.forwho-item h4 {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 15px;
}

/* TEXTO */
.forwho-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* HOVER */
.forwho-item:hover {
  background: var(--navy);
  transform: translateY(-5px);
}

/* TEXTO EN HOVER */
.forwho-item:hover h3,
.forwho-item:hover h4,
.forwho-item:hover p {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .forwho-grid {
    grid-template-columns: 1fr;
  }

  .forwho-left h2 {
    font-size: 34px;
  }
}

.forwho-left h2 {
  max-width: 800px; /* evita que se rompa en varias líneas */
}

html {
  scroll-behavior: smooth;
}

/* FAQ */
.faq {
  background: var(--navy);
  color: var(--white);
  padding: 100px 8%;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* TITULO */
.faq h2 {
  font-family: 'Cormorant', serif;
  font-size: 48px;
  line-height: 1.2;
  margin: 20px 0 60px;
}

.faq h2 span {
  color: var(--gold);
  font-style: italic;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 20px 0;
}

/* PREGUNTA */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ICONO */
.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* RESPUESTA */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 15px;
  color: rgba(255,255,255,0.8);
}

/* ACTIVO */
.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* CONTACTO */
.contact {
  background: #f5f5f5;
  padding: 100px 8%;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

/* TITULO */
.contact h2 {
  font-family: 'Cormorant', serif;
  font-size: 48px;
  line-height: 1.2;
  color: var(--navy);
  margin: 20px 0 20px;
}

.contact h2 span {
  color: var(--gold);
  font-style: italic;
}

/* INTRO */
.contact-intro {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 40px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* INPUTS */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  background: #fff;
}

/* FOCUS */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}

/* BOTON */
.contact .btn-primary {
  width: fit-content;
  margin-top: 10px;
}

/* FOOTER */
.footer {
  background: var(--navy);
  color: #fff;
  padding: 80px 8% 30px;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;

  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* LOGO */
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 25px;
}

/* TEXTO */
.footer-brand p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);

  max-width: 380px;
}

/* TITULOS */
.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;

  color: var(--gold);

  margin-bottom: 25px;
}

/* LINKS */
.footer a {
  display: block;

  font-family: 'Montserrat', sans-serif;
  font-size: 14px;

  color: rgba(255,255,255,0.75);

  text-decoration: none;

  margin-bottom: 14px;

  transition: color 0.3s ease;
}

/* HOVER */
.footer a:hover {
  color: #fff;
}

/* SOCIAL */
/* SOCIAL */
.footer-social {
  display: flex;
  gap: 22px;
  margin-top: 25px;
}

/* ICONOS */
.footer-social a {
  font-size: 22px; /* 👈 más grandes */
  color: rgba(255,255,255,0.75);

  transition: all 0.3s ease;
}

/* HOVER */
.footer-social a:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom {
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

.cta {
  border: 1px solid var(--gold);
  padding: 10px 20px;

  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;

  color: var(--white);
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

.cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* =========================
   MOBILE HEADER
========================= */

/* HAMBURGUESA */
.menu-toggle {
  display: none;

  width: 32px;
  height: 24px;

  background: transparent;
  border: none;

  cursor: pointer;

  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;

  width: 100%;
  height: 2px;

  background: #fff;

  margin: 6px 0;

  transition: all 0.3s ease;
}

/* MOBILE */
@media (max-width: 980px) {

  /* HEADER */
  .header {
    padding: 18px 5%;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 999;

    background: var(--navy);
  }

  /* LOGO */
  .header img {
    height: 42px;
  }

  /* MOSTRAR HAMBURGUESA */
  .menu-toggle {
    display: block;
  }

  /* MENU */
  .nav {
    position: fixed;

    top: 0;
    right: -100%;

    width: 100%;
    height: 100vh;

    background: var(--navy);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 28px;

    transition: right 0.4s ease;

    z-index: 1000;
  }

  /* MENU ABIERTO */
  .nav.active {
    right: 0;
  }

  /* LINKS */
  .nav a {
    font-size: 15px;
    letter-spacing: 2px;
  }

  /* CTA HEADER DESKTOP */
  .cta {
    display: none;
  }

  /* SOCIAL HEADER */
  .header-social {
    display: none;
  }

  /* HERO */
  .hero {
    padding-top: 90px;
  }

}

/* HAMBURGUESA → X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* BODY LOCK */
body.menu-open {
  overflow: hidden;
}

/* HERO MOBILE */
@media (max-width: 980px) {

  .hero {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }

  .hero-left {
    padding: 130px 8% 60px;
  }

  .hero-right {
    height: 420px;
  }

  .hero-right::before {
    display: none;
  }

}

@media (max-width: 980px) {

  /* SIN ZOOM */
  .gallery-item img {
    transform: none !important;
  }

  /* SIN HOVER */
  .gallery-item:hover img {
    transform: none !important;
  }

  /* CAPTION SIEMPRE VISIBLE */
  .gallery-caption {
    opacity: 1 !important;

    background: linear-gradient(
      to top,
      rgba(11,31,58,0.75),
      transparent
    );
  }

  /* SIN ANIMACIONES */
  .gallery-item img,
  .gallery-caption {
    transition: none;
  }

}

/* TEXTOS DE CONTENIDO */
.about-text p,
.experience-text p,
.services-intro p,
.service-item p,
.forwho-item p,
.faq-answer p,
.contact-intro p,
.footer-brand p {
  font-size: 15px;

  font-family: 'Montserrat', sans-serif;
  font-weight: 500;

  line-height: 1.9;
}

/* PÁRRAFOS DE CONTENIDO */
.about p,
.services-section p,
.experience p,
.forwho p,
.faq p,
.contact p,
.footer p {
  font-size: 15px;

  font-family: 'Montserrat', sans-serif;
  font-weight: 500;

  line-height: 1.9;
}

html {
  scroll-behavior: smooth;
}