:root {
    --primary-green: #4a5d45;
    --dark-green: #3a4a36;
    --cream: #f8f5f0;
    --gold: #d4a04d;
    --text-dark: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta-top {
    background-color: var(--gold);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.8rem;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
    color: white;
    position: relative;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 em {
    color: var(--gold);
}

.hero p {
    max-width: 500px;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-solid {
    background-color: var(--primary-green);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
}

.btn-outline {
    border: 1px solid white;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
}

.badge-float {
    position: absolute;
    right: 5%;
    top: 50%;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 20px;
    border-radius: 50px 50px 0 0;
    text-align: center;
    width: 150px;
}

/* FEATURES BAR */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 50px 10%;
    gap: 30px;
    text-align: center;
}

.feature-item p {
    font-size: 0.85rem;
    margin-top: 10px;
}

/* ESSENCE SECTION */
.essence {
    display: flex;
    align-items: center;
    padding: 80px 10%;
    gap: 60px;
}

.essence-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 5px;
}

.essence-text h4 {
    text-transform: uppercase;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.essence-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.highlight {
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #e9e0d1;
    z-index: -1;
}

.btn-dark {
    display: inline-block;
    margin-top: 25px;
    background-color: var(--dark-green);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
}

/* LEVELS SECTION */
.levels {
    padding: 80px 10%;
    text-align: center;
}

.levels h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 40px;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.level-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.level-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-content h4 {
    margin-bottom: 10px;
}

.ver-mas {
    display: block;
    margin-top: 15px;
    color: #777;
    text-decoration: none;
    font-size: 0.9rem;
}

/* FOOTER */
.footer {
    background-color: var(--primary-green);
    color: white;
    padding: 80px 10% 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.btn-yellow {
    display: inline-block;
    background-color: var(--gold);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-img-frame {
    width: 100%;
    height: 200px;
    border-radius: 100px;
    overflow: hidden;
}

.footer-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .levels-grid, .footer-container, .features {
        grid-template-columns: 1fr;
    }
    .essence {
        flex-direction: column;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .nav-links {
        display: none;
    }
}