/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de colores naturales */
    --primary-color: #2d5016;
    --secondary-color: #8fbc8f;
    --accent-color: #d4af37;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-white: #ffffff;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
    overflow-x: hidden;
}

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

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Botones */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Header y Navegación - Compact Version */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1.25rem; /* Aumentado para más espacio entre logo y texto */
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.6rem; /* Reducido aún más para menos separación entre secciones */
    align-items: center;
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    white-space: nowrap;
    display: inline-block;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
    background-color: rgba(45, 80, 22, 0.05);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-link {
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(45, 80, 22, 0.05);
}

.social-link:hover {
    color: var(--secondary-color);
    background: rgba(45, 80, 22, 0.1);
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(45, 80, 22, 0.05);
}

.bar {
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1), rgba(143, 188, 143, 0.1));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-main.jpg') center/cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 2rem;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.hero-description {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    backdrop-filter: blur(3px);
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    height: 500px;
}

/* Integración del carrusel */
.hero-carousel {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

/* Secciones generales */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Sobre Nosotros */
.about {
    background: #f8f9fa;
}

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

.about-text h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--secondary-color);
}

/* Actividades */
.activities {
    background: #f8f9fa;
}

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

.activity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.activity-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.activity-content {
    padding: 1.5rem;
}

.activity-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Café */
.coffee-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.coffee-varieties {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.coffee-variety {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coffee-link {
    display: flex;
    gap: 2rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.coffee-variety:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.coffee-cta {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.coffee-variety:hover .coffee-cta {
    color: var(--primary-color);
}

.coffee-variety img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
}

.variety-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.coffee-process {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    height: fit-content;
}

.coffee-process h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Galería 3D */
.gallery {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--background-white) 100%);
    overflow: hidden;
}

.gallery-3d-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-3d-wrapper {
    position: relative;
    height: 450px;
    perspective: 1200px;
    perspective-origin: center center;
    overflow: visible;
    /* Optimización de rendimiento */
    contain: layout style paint;
    will-change: transform;
}

.gallery-3d-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    /* Optimización de rendimiento */
    will-change: transform;
    contain: layout style paint;
}

.gallery-3d-slide {
    position: absolute;
    width: 320px;
    height: 380px;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    /* Optimización de GPU */
    transform: translateZ(0);
    will-change: transform, opacity;
}

.slide-inner {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: var(--white);
    transform-style: preserve-3d;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.gallery-3d-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    /* Optimización de rendimiento */
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    border-radius: 12px;
}

/* Estados de las slides en 3D */
.gallery-3d-slide {
    /* Slides por defecto (no visibles) */
    opacity: 0;
    transform: translateX(0) translateZ(-400px) rotateY(45deg) scale(0.6);
    z-index: 1;
    will-change: transform, opacity;
    /* Optimización de rendimiento */
    contain: layout style paint;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

/* Slide anterior */
.gallery-3d-slide.prev-2 {
    opacity: 0.4;
    transform: translateX(-380px) translateZ(-200px) rotateY(35deg) scale(0.7);
    z-index: 2;
}

.gallery-3d-slide.prev-1 {
    opacity: 0.8;
    transform: translateX(-200px) translateZ(-100px) rotateY(25deg) scale(0.85);
    z-index: 3;
}

/* Slide activa (centro) */
.gallery-3d-slide.active {
    opacity: 1;
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
    z-index: 5;
}

.gallery-3d-slide.active img {
    transform: scale(1.05);
}

/* Slides siguientes */
.gallery-3d-slide.next-1 {
    opacity: 0.8;
    transform: translateX(200px) translateZ(-100px) rotateY(-25deg) scale(0.85);
    z-index: 3;
}

.gallery-3d-slide.next-2 {
    opacity: 0.4;
    transform: translateX(380px) translateZ(-200px) rotateY(-35deg) scale(0.7);
    z-index: 2;
}

/* Hover effects mejorados */
.gallery-3d-slide:hover {
    cursor: pointer;
}

.gallery-3d-slide.prev-1:hover,
.gallery-3d-slide.next-1:hover {
    opacity: 0.95;
    z-index: 4;
}

.gallery-3d-slide.prev-2:hover,
.gallery-3d-slide.next-2:hover {
    opacity: 0.6;
}

/* Controles de navegación 3D */
.gallery-3d-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 90, 39, 0.9);
    color: var(--white);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.3);
}

.gallery-3d-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.5);
}

.gallery-3d-nav-prev {
    left: 20px;
}

.gallery-3d-nav-next {
    right: 20px;
}

/* Indicadores 3D */
.gallery-3d-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator-3d {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(45, 90, 39, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.indicator-3d::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(45, 90, 39, 0.6);
    transition: all 0.3s ease;
}

.indicator-3d.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(45, 90, 39, 0.5);
}

.indicator-3d.active::before {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.2);
}

.indicator-3d:hover {
    background: rgba(45, 90, 39, 0.6);
    transform: scale(1.1);
}

/* Efectos de pausa en hover */
.gallery-3d-container:hover .gallery-3d-track {
    animation-play-state: paused;
}

/* Animación optimizada para carga inicial */
@keyframes fadeIn3D {
    from {
        opacity: 0;
        transform: translateZ(0);
    }
    to {
        opacity: 1;
        transform: translateZ(0);
    }
}

