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

@font-face {
    font-family: 'Gochi Hand';
    src: url('Gochi_Hand/GochiHand-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Gochi Hand', cursive;
    font-weight: normal;
    line-height: 1.6;
    color: #333;
    background-color: #f9f8f6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gochi Hand', cursive;
    font-weight: normal;
}

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

/* Header */
header {
    background: rgba(168, 213, 186, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000; /* Mantener el header por encima de las burbujas */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    header {
        padding: 0.5rem 0;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

/* En desktop, dar más espacio al nav-left */
@media (min-width: 769px) {
    nav {
        gap: 30px;
    }
    
    .nav-left {
        display: flex;
        align-items: center;
        gap: 20px;
        flex: 1;
        min-width: 0; /* Permite que se encoja si es necesario */
    }
}

@media (max-width: 768px) {
    nav {
        gap: 10px;
        align-items: center;
    }
    
    .nav-left {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

/* Contenedor para hamburger y menú */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    margin-right: 20px;
}

/* En desktop, optimizar el espacio del hamburger */
@media (min-width: 769px) {
    .hamburger {
        padding: 8px;
        margin-right: 15px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .hamburger {
        padding: 8px;
        margin-right: 10px;
    }
    
    .hamburger span {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* En desktop, optimizar el espacio del logo */
@media (min-width: 769px) {
    .logo {
        gap: 12px;
        flex-shrink: 0;
        min-width: 200px; /* Asegurar un tamaño mínimo */
    }
}

@media (max-width: 768px) {
    .logo {
        gap: 10px;
    }
}

.logo-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media (max-width: 768px) {
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo p {
        font-size: 0.8rem;
    }
}

.logo-image {
    width: 150%;
    height: 150%;
    object-fit: contain;
    border-radius: 15px;
}

.logo h1 {
    font-size: 2rem;
    color: #2c5530;
    font-weight: bold;
}

.logo p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Barra de búsqueda */
.search-container {
    position: relative;
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
    z-index: 1002;
}

/* En desktop, ajustar el search-container para que use el espacio disponible */
@media (min-width: 769px) {
    .search-container {
        flex: 1;
        max-width: 500px;
        margin: 0 15px;
        min-width: 300px;
    }
}

/* En desktop, desactivar completamente la funcionalidad de expansión */
@media (min-width: 769px) {
    .search-container {
        max-width: 400px !important;
        position: relative !important;
    }
    
    .search-container.expanded {
        max-width: 400px !important;
    }
    
    .search-box {
        width: 100% !important;
        height: auto !important;
        position: relative !important;
        border-radius: 25px !important;
        padding: 8px 15px !important;
        justify-content: flex-start !important;
    }
    
    .search-box.expanded {
        width: 100% !important;
        height: auto !important;
        position: relative !important;
        border-radius: 25px !important;
        padding: 8px 15px !important;
        justify-content: flex-start !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    }
    
    .search-box input {
        width: 100% !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    .search-box.expanded input {
        width: 100% !important;
        opacity: 1 !important;
        display: block !important;
    }
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 8px 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
}

.search-box button {
    background: none;
    border: none;
    color: #2c5530;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: rgba(168, 213, 186, 0.3);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1004;
    margin-top: 5px;
}

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-result-item:hover {
    background: #f5f5f5;
}

.search-result-item:last-child {
    border-bottom: none;
}

/* Menú hamburguesa */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c5530;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Navegación */
.nav-links {
    display: none;
    list-style: none;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(168, 213, 186, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    min-width: 200px;
    z-index: 1001;
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, #a8d5ba 0%, #f4e4c1 50%, #e8c4a0 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
        gap: 5px;
        border-radius: 0;
        min-width: auto;
    }
}

.nav-links.active {
    display: flex;
    flex-direction: column;
}

.nav-links a {
    text-decoration: none;
    color: #2c5530;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 20px;
    white-space: nowrap;
    font-size: 0.9rem;
    display: block;
    width: 100%;
    text-align: center;
}

.nav-links a:hover {
    background-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    color: #1a3d1f;
}

/* Fondo degradado global */
body {
    background: linear-gradient(135deg, #a8d5ba 0%, #f4e4c1 50%, #e8c4a0 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    background: transparent;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 80vh; /* Asegurar altura mínima */
}

/* Canvas de burbujas para toda la página */
.bubbles-canvas-fullpage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0; /* Detrás de todo el contenido */
    pointer-events: none; /* No interferir con la interacción */
    opacity: 0.6; /* Más sutil para no distraer del contenido */
    display: block !important;
    visibility: visible !important;
}

/* Mantener el estilo original para compatibilidad */
.bubbles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
    opacity: 0.8;
    display: block !important; /* Forzar visibilidad */
    visibility: visible !important; /* Asegurar visibilidad */
}

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

.hero h2 {
    font-size: 3.5rem;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.3rem;
    color: #4a6741;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e8c4a0, #d4a574);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(232, 196, 160, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(232, 196, 160, 0.6);
}

/* Sections */
.section {
    padding: 80px 0;
    background: transparent;
    position: relative;
    z-index: 1; /* Asegurar que el contenido aparezca encima de las burbujas */
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 20px;
    position: relative;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #a8d5ba, #e8c4a0);
    border-radius: 2px;
}

/* Quiénes Somos */
.quienes-somos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quienes-somos-text h3 {
    color: #2c5530;
    font-size: 2rem;
    margin-bottom: 20px;
}

.quienes-somos-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.valores {
    margin: 30px 0;
}

.valores h4 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

.valores li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.valores li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 8px;
}

.fundadoras {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.fundadora {
    text-align: center;
    padding: 20px;
    background: rgba(168, 213, 186, 0.1);
    border-radius: 15px;
}

.fundadora-foto {
    font-size: 3rem;
    margin-bottom: 15px;
}

.fundadora h4 {
    color: #2c5530;
    margin-bottom: 10px;
}

.fundadora p {
    color: #666;
    font-size: 0.9rem;
}

.quienes-somos-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #a8d5ba, #e8c4a0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

/* Actividades */
.actividades {
    background: linear-gradient(135deg, rgba(168, 213, 186, 0.1), rgba(244, 228, 193, 0.1));
}

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

.actividad-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.actividad-card:hover {
    transform: translateY(-10px);
    border-color: #a8d5ba;
}

.actividad-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: linear-gradient(135deg, #a8d5ba, #e8c4a0);
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.actividad-card h3 {
    font-size: 1.8rem;
    color: #2c5530;
    margin-bottom: 15px;
}

.actividad-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.actividad-card h4 {
    color: #2c5530;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.actividad-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.actividad-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.actividad-card li::before {
    content: '•';
    color: #a8d5ba;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Horarios y Tarifas */
.horarios-tarifas-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.horarios, .tarifas, .servicios-especiales {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.horarios h3, .tarifas h3, .servicios-especiales h3 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.horarios-grid, .tarifas-grid, .servicios-especiales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.horario-item, .tarifa-item, .servicio-item {
    text-align: center;
    padding: 20px;
    background: rgba(168, 213, 186, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.horario-item:hover, .tarifa-item:hover, .servicio-item:hover {
    background: rgba(168, 213, 186, 0.2);
    transform: translateY(-5px);
}

.horario-item h4, .tarifa-item h4, .servicio-item h4 {
    color: #2c5530;
    margin-bottom: 10px;
}

.horario-item p, .tarifa-item p, .servicio-item p {
    color: #666;
    font-weight: bold;
}

/* Cumpleaños */
.cumpleaños {
    background: linear-gradient(135deg, rgba(232, 196, 160, 0.1), rgba(168, 213, 186, 0.1));
}

/* Toggle para cumpleaños en móvil */
.cumpleaños-toggle {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.toggle-icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
    position: absolute;
    right: 0;
}

.cumpleaños-content {
    transition: all 0.3s ease;
    overflow: hidden;
}

/* En móvil, ocultar el contenido por defecto */
@media (max-width: 768px) {
    .cumpleaños-content {
        max-height: 0;
        opacity: 0;
        margin-top: 0;
    }
    
    .cumpleaños-content.expanded {
        max-height: 2000px;
        opacity: 1;
        margin-top: 20px;
    }
    
    .cumpleaños-toggle .toggle-icon {
        transform: rotate(-90deg);
    }
    
    .cumpleaños-toggle.expanded .toggle-icon {
        transform: rotate(0deg);
    }
}

/* En desktop, siempre mostrar el contenido */
@media (min-width: 769px) {
    .cumpleaños-content {
        max-height: none !important;
        opacity: 1 !important;
        margin-top: 20px !important;
    }
    
    .toggle-icon {
        display: none;
    }
}

/* Toggle para actividades en móvil */
.actividades-toggle {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.actividades-content {
    transition: all 0.3s ease;
    overflow: hidden;
}

/* En móvil, ocultar el contenido por defecto */
@media (max-width: 768px) {
    .actividades-content {
        max-height: 0;
        opacity: 0;
        margin-top: 0;
    }
    
    .actividades-content.expanded {
        max-height: 2000px;
        opacity: 1;
        margin-top: 20px;
    }
    
    .actividades-toggle .toggle-icon {
        transform: rotate(-90deg);
    }
    
    .actividades-toggle.expanded .toggle-icon {
        transform: rotate(0deg);
    }
}

/* En desktop, siempre mostrar el contenido de actividades */
@media (min-width: 769px) {
    .actividades-content {
        max-height: none !important;
        opacity: 1 !important;
        margin-top: 20px !important;
    }
}

.cumpleaños-tematicas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tema-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.tema-card:hover {
    transform: translateY(-10px);
    border-color: #e8c4a0;
}

.tema-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    background: linear-gradient(135deg, #e8c4a0, #d4a574);
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.tema-card h3 {
    font-size: 1.5rem;
    color: #2c5530;
    margin-bottom: 15px;
}

.tema-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tema-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.duracion, .precio {
    background: linear-gradient(135deg, #a8d5ba, #e8c4a0);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.incluye-cumpleaños {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.incluye-cumpleaños h3 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.incluye-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.incluye-item {
    text-align: center;
    padding: 20px;
    background: rgba(168, 213, 186, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.incluye-item:hover {
    background: rgba(168, 213, 186, 0.2);
    transform: translateY(-5px);
}

.incluye-item p {
    color: #2c5530;
    font-weight: bold;
}

/* Galería */
.galeria-filtros {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filtro-btn {
    background: white;
    border: 2px solid #a8d5ba;
    color: #2c5530;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.9rem;
}

.filtro-btn.active, .filtro-btn:hover {
    background: #a8d5ba;
    color: white;
}

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

.galeria-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.galeria-item:hover {
    transform: scale(1.05);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.galeria-item:hover img {
    filter: brightness(0.8);
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    background: rgba(0,0,0,0.7);
    padding: 10px 20px;
    border-radius: 20px;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #a8d5ba, #e8c4a0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.blog-content {
    padding: 30px;
}

.blog-categoria {
    color: #a8d5ba;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-fecha {
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.blog-titulo {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-resumen {
    color: #666;
    line-height: 1.6;
}

.redes-sociales-blog {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.redes-sociales-blog h3 {
    color: #2c5530;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.redes-sociales-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.red-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.red-social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.red-social-link.facebook {
    background: #1877f2;
}

.red-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Reservas */
.reservas {
    background: linear-gradient(135deg, rgba(168, 213, 186, 0.1), rgba(244, 228, 193, 0.1));
}

.reservas-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.reservas-info {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.reservas-info h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.reservas-info ul {
    list-style: none;
    padding: 0;
}

.reservas-info li {
    padding: 10px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.reservas-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #a8d5ba;
    font-weight: bold;
}

.reservas-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    color: #2c5530;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a8d5ba;
    box-shadow: 0 0 0 3px rgba(168, 213, 186, 0.1);
}

.form-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #a8d5ba, #7fb89b);
    color: white;
}

.btn-secondary {
    background: #f0f0f0;
    color: #666;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 213, 186, 0.4);
}

.btn-secondary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* Normas */
.normas-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.normas-categoria {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.normas-categoria h3 {
    color: #2c5530;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.normas-categoria li {
    padding: 12px 0;
    color: #666;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

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

.normas-categoria li::before {
    content: '📋';
    position: absolute;
    left: 0;
    top: 12px;
}

/* Testimonios */
.testimonios {
    background: linear-gradient(135deg, rgba(232, 196, 160, 0.1), rgba(168, 213, 186, 0.1));
}

.testimonios-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.testimonio {
    display: none;
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonio.active {
    display: block;
}

.testimonio-foto {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #a8d5ba, #e8c4a0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.testimonio-texto {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonio-nombre {
    color: #2c5530;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonio-calificacion {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonio-fecha {
    color: #999;
    font-size: 0.9rem;
}

.testimonios-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.control-btn {
    background: #a8d5ba;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: #7fb89b;
    transform: scale(1.1);
}

.testimonios-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #a8d5ba;
}

/* FAQ */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-pregunta {
    padding: 20px;
    background: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-pregunta:hover {
    background: #f0f0f0;
}

.faq-pregunta h4 {
    color: #2c5530;
    font-size: 1.1rem;
    margin: 0;
}

.faq-toggle {
    color: #a8d5ba;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-respuesta {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-respuesta.active {
    padding: 20px;
    max-height: 200px;
}

.faq-respuesta p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contacto */
.contact {
    background: linear-gradient(135deg, #2c5530, #4a6741);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-item {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #f4e4c1;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-map {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.map-placeholder {
    color: #f4e4c1;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.map-placeholder small {
    font-size: 1rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background: #1a3d1f;
    color: white;
    padding: 50px 0 30px;
}

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

.footer-section h3 {
    color: #f4e4c1;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-redes {
    display: flex;
    gap: 15px;
}

.red-social-footer {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.red-social-footer.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.red-social-footer.facebook {
    background: #1877f2;
}

.red-social-footer.whatsapp {
    background: #25d366;
}

.red-social-footer:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f4e4c1;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

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

/* Animaciones */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 8px 0;
    }

    .search-container {
        order: 2;
        max-width: 40px;
        margin: 0 10px;
        transition: max-width 0.3s ease;
    }

    .search-container.expanded {
        max-width: 180px;
    }

    .search-box {
        width: 40px;
        height: 40px;
        padding: 8px;
        justify-content: center;
        overflow: hidden;
        transition: all 0.3s ease;
        border-radius: 50%;
    }

    .search-box.expanded {
        width: 180px;
        height: 40px;
        padding: 8px 12px;
        justify-content: flex-start;
        border-radius: 20px;
        position: static;
        z-index: 1003;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .search-box input {
        width: 0;
        opacity: 0;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .search-box.expanded input {
        width: 100%;
        opacity: 1;
    }

    .search-box button {
        min-width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .quienes-somos-content,
    .reservas-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .actividades-grid,
    .cumpleaños-tematicas,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .tema-info {
        flex-direction: column;
        gap: 10px;
    }

    .galeria-filtros {
        justify-content: center;
    }

    .redes-sociales-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-redes {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

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

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

    .actividad-card,
    .tema-card,
    .blog-card {
        padding: 25px;
    }

    .reservas-form {
        padding: 25px;
    }

    .testimonio {
        padding: 25px;
    }
} 