/* ===========================================================
   VARIABLES
:root{

    --primary:#7A9E87;
    --secondary:#C8A882;

    --background:#F9F7F4;
    --surface:#FFFFFF;

    --text:#2C2C2C;
    --gray:#666666;

    --shadow:0 10px 25px rgba(0,0,0,.08);

    --radius:16px;

    --transition:.3s ease;

}
=========================================================== */

:root{

    --primary:#7A9E87;
    --secondary:#C8A882;

    --footer:#2f3c35;

    --background:#F2CDEB;
    --surface:#FFFFFF;

    --text:#2C2C2C;
    --gray:#666666;

    --shadow:0 10px 25px rgba(0,0,0,.08);

    --radius:16px;

    --transition:.3s ease;

}


/* ===========================================================
   RESET
=========================================================== */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Cormorant Garamond",sans-serif;

    background:var(--background);

    color:var(--text);

    line-height:1.6;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}


/* ===========================================================
   CONTENEDOR
=========================================================== */

.container{

    width:100%;

    max-width:1200px;

    margin:auto;

    padding:0 2rem;

}


/* ===========================================================
   TITULOS
=========================================================== */

h1,h2,h3{

    font-family:"Roboto",sans-serif;

    font-weight:600;

}

h1{

    font-size:4rem;

    line-height:1.1;

}

h2{

    font-size:3rem;

    margin-bottom:2rem;

    text-align:center;

}

h6{    
    font-family:"Cormorant Garamond",sans-serif;
    color:var(--gray);
    font-weight:600;
}

p{
    font-family: 'Cormorant Garamond',sans-serif;
    color:var(--gray);

}


/* ===========================================================
   SECCIONES
=========================================================== */

section{

    padding:6rem 0;

}


/* ===========================================================
   NAVBAR
=========================================================== */

nav{

    position:sticky;

    top:0;

    background:white;

    box-shadow:0 2px 10px rgba(0,0,0,.05);

    z-index:100;

}

nav .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

.logo{

    font-size:1.8rem;

    font-family:"Cormorant Garamond",serif;

    font-weight:bold;

}

.logo span{

    color:var(--primary);

}

.menu{

    display:flex;

    align-items:center;

    gap:2rem;

}

.menu a{

    transition:var(--transition);

}

.menu a:hover{

    color:var(--primary);

}


/* ===========================================================
   HERO
=========================================================== */

.hero-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:2rem;

}

.hero-tag{

    display:inline-block;

    margin-bottom:1rem;

    color:var(--primary);

    font-weight:600;

}

.hero-text p{

    margin:2rem 0;

    font-size:1.1rem;

}

.hero-buttons{

    display:flex;

    gap:1rem;

}

.hero-image{

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:50%;
    height:50%;

    border-radius:50%;

    object-fit:cover;

    border:8px solid white;

    box-shadow:0 10px 30px rgba(0,0,0,.2);

}


/* ===========================================================
   BOTONES
=========================================================== */

.btn-primary{

    background:var(--primary);

    color:white;

    padding:1rem 2rem;

    border-radius:40px;

    transition:var(--transition);

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    border:2px solid var(--primary);

    color:var(--primary);

    padding:1rem 2rem;

    border-radius:40px;

    transition:var(--transition);

}

.btn-secondary:hover{

    background:var(--primary);

    color:white;

}


/* ===========================================================
   SOBRE MI
=========================================================== */

#sobre-mi{

    background:white;

}

#sobre-mi ul{

    margin-top:1rem;

}

#sobre-mi li{

    margin-bottom:1rem;

}


/* ===========================================================
   SERVICIOS
=========================================================== */

.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:2rem;

}

.card{

    background:white;

    padding:2rem;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

}

.card h3{

    margin-bottom:1rem;

}


/* ===========================================================
   PROCESO
=========================================================== */

.steps{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:2rem;

    text-align:center;

}

.step{

    background:white;

    padding:2rem;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

.step span{

    width:50px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:var(--primary);

    color:white;

    margin:auto;

    margin-bottom:1rem;

}


/* ===========================================================
   FAQ
=========================================================== */

details{

    background:white;

    margin-bottom:1rem;

    padding:1rem;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

summary{

    cursor:pointer;

    font-weight:bold;

}


/* ===========================================================
   CONTACTO
=========================================================== */

form{

    display:flex;

    flex-direction:column;

    gap:1rem;

    max-width:700px;

    margin:auto;

}

input,
textarea{

    padding:1rem;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:1rem;

    font-family:inherit;

}

textarea{

    resize:none;

    min-height:180px;

}

button{

    cursor:pointer;

    background:var(--primary);

    color:white;

    border:none;

    padding:1rem;

    border-radius:40px;

    font-size:1rem;

}


/* ===========================================================
   FOOTER
=========================================================== */

footer{

    background:#2f3c35;

    color:white;

    text-align:center;

    padding:2rem;

}

footer p{

    color:white;

}


/* ===========================================================
   RESPONSIVE
=========================================================== */

@media(max-width:900px){

    .hero-content{

        grid-template-columns:1fr;

        text-align:center;

    }

    .hero-buttons{

        justify-content:center;

    }

    .cards{

        grid-template-columns:1fr;

    }

    .steps{

        grid-template-columns:1fr;

    }

    .menu{

        display:none;

    }

    h1{

        font-size:3rem;

    }

}


/* wsp */
.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:100%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    transition:.3s;

    z-index:999;

}

.whatsapp-float:hover{

    transform:scale(1.08);

}

.whatsapp-float img{

    width:34px;

}