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

:root {
    --primary-color: #ffffff;
    --secondary-color: #ffffff;
    --text-dark: #fba833;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-white: #fcf7f1;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo-image {
    height: 35px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    font-size: 15px;
}

.nav a:hover {
    opacity: 0.8;
}

.btn-reservar {
    background: #fba833 !important;
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

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

/* Hero Section */
.hero {
    background: white;
    padding: 60px 0;
    text-align: center;
}

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

.hero-image-container {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: 0 auto 50px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-content {
    padding: 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subtitle {
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-color);
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background: #fba833 !important;
    color: white !important;
}

.btn-secondary {
    background: transparent;
    color: #fba833;
    border: 2px solid #fba833;
}

.btn-secondary:hover {
    background: #fba833;
    color: white;
}

.hero-note {
    color: #666;
    font-size: 14px;
    text-align: center;
}

/* Age Selection */
.age-selection {
    padding: 80px 0;
    background: white;
}

.age-cards-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.age-card-full {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.age-card-title {
    font-size: 42px;
    font-weight: 800;
    color: #fba833;
    margin: 0;
    text-align: left;
}

.age-card-full .age-card-image-full {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.age-card-full:hover .age-card-image-full {
    transform: scale(1.02);
}

/* Why Us */
.why-us {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    color: #fba833;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #FFF5F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fba833;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.feature-list li {
    padding: 8px 0;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
    font-size: 18px;
}

/* Gallery */
.gallery {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

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

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.toys {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23F0F8FF" width="400" height="400"/><circle cx="100" cy="100" r="30" fill="%23FF6B6B"/><rect x="200" y="150" width="60" height="80" rx="10" fill="%23FFD93D"/><circle cx="300" cy="300" r="40" fill="%236BCB77"/></svg>');
}

.kids-playing {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 250"><rect fill="%23E8E8E8" width="200" height="250"/><circle cx="100" cy="80" r="35" fill="%23FFB5A0"/><circle cx="100" cy="150" r="45" fill="%23A8D8F0"/></svg>');
}

.legos {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 250"><rect fill="%23FFE5E0" width="200" height="250"/><rect x="50" y="80" width="40" height="60" rx="5" fill="%23FF6B6B"/><rect x="110" y="100" width="40" height="60" rx="5" fill="%236BCB77"/></svg>');
}

.colorful-toys {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 250"><rect fill="%23FFF5E6" width="200" height="250"/><circle cx="70" cy="120" r="30" fill="%23FFD93D"/><circle cx="130" cy="120" r="30" fill="%23FF6B6B"/><circle cx="100" cy="180" r="30" fill="%236BCB77"/></svg>');
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-stars span {
    color: #FFD700;
}

.testimonial-text {
    color: #333;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fba833 0%, #ff9a44 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.testimonial-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: linear-gradient(to bottom, #F0F8FF 0%, #FFFFFF 100%);
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.faq-form h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-form p {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
}

.faq-form input,
.faq-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
}

.faq-form input:focus,
.faq-form textarea:focus {
    outline: none;
    border-color: #fba833;
}

.faq-form textarea {
    resize: vertical;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.faq-questions h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fba833;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-question {
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 10px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: #fba833;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fba833;
    margin-top: 3px;
}

.faq-answer {
    margin-left: 45px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
    font-size: 14px;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.footer-social a {
    color: white;
    transition: opacity 0.3s;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-zones-note {
    margin-top: 15px;
    font-style: italic;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.7;
    font-size: 14px;
}

/* Blog/Consejos Section */
.blog {
    padding: 80px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fba833;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-excerpt {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    background: #fba833;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

.blog-read-more:hover {
    background: #e89725;
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.blog-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.blog-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 36px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-modal-close:hover {
    color: #333;
}

#modalArticleContent h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fba833;
    margin-bottom: 25px;
    line-height: 1.2;
}

#modalArticleContent h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fba833;
    margin-top: 30px;
    margin-bottom: 15px;
}

#modalArticleContent p {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

#modalArticleContent ul {
    margin: 15px 0 20px 20px;
    color: #666;
}

#modalArticleContent ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

#modalArticleContent strong {
    color: #fba833;
    font-weight: 600;
}

/* WhatsApp Chat Widget */
#whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.whatsapp-chat-box {
    width: 350px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    animation: slideUp 0.3s ease;
    margin-bottom: 10px;
}

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

.whatsapp-chat-header {
    background: #075E54;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-chat-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
}

.whatsapp-chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-chat-info {
    flex: 1;
}

.whatsapp-chat-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-chat-info p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
}

.whatsapp-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.whatsapp-close:hover {
    opacity: 0.8;
}

.whatsapp-chat-body {
    padding: 20px;
    background: #ECE5DD;
    min-height: 150px;
}

.whatsapp-message {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
    max-width: 80%;
}

.whatsapp-message p {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #333;
}

.whatsapp-time {
    font-size: 11px;
    color: #999;
}

.whatsapp-chat-footer {
    padding: 15px;
    background: white;
}

.whatsapp-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.whatsapp-send-btn:hover {
    background: #20BA5A;
}

/* Responsive */
@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .hero-image-container {
        height: 400px;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        font-size: 16px;
    }

    .age-cards-full {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .age-card-title {
        font-size: 36px;
    }
    
    .age-card-full .age-card-image-full {
        height: 400px;
    }

    /* Why Us - Mobile Simple List */
    .why-us {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .section-subtitle {
        display: none;
    }

    .features {
        display: block;
        max-width: 500px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .feature {
        background: transparent;
        padding: 0;
        margin-bottom: 20px;
        border-radius: 0;
        box-shadow: none;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
    }

    .feature:hover {
        transform: none;
    }

    .feature-icon {
        display: none;
    }

    .feature::before {
        content: "✓";
        font-size: 24px;
        font-weight: 700;
        color: #4CAF50;
        flex-shrink: 0;
    }

    .feature h3 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 0;
        color: #333;
    }

    /* Hide list items on mobile - only show titles */
    .feature-list {
        display: none;
    }

    /* Mobile: Change third feature title completely */
    .feature:nth-child(3) h3 {
        visibility: hidden;
        position: relative;
        height: 20px;
    }

    .feature:nth-child(3) h3::before {
        content: "Traslado y Armado";
        visibility: visible;
        position: absolute;
        left: 0;
        top: 0;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        white-space: nowrap;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Testimonials responsive */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
    }

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

    /* Blog responsive */
    .blog {
        padding: 60px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .blog-modal-content {
        padding: 30px 20px;
        max-height: 85vh;
    }

    #modalArticleContent h2 {
        font-size: 26px;
    }

    #modalArticleContent h3 {
        font-size: 20px;
    }

    #modalArticleContent p {
        font-size: 15px;
    }

    /* Ocultar chat widget en móvil */
    .whatsapp-chat-box {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .hero-image-container {
        height: 300px;
        margin-bottom: 30px;
        border-radius: 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #fba833;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 4px 12px rgba(251, 168, 51, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #e89725;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(251, 168, 51, 0.6);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 968px) {
    .back-to-top {
        bottom: 90px;
        width: 45px;
        height: 45px;
    }
}

