* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Merienda", cursive;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    
}


/*Boton piscina*/
.btn-container {
    text-align: center;
    margin: 2rem 0;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: #40E0D0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: #1565c0;
    transform: scale(1.05);
}

.social-float {
  position: fixed;
  bottom: 20px;   /* margen inferior */
  right: 20px;    /* margen derecho */
  display: flex;
  flex-direction: column;
  gap: 15px;      /* separación entre iconos */
  z-index: 1000;
}

.social-float img {
  width: 50px;
  height: 50px;
  border-radius: 50%; /* íconos circulares */
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.social-float img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}


/* Variables CSS para colores */
:root {
    --turquoise: #40E0D0;
    --gold: #FFD700;
    --gray: #6B7280;
    --dark-gray: #374151;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --black: #000000;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.25);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo_v{
    width: 150px;
    height: 80px;
}
.logo{
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--turquoise), var(--gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
.desktop-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--turquoise);
    background: rgba(64, 224, 208, 0.1);
}

.nav-link.active {
    color: var(--turquoise);
    background: rgba(64, 224, 208, 0.1);
}

/* Language Toggle */
.language-toggle {
    display: flex;
    background: var(--light-gray);
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--gray);
}

.lang-btn.active {
    background: var(--turquoise);
    color: var(--white);
}




/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
    padding: 0.5rem;
}

.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: var(--gray);
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--turquoise);
    background: rgba(64, 224, 208, 0.05);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Pages */
.page {
    display: none;
    min-height: calc(100vh - 80px);
}

.page.active {
    display: block;
}

/* Language content visibility */
[data-lang="ES"] .content-en,
[data-lang="EN"] .content-es {
    display: none;
}

[data-lang="ES"] .nav-text-en,
[data-lang="EN"] .nav-text-es {
    display: none;
}

/* Hero Carousel Section */
.hero-carousel {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.carousel-container {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.carousel-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 700ms ease-in-out, transform 700ms ease-in-out;
    transform: scale(1.05);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.carousel-slide:hover .slide-image {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.slide-title {
    position: absolute;
    bottom: 80px;
    left: 32px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
}

.carousel-prev {
    left: 24px;
}

.carousel-next {
    right: 24px;
}

/* Dots Indicator */
.carousel-dots {
    position: absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 300ms ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
    width: 32px;
    height: 12px;
    border-radius: 6px;
    background: var(--white);
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.carousel-progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width 300ms ease;
}


/* Hero Content */
.hero-content {
    max-width: 1000px;
    z-index: 2;
    position: relative;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px var(--shadow-heavy);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px var(--shadow-heavy);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px var(--shadow-heavy);
}

.cta-button {
    background: var(--turquoise);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px var(--shadow);
}

.cta-button:hover {
    background: rgba(64, 224, 208, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px var(--shadow);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px var(--shadow);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
}

.about-image {
    text-align: center;
}

.rounded-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 8px 16px var(--shadow);
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(64, 224, 208, 0.3));
    z-index: -1;
}

.page-hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;

    /* Sombra más fuerte y difusa para resaltar sobre imágenes */
    text-shadow: 
        2px 2px 6px rgba(0,0,0,0.9),  /* sombra principal oscura */
        0px 0px 10px rgba(0,0,0,0.7), /* halo difuso */
        0px 0px 15px rgba(0,0,0,0.5); /* extra glow */
}


.page-subtitle {
    font-size: 1.25rem;
    color:  #FFF8E7;
    text-shadow: 1px 1px 2px var(--shadow-heavy);
     
    text-shadow: 
        2px 2px 6px rgba(0,0,0,0.9),  /* sombra principal oscura */
        0px 0px 10px rgba(0,0,0,0.7), /* halo difuso */
        0px 0px 15px rgba(0,0,0,0.5); /* extra glow */
      
}

/* Page Content */
.page-content {
    padding: 5rem 0;
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.features {
    margin-top: 2rem;
}

.features-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    position: relative;
    padding: 0.75rem 0;
    padding-left: 2rem;
    color: var(--gray);
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: bold;
}

/* Info Card */
.info-card {
    background: var(--light-gray);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px var(--shadow);
}

.info-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(107, 114, 128, 0.1);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: var(--dark-gray);
    font-weight: 500;
}

/* Products Grid */
.section-cat {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #000000; /* Color negro */
  margin-bottom: 3rem;
  letter-spacing: 0.2rem;
}

.section-cat::before {
  content: "";
  background-image: url('icono-abeja.png'); /* Icono de abeja */
  background-size: cover;
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 10px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px var(--shadow);
}

.product-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}


.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--turquoise);
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    
}

.package-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px var(--shadow);
}

.package-card.featured {
    border: 2px solid var(--turquoise);
    transform: scale(1.02);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--turquoise);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 1;
}

.package-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-content {
    padding: 1.5rem;
    margin-bottom: 0%;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.package-description {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.package-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.875rem;
}

.feature i {
    color: var(--turquoise);
    font-size: 1rem;
}

.package-includes {
    margin-bottom: 1.5rem;
}

.includes-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    position: relative;
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    color: var(--gray);
    font-size: 0.875rem;
    line-height: 1.5;
}

.includes-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: bold;
    font-size: 1rem;
}

.package-price {
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin: -1.5rem;
}