.gallery-3d-wrapper {
    animation: fadeIn3D 0.5s ease-out;
    /* Optimización de GPU */
    will-change: opacity, transform;
}



/* Contacto */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    text-align: center;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.map-container {
    margin-top: 3rem;
}

.map-container h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.map {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: 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 h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-button a:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

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

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Estados de carga */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Mensajes de éxito/error */
.message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--text-light);
}

/* Service Pages */
.service-hero {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1), rgba(143, 188, 143, 0.1));
    padding: 4rem 0;
    text-align: center;
}

.service-hero-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.service-options {
    padding: 5rem 0;
}

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

.option-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

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

.option-image {
    height: 250px;
    overflow: hidden;
}

.option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.option-content {
    padding: 2rem;
}

.option-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.option-features {
    list-style: none;
    margin: 1.5rem 0;
}

.option-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.option-features i {
    color: var(--primary-color);
    width: 20px;
}

.service-info {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Detail Pages */
.detail-hero {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1), rgba(143, 188, 143, 0.1));
    padding: 4rem 0;
    text-align: center;
}

.detail-hero-content h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.detail-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    color: var(--primary-color);
    font-weight: 500;
}

.hero-features i {
    color: var(--secondary-color);
}

.detail-gallery {
    padding: 3rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.gallery-main {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 480px;
    overflow-y: auto;
}

.thumbnail {
    width: 100px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid transparent;
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

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

.thumbnail:hover {
    transform: scale(1.05);
}

.detail-description {
    padding: 5rem 0;
}

.description-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.description-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.description-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.description-content ul {
    list-style: none;
    margin: 1rem 0;
}

.description-content ul li {
    margin-bottom: 0.5rem;
    padding-left: 0;
    position: relative;
}



.description-content ul li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.booking-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    position: sticky;
    top: 100px;
}

.booking-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.booking-header h3 {
    margin-bottom: 0.5rem;
}

.price {
    margin-top: 1rem;
}

.currency {
    font-size: 1rem;
    vertical-align: top;
}

.amount {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0.5rem;
}

.period {
    font-size: 1rem;
    opacity: 0.8;
}

.booking-form {
    padding: 2rem;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

.booking-info {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
}

.booking-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.booking-info i {
    color: var(--primary-color);
}

.amenities-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.amenity-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.amenity-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.amenity-category h3 i {
    color: var(--secondary-color);
}

.amenity-category ul {
    list-style: none;
}

.amenity-category ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.amenity-category ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.location-section {
    padding: 5rem 0;
}

.location-content h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.location-content > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.location-feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.location-feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-feature h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Additional Service Page Styles */
.activities-preview {
    padding: 5rem 0;
}

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

.activity-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.activity-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.activity-info {
    padding: 1.5rem;
}

.activity-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.event-spaces {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.space-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.space-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.space-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.space-info {
    padding: 2rem;
}

.space-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.space-info ul {
    list-style: none;
    margin-top: 1rem;
}

.space-info ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.space-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.services-included {
    padding: 5rem 0;
}

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

.service-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Navigation logo link */
.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

/* Menu Pages */
.menu-section {
    padding: 5rem 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.menu-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.menu-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.menu-category {
    margin-bottom: 3rem;
}

.menu-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.menu-category h3 i {
    color: var(--secondary-color);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-item-header h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0;
}

.menu-item-header .price {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.menu-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.reservation-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    position: sticky;
    top: 100px;
}

.reservation-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.reservation-header h3 {
    margin-bottom: 0.5rem;
}

.reservation-form {
    padding: 2rem;
}

.reservation-form .form-group {
    margin-bottom: 1.5rem;
}

.reservation-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.reservation-info {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
}

.reservation-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.reservation-info i {
    color: var(--primary-color);
}

/* What to Bring Section */
.what-to-bring {
    background: #f8f9fa;
    padding: 5rem 0;
}

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

.bring-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.bring-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bring-category h3 i {
    color: var(--secondary-color);
}

.bring-category ul {
    list-style: none;
}

.bring-category ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.bring-category ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Cultivo Section */
.cultivo-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cultivo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

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

.cultivo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cultivo-icon i {
    font-size: 2rem;
    color: white;
}

.cultivo-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.cultivo-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Perfil Section */
.perfil-section {
    padding: 5rem 0;
    background: white;
}

.perfil-content {
    margin-top: 3rem;
}

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

.perfil-categoria {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.perfil-categoria h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.perfil-categoria h3 i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.perfil-categoria ul {
    list-style: none;
    padding: 0;
}

.perfil-categoria ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #666;
    font-size: 0.95rem;
}

.perfil-categoria ul li:last-child {
    border-bottom: none;
}

.perfil-especial {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 3rem;
    border-radius: 15px;
    color: white;
}

.perfil-especial h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.especial-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.especial-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.especial-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.especial-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Presentación Section */
.presentacion-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

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

.presentacion-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.presentacion-icon i {
    font-size: 1.8rem;
    color: white;
}

.presentacion-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.presentacion-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.presentacion-opciones {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.presentacion-opciones h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.opcion-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.opcion-item:hover {
    border-color: var(--secondary-color);
}

.opcion-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.opcion-item ul {
    list-style: none;
    padding: 0;
}

.opcion-item ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #666;
    font-size: 0.95rem;
}

.opcion-item ul li:last-child {
    border-bottom: none;
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 1.1rem;
} 

 