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

:root {
    --forest-deep: #2D6A4F;
    --forest-green: #40916C;
    --forest-light: #74C69D;
    --honey-gold: #E2C044;
    --red-earth: #B5432A;
    --cream-tint: #F9F6F0;
    --white: #FFFFFF;
    --text-dark: #1B1B1B;
    --text-light: #666666;
    --shadow: 0 10px 30px rgba(45, 106, 79, 0.15);
    --shadow-lg: 0 20px 50px rgba(45, 106, 79, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream-tint);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--forest-deep);
    color: var(--white);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
}

.logo-img {
    height: 92px;
    width: 92px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--honey-gold);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3), 0 0 0 5px rgba(255, 255, 255, 0.08);
    background: var(--white);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.logo-img:hover {
    /* Realce suave y centrado, sin rotación (se veía "de lado") */
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(226, 192, 68, 0.5), 0 0 0 6px rgba(226, 192, 68, 0.18);
}

.logo .tagline {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    opacity: 0.9;
    padding-left: 14px;
    border-left: 2px solid var(--honey-gold);
}

.footer-logo {
    height: 110px;
    width: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--honey-gold);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--honey-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Page Header (páginas internas) */
.page-header {
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-green) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 0 3.5rem;
}

.page-header .badge {
    margin-bottom: 1.25rem;
}

.page-header h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.15rem;
    max-width: 620px;
    margin: 0 auto;
    opacity: 0.92;
}

/* Conservación como página interna: deja aire bajo el navbar */
body > .conservation:first-of-type,
.conservation {
    scroll-margin-top: 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.85) 0%, rgba(45, 106, 79, 0.5) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 700px;
    color: var(--white);
    animation: slideInUp 1s ease-out;
}

.badge {
    display: inline-block;
    background: rgba(226, 192, 68, 0.2);
    border: 1px solid var(--honey-gold);
    color: var(--honey-gold);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-primary {
    background: var(--honey-gold);
    color: var(--forest-deep);
}

.btn-primary:hover {
    background: #d4b930;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(226, 192, 68, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--forest-deep);
    border: 2px solid var(--forest-deep);
}

.btn-outline:hover {
    background: var(--forest-deep);
    color: var(--white);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--forest-deep);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--honey-gold), var(--forest-light));
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--forest-deep);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-content h4 {
    font-size: 1.25rem;
    color: var(--forest-deep);
    margin: 2rem 0 1rem 0;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(45, 106, 79, 0.1);
    color: var(--text-dark);
}

.values-list li strong {
    color: var(--forest-deep);
}

/* Features Section */
.features {
    background: linear-gradient(135deg, var(--cream-tint) 0%, rgba(116, 198, 157, 0.05) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--forest-deep);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Conservation Section */
.conservation {
    position: relative;
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-green) 100%);
    color: var(--white);
    overflow: hidden;
    text-align: center;
}

.conservation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("IMAGENES/WhatsApp Image 2026-05-30 at 16.21.12 (3).jpeg");
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.conservation-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.badge-light {
    display: inline-block;
    background: rgba(226, 192, 68, 0.25);
    border: 1px solid var(--honey-gold);
    color: var(--honey-gold);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.conservation h3 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.conservation-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.conservation-intro strong {
    color: var(--honey-gold);
}

.conservation-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--honey-gold);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
}

.conservation-quote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--honey-gold);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0 15px 15px 0;
    text-align: left;
}

/* Products Section */
.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--forest-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card h4 {
    padding: 1.5rem 1.5rem 0;
    font-size: 1.25rem;
    color: var(--forest-deep);
}

.product-card p {
    padding: 0.5rem 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.product-price {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    color: var(--honey-gold);
}

.product-card .btn {
    margin: 1rem 1.5rem 1.5rem;
}

/* Lodging Section */
.lodging {
    background: linear-gradient(180deg, var(--cream-tint) 0%, rgba(116, 198, 157, 0.08) 100%);
    overflow: hidden;
}

.lodging-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem;
}

.badge-dark {
    display: inline-block;
    background: var(--forest-deep);
    color: var(--honey-gold);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.lodging-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-top: 1rem;
}

.lodging-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.lodging-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.lodging-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.lodging-image:hover img {
    transform: scale(1.05);
}

.lodging-image-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(45, 106, 79, 0.92);
    color: var(--white);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 192, 68, 0.5);
}

.lodging-features {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.lodging-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--honey-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lodging-feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.lodging-icon {
    font-size: 2.25rem;
    line-height: 1;
    flex-shrink: 0;
}

.lodging-feature h4 {
    color: var(--forest-deep);
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
}

.lodging-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.lodging-cta {
    text-align: center;
    margin-top: 3.5rem;
}

.lodging-cta p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--forest-deep);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Gallery Section */
.gallery {
    background: var(--cream-tint);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--forest-deep);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item .icon {
    font-size: 1.75rem;
    min-width: 40px;
}

.info-item strong {
    display: block;
    color: var(--forest-deep);
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--text-light);
}

.info-item a {
    color: var(--forest-deep);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--honey-gold);
}

.contact-form h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--forest-deep);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest-deep);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

/* Footer */
.footer {
    background: var(--forest-deep);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--honey-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    z-index: 50;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-text h2 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .lodging-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lodging-image img {
        height: 360px;
    }

    .conservation h3 {
        font-size: 1.85rem;
    }

    .conservation-intro {
        font-size: 1rem;
    }

    .conservation-quote {
        font-size: 1.05rem;
        padding: 1rem 1.25rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 0;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .logo h1 {
        font-size: 1.25rem;
    }

    .hero-text h2 {
        font-size: 1.75rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}