.original-price {
    display: block;
    text-decoration: line-through;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.discount-price {
    display: block;
    color: var(--turquoise);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.savings {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.per-person {
    display: block;
    color: var(--gray);
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.kids-price {
    display: block;
    color: var(--gray);
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

/* Packages Info Section */
.packages-info {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--light-gray);
}

.info-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px var(--shadow);
}

.info-item i {
    color: var(--turquoise);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.info-item strong {
    display: block;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--gray);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    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 h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.5rem;
    color: var(--turquoise);
    font-weight: 700;
}

.footer-subtitle {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 600;
}

.footer-text {
    color: var(--gray);
    line-height: 1.6;
}

.footer-contact {
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--turquoise);
    margin-right: 0.5rem;
    width: 16px;
}

.footer-hours {
    color: var(--gray);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(107, 114, 128, 0.3);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav.open {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-carousel {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 16px;
    }
    
    .carousel-next {
        right: 16px;
    }
    
    .slide-title {
        bottom: 60px;
        left: 16px;
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    
    .autoplay-indicator {
        top: 16px;
        right: 16px;
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    
    .page-hero {
        height: 40vh;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .product-card,
    .info-card {
        margin: 0 0.5rem;
    }
    
    .hero-content,
    .page-hero-content {
        padding: 0 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page.active {
    animation: fadeIn 0.5s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--turquoise);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(64, 224, 208, 0.8);
}

    :root{
      --gold: #d4af37;
      --turquoise: #40e0d0;
      --white: #ffffff;
      --gray: #6b6b6b;
      --dark-gray: #222222;
      --light-gray: #efefef;
      --shadow: rgba(0,0,0,0.08);
      --shadow-heavy: rgba(0,0,0,0.6);
    }

    .page-hero {
        position: relative;
        height: 50vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    .page-hero-background {
        position: absolute;
        inset: 0;
        z-index: -2;
    }

    .page-hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .page-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(64, 224, 208, 0.3));
        z-index: -1;
    }

    .page-hero-content {
        max-width: 800px;
        z-index: 1;
    }

    .page-title {
        font-size: 3rem;
        font-weight: 700;
        color: var(--gold);
        margin-bottom: 1rem;
        text-shadow: 
            2px 2px 6px rgba(0,0,0,0.9),
            0px 0px 10px rgba(0,0,0,0.7),
            0px 0px 15px rgba(0,0,0,0.5);
    }


    .page-subtitle {
        font-size: 1.25rem;
        color:  #FFF8E7;
        text-shadow: 1px 1px 2px var(--shadow-heavy);
        text-shadow: 
            2px 2px 6px rgba(0,0,0,0.9),
            0px 0px 10px rgba(0,0,0,0.7),
            0px 0px 15px rgba(0,0,0,0.5);
    }

    .container{max-width:1200px;margin:0 auto;padding:0 1rem}

    .page-content {
        padding: 5rem 0;
        background: var(--white);
    }

    .section-cat {
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      color: #000000;
      margin-bottom: 3rem;
      letter-spacing: 0.2rem;
    }

    .section-cat::before {
      content: "";
      background-image: url('icono-abeja.png');
      background-size: cover;
      width: 30px;
      height: 30px;
      display: inline-block;
      margin-right: 10px;
    }

    /* Packages Grid */
    .packages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .package-card {
        background: var(--white);
        border-radius: 1rem;
        overflow: hidden;
        box-shadow: 0 4px 6px var(--shadow);
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .package-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px var(--shadow); }

    .package-card.featured { border: 2px solid var(--turquoise); transform: scale(1.00); }

    .package-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: var(--turquoise);
        color: var(--white);
        padding: 0.5rem 1rem;
        border-radius: 2rem;
        font-size: 0.875rem;
        font-weight: 600;
        z-index: 2;
    }

    .package-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    /* Make clickable images obvious */
    .toggle-info { cursor: pointer; outline: none; }
    .toggle-info:focus { box-shadow: 0 0 0 4px rgba(64,224,208,0.15); }

    .package-content {
        padding: 1.5rem;
        margin-bottom: 0%;
    }

    .package-title { font-size: 1.5rem; font-weight: 700; color: var(--dark-gray); margin-bottom: 0.75rem; }

    .package-description { color: var(--gray); margin-bottom: 1rem; line-height: 1.6; }

    .package-features { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
    .feature { display: flex; align-items: center; gap: 0.5rem; color: var(--gray); font-size: 0.875rem; }
    .feature i { color: var(--turquoise); font-size: 1rem; }

    .package-includes { margin-bottom: 1.5rem; }
    .includes-title { font-size: 1.125rem; font-weight: 600; color: var(--dark-gray); margin-bottom: 0.75rem; }
    .includes-list { list-style: none; padding: 0; }
    .includes-list li { position: relative; padding: 0.25rem 0; padding-left: 1.5rem; color: var(--gray); font-size: 0.875rem; line-height: 1.5; }
    .includes-list li:before { content: "✓"; position: absolute; left: 0; color: var(--turquoise); font-weight: bold; font-size: 1rem; }

    .package-price { padding: 1rem; border-radius: 0.5rem; text-align: center; margin-top: auto; }
    .discount-price { display: block; color: var(--turquoise); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.25rem; }

    /* Collapsible behaviour */
    .collapsible {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s cubic-bezier(.2,.8,.2,1), padding 0.25s ease;
      padding: 0 1.5rem;
    }
    .collapsible.active {
      /* padding is restored when active */
      padding: 1.5rem;
    }

    /* Responsive tweaks */
    @media (max-width: 600px){
      .page-title { font-size: 2rem; }
      .package-image{ height:160px }
    }

  