:root {
    --primary: #e8b35ede;
    --gold: #8c8c92;
    --light: #f8f5f2;
    --text: #3f3f43c3;
    --whatsapp: #25D366;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
}

.logo {
    height: 180px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.header-whatsapp {
    background: var(--whatsapp);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.hero{
   min-height:500px;
   background:
       radial-gradient(
           circle at 20% 50%,
           #faf8f5 0%,
           #efeae5 35%,
           #d8d3cf 65%,
           #9d9ca0 85%,
           #172031 100%
       );
   display:flex;
   align-items:center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    line-height: 1;
    color: var(--text);
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 18px;
    max-width: 550px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


.btn {
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.primary {
    background: var(--whatsapp);
    color: white;
}

.secondary {
    border: 1px solid #ccc;
    color: var(--gold);
}

.specialties {
    padding: 90px 0;
}

.specialties h2 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    margin-bottom: 50px;
    color: var(--text);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    border: 1px solid #ececec;
    padding: 40px 30px;
    text-align: center;
    transition: .3s;
    background: white;
}

.card:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 45px;
    color: var(--primary);
    margin-bottom: 25px;
}

.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--text);
}

.card a {
    display: inline-block;
    margin-top: 25px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
}

.benefits {
    background: var(--text);
    color: white;
    padding: 25px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefits-grid div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.experience {
    padding: 90px 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
}

.experience h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    color: var(--text);
    margin-bottom: 40px;
}

.experience-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.experience-item {
    display: flex;
    gap: 20px;
}

.experience-item i {
    font-size: 35px;
    color: var(--primary);
}

.quote-box {
    background: #faf8f5;
    padding: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.quote-box i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.quote-box p {
    font-size: 28px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
}

.footer {
    background: var(--gold);
    color: white;
    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    width: 180px;
    background: transparent;
}

.footer a {
    display: block;
    text-decoration: none;
    color: white;
    margin-top: 10px;
}

.copyright {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 34px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
}

@media(max-width:1000px) {

    .hero-grid,
    .cards,
    .experience-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 54px;
    }

}

@media(max-width:768px) {

    .header-whatsapp{
        display:none;
    }

    .menu-toggle{
        display:block;
        font-size:28px;
        cursor:pointer;
        color:var(--primary);
    }

    nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:white;
        flex-direction:column;
        padding:20px;
        display:none;
        box-shadow:0 5px 15px rgba(0,0,0,.08);
        z-index:999;
    }

    nav.active{
        display:flex;
    }

    nav a{
        width:100%;
        padding:15px 0;
        border-bottom:1px solid #eee;
    }

    .benefits-grid{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:42px;
    }

    .specialties h2,

    .experience h2{
        font-size:40px;
    }

}
 