﻿*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Inter', sans-serif;
  background: #f6efe9;
  color: #3d342f;
}

section{
  padding: 120px 10%;
}

img{
  max-width: 100%;
}

/* HERO */

.hero{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: nowrap;
}

.hero-texto{
  flex: 1;
  max-width: 620px;
}

.logo{
  width: 380px;
  margin-bottom: 40px;
}

.hero-texto h1{
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-texto p{
  line-height: 2;
  color: #5e534d;
  margin-bottom: 40px;
}

.hero-imagen img{
  width: 340px;
  height: 460px;
  object-fit: cover;
  border-radius: 30px;
  border: 10px solid #efe4dc;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.hero-botones{
  display: flex;
  gap: 20px;
}

/* BOTONES */

.boton-principal,
.boton-secundario,
.boton-final{
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
  font-weight: 500;
}

.boton-principal{
  background: #9d7b73;
  color: white;
}

.boton-principal:hover{
  transform: translateY(-3px);
  opacity: 0.92;
}

.boton-secundario{
  border: 1px solid #9d7b73;
  color: #9d7b73;
}

.boton-secundario:hover{
  background: #9d7b73;
  color: white;
}

.boton-final{
  border: 1px solid white;
  color: white;
}

.boton-final:hover{
  background: white;
  color: #9d7b73;
}


/* CONOCEME */

/* CONOCEME */

.conoceme{

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:90px;

  padding:140px 10%;

  position:relative;

  overflow:hidden;

  background:

  linear-gradient(

    90deg,

    rgba(255,248,242,0.45) 0%,

    rgba(255,248,242,0.55) 35%,

    rgba(255,248,242,0.72) 100%

  ),

  url('https://i.imgur.com/AcsLUwp.jpeg');

  background-size:cover;

  background-position:center;

  background-repeat:no-repeat;
}


.imagenes-columna{

  width:30%;

  display:flex;

  flex-direction:column;

  gap:22px;

  align-items:flex-start;

  flex-shrink:0;
}

.imagen-titulo{
  width: 170px;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.imagen-editorial{
  width: 240px;
  height: 320px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.conoceme-texto{

  max-width:760px;

  margin-left:auto;

  padding:50px;

  border-radius:36px;

  background:rgba(255, 248, 242, 0.58);

  backdrop-filter:blur(14px);

  -webkit-backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,0.45);

  box-shadow:

    0 10px 35px rgba(61,58,54,0.06);

  position:relative;
}
.conoceme-texto::before{

  content:"";

  position:absolute;

  top:-18px;

  left:-18px;

  width:90px;

  height:90px;

  background:rgba(248,224,142,0.28);

  border-radius:50%;

  filter:blur(12px);

  z-index:-1;
}

.conoceme-texto h2{
  font-size: 3.5rem;
  margin-bottom: 30px;
}

.conoceme-texto p{
  line-height: 2;
  margin-bottom: 22px;
  color: #5a4f49;
}

.pie{
  width: 110px;
  margin-top: 25px;
}

/* SOBRE MI */

.sobre-mi{
background:#D9D3E8; 
  display:flex;

  align-items:center;

  justify-content:center;

  gap:80px;

  flex-wrap:nowrap;
}

/* IMAGEN */

.sobre-mi-imagen img{

  width:340px;

  height:480px;

  object-fit:cover;

  border-radius:36px;

  box-shadow:var(--shadow-card);
}

/* TEXTO */

.sobre-mi-texto{

  max-width:650px;
}

.sobre-mi-texto h2{

  font-size:4rem;

  margin:20px 0 30px;
}

.sobre-mi-texto p{

  line-height:2.1;

  color:var(--text-soft);

  margin-bottom:24px;
}

/* SERVICIOS */

.servicios{
  background:#F8E8C9;
  text-align: center;
}

.servicios h2{
  font-size: 4rem;
  margin-top: 15px;
}

.servicios-principales{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 60px;
  margin-bottom: 90px;
}

.principal-card{
  background:#E7DFF2;
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.principal-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.principal-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
  rgba(0,0,0,0.55),
  rgba(0,0,0,0.15));
}

.principal-card h3{
  position: absolute;
  bottom: 35px;
  left: 30px;
  color: white;
  z-index: 2;
  font-size: 2.2rem;
  font-family: 'Cormorant Garamond', serif;
}

.separador-servicios{
  width: 120px;
  height: 1px;
  background: rgba(0,0,0,0.15);
  margin: 0 auto 70px;
}

.titulo-seccion{
  font-size: 3.7rem !important;
  max-width: 850px;
  margin: 20px auto 30px !important;
  line-height: 1.2;
}

.intro-servicios{
  max-width: 760px;
  margin: auto;
  line-height: 2;
  color: #5e534d;
  margin-bottom: 70px;
}

.cards-servicios{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.servicio-card{
  background: white;
  padding: 45px;
  border-radius: 28px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.servicio-card h3{
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 25px;
}

.servicio-card ul{
  list-style: none;
}

.servicio-card li{
  margin-bottom: 18px;
  line-height: 1.7;
  color: #5a4f49;
  position: relative;
  padding-left: 20px;
}

.servicio-card li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: #9d7b73;
}

/* DUDAS */

.dudas{
  background:#DDE6D6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  background: #f8f3ef;
}

.dudas-imagen img{
  width: 420px;
  height: 520px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.dudas-texto{
  flex: 1;
  max-width: 650px;
}

.dudas-texto h2{
  font-size: 4rem;
  line-height: 1.1;
  margin: 20px 0 30px;
}

.dudas-texto p{
  line-height: 2;
  margin-bottom: 24px;
  color: #5e534d;
}

/* ESPACIO */

.espacio{
  position: relative;
  overflow: hidden;
  padding: 0;
  height: 520px;
}

.espacio img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.espacio-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.espacio-texto{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.espacio-texto h2{
  color: white;
  font-size: 4rem;
  font-family: 'Cormorant Garamond', serif;
  max-width: 900px;
  line-height: 1.2;
}

/* CTA */

.cta{
background: #9d7b73;;
  text-align: center;
}

.cta h2{
  color: white;
  font-size: 3.2rem;
  margin-bottom: 40px;
  line-height: 1.2;
}

/* RESPONSIVE */

@media(max-width: 900px){

  .hero,
  .conoceme,
  .dudas{
    flex-wrap: wrap;
  }

  .hero-texto h1,
  .sobre-mi h2,
  .servicios h2,
  .dudas-texto h2,
  .espacio-texto h2,
  .cta h2,
  .titulo-seccion{
    font-size: 3rem !important;
  }

  .logo{
    width: 240px;
  }

  .hero-imagen img{
    width: 280px;
    height: 380px;
  }

  .dudas-imagen img{
    width: 100%;
    height: 420px;
  }

}
/* SOBRE MI LAYOUT */

.sobre-mi-contenedor{

  display:flex;

  align-items:center;

  justify-content:center;

  gap:80px;

  flex-wrap:nowrap;
}

/* IMAGEN */

.sobre-mi-imagen img{

  width:340px;

  height:480px;

  object-fit:cover;

  border-radius:36px;

  box-shadow:var(--shadow-card);
}

/* TEXTO */

.sobre-mi-texto{

  max-width:650px;
}

.sobre-mi-texto h2{

  font-size:4rem;

  margin:20px 0 30px;
}

.sobre-mi-texto p{

  line-height:2.1;

  color:var(--text-soft);

  margin-bottom:24px;
}

/* ECUADOR ARGENTINA */

.imagen-ecuarg{

  width:340px;

  border-radius:34px;

  box-shadow:var(--shadow-card);

  object-fit:cover;
}

/* POSTER */

.imagen-editorial{

  width:280px;

  border-radius:32px;

  box-shadow:var(--shadow-card);
}

/* TITULO */

.imagen-titulo{

  width:220px;

  border-radius:28px;

  box-shadow:var(--shadow-soft);
}

/* PIE */

.imagen-pie{

  width:120px;

  opacity:0.9;
}
/* =========================
   RESPONSIVE PREMIUM
========================= */

@media(max-width:1200px){

  .hero{
    gap:50px;
  }

  .hero-texto h1{
    font-size:4rem;
  }

  .conoceme,
  .dudas,
  .sobre-mi-contenedor{

    gap:50px;
  }
}

@media(max-width:980px){

  section{
    padding:100px 8%;
  }

  .hero,
  .conoceme,
  .dudas,
  .sobre-mi-contenedor{

    flex-direction:column;
  }

  .hero{

    text-align:center;
  }

  .hero-texto{

    max-width:100%;
  }

  .hero-botones{

    justify-content:center;
  }

  .hero-imagen img{

    width:320px;

    height:420px;
  }

  .imagenes-columna{

    width:100%;

    align-items:center;
  }

  .conoceme-texto{

    width:100%;

    margin-left:0;
  }

  .sobre-mi-texto{

    text-align:center;
  }

  .dudas{

    text-align:center;
  }

  .dudas-texto{

    max-width:100%;
  }

  .cards-servicios{

    grid-template-columns:1fr;
  }

  .servicios-principales{

    grid-template-columns:1fr;
  }

  .espacio-texto h2{

    font-size:3rem;
  }

  .cta h2{

    font-size:3rem;
  }
}

@media(max-width:680px){

  .navbar{

    flex-direction:column;

    gap:18px;

    padding:22px;
  }

  .nav-links{

    flex-wrap:wrap;

    justify-content:center;
  }

  .hero{

    padding-top:220px;
  }

  .hero-texto h1{

    font-size:3rem;
  }

  .conoceme-texto h2,
  .servicios h2,
  .dudas-texto h2,
  .sobre-mi-texto h2{

    font-size:2.5rem;
  }

  .hero-imagen img{

    width:100%;

    height:auto;
  }

  .sobre-mi-imagen img{

    width:100%;

    height:auto;
  }

  .dudas-imagen img{

    width:100%;

    height:auto;
  }

  .principal-card{

    height:340px;
  }

  .espacio{

    height:500px;
  }

  .espacio-texto h2{

    font-size:2.2rem;
  }

  .cta h2{

    font-size:2.3rem;
  }
}

