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

:root {
    --primary-color: #e74c3c;
    --secondary-color: #f39c12;
    --accent-color: #27ae60;
    --bg-light: #fef9e7;
    --bg-white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --gradient-main: linear-gradient(135deg, #e74c3c, #f39c12);
    --gradient-secondary: linear-gradient(135deg, #27ae60, #2ecc71);
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --border-radius: 15px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* Header y Navegación */
header {
    background: var(--gradient-main);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo h1 {
    font-family: 'Fredoka One', cursive;
    color: white;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Sección Hero */
.hero {
    background: var(--gradient-main);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50">🎉</text></svg>') repeat;
    opacity: 0.1;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

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

.hero h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    min-width: 150px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Secciones generales */
section {
    padding: 80px 0;
}

h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Sección Nosotros */
.about {
    background: var(--bg-white);
}

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

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

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-image,
.placeholder-image {
    background: var(--gradient-main);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

/* Local Heritage Section */
.local-heritage {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #eee;
}

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

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

.heritage-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

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

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

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

.heritage-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Sección Actividades */
.activities {
    background: linear-gradient(135deg, #fef9e7, #fff5d6);
}

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

.activity-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.activity-image {
    margin-bottom: 1.5rem;
}

.activity-image .placeholder-image {
    min-height: 200px;
    background: var(--gradient-secondary);
}

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

.gallery-item .placeholder-image {
    min-height: 180px;
    background: var(--gradient-main);
    font-size: 1rem;
}

/* Sección Inventario */
.inventory {
    background: var(--bg-white);
}

.inventory-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.inventory-category {
    background: linear-gradient(135deg, #fef9e7, #fff);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.inventory-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.inventory-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.inventory-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.logistics-tips {
    background: var(--gradient-secondary);
    padding: 3rem;
    border-radius: var(--border-radius);
    color: white;
}

.logistics-tips h3 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

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

.tip {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.tip h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Sección Contacto */
.contact {
    background: linear-gradient(135deg, #fef9e7, #fff5d6);
}

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

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

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.join-requirements {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

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

.join-requirements ul {
    list-style: none;
}

.join-requirements li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.join-requirements li::before {
    content: '🎯';
    position: absolute;
    left: 0;
}

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

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

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form button {
    background: var(--gradient-main);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
}

/* File Upload Styles */
.file-upload-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed #ddd;
    transition: all 0.3s ease;
}

.file-upload-section:hover {
    border-color: var(--primary-color);
    background: #fff5f5;
}

.file-upload-section h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.file-upload-info {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.file-upload-container {
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 1;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: white;
    border: 2px dashed #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.upload-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.upload-text {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.upload-subtext {
    color: var(--text-light);
    font-size: 0.85rem;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 1;
}

.selected-files {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #eee;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.file-icon {
    font-size: 1.2rem;
}

.file-details {
    display: flex;
    flex-direction: column;
}

.file-name {
    font-weight: 500;
    color: var(--text-dark);
}

.file-size {
    font-size: 0.8rem;
    color: var(--text-light);
}

.remove-file {
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.3s ease;
}

.remove-file:hover {
    background: #ff3742;
}

/* Upload Instructions */
.upload-instructions {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid var(--primary-color);
}

.upload-instructions h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.instruction-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instruction-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.instruction-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.instruction-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.instruction-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.upload-process {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

.upload-process h5 {
    margin-bottom: 1rem;
}

.upload-process ol {
    padding-left: 1.5rem;
    color: var(--text-dark);
}

.upload-process li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.upload-process strong {
    color: var(--primary-color);
}

/* Sección Juegos por Edades */
.age-games {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 4rem 0;
}

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

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.age-groups {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.age-group {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.age-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.family-activities {
    background: linear-gradient(135deg, #fff5f0, #ffefe8);
    border: 2px solid #ff6b35;
}

.age-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.age-header h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.family-activities .age-header h3 {
    color: #ff6b35;
}

.age-header p {
    color: var(--text-light);
    font-style: italic;
}

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

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.family-activities .activity-item {
    border-left-color: #ff6b35;
}

.activity-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.activity-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.activity-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.activity-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.activity-schedule {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

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

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

.schedule-item {
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.schedule-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.schedule-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Gatito Chat Bot */
.gatito-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: inherit;
}

.gatito-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    animation: gatitoPulse 2s infinite;
    /* Ensure minimum touch target size for mobile */
    min-width: 48px;
    min-height: 48px;
}

.gatito-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

@keyframes gatitoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.gatito-icon {
    font-size: 1.5rem;
}

.gatito-name {
    font-weight: 600;
    font-size: 1rem;
}

.gatito-chat-container {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    max-height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.gatito-chat-container.active {
    display: flex;
}

.gatito-header {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gatito-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gatito-avatar {
    font-size: 1.5rem;
}

.gatito-info strong {
    display: block;
    font-size: 1rem;
}

.gatito-info small {
    opacity: 0.8;
    font-size: 0.8rem;
}

.gatito-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gatito-close:hover {
    background: rgba(255,255,255,0.2);
}

.gatito-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    max-height: 200px;
}

.gatito-message {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.gatito-bot-message {
    justify-content: flex-start;
}

.gatito-user-message {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.message-content {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 10px;
    max-width: 250px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.gatito-user-message .message-content {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.gatito-quick-questions {
    border-top: 1px solid #eee;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.quick-questions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem 0.5rem 1rem;
    cursor: pointer;
}

.quick-questions-header h4 {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.toggle-questions-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.toggle-questions-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: scale(1.1);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.gatito-quick-questions.collapsed .toggle-icon {
    transform: rotate(180deg);
}

.quick-question-buttons {
    padding: 0 1rem 1rem 1rem;
    max-height: 300px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gatito-quick-questions.collapsed .quick-question-buttons {
    max-height: 0;
    padding: 0 1rem;
    opacity: 0;
}

.quick-question-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.quick-question {
    background: white;
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.quick-question:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gatito-input-area {
    display: flex;
    padding: 1rem;
    border-top: 1px solid #eee;
    gap: 0.5rem;
}

#gatitoInput {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-size: 0.9rem;
}

#gatitoInput:focus {
    border-color: var(--primary-color);
}

#gatitoSend {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

#gatitoSend:hover {
    background: #e74c3c;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.social-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .about-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    footer .container {
        flex-direction: column;
        text-align: center;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stat {
        min-width: auto;
        padding: 1.5rem;
    }
    
    nav {
        padding: 1rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-links a {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Animaciones adicionales */
.activity-card,
.inventory-category,
.tip,
.contact-form,
.join-requirements {
    animation: fadeInUp 0.6s ease forwards;
}

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

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

/* Responsive Styles for New Features */
@media (max-width: 768px) {
    /* Age-based activities responsive */
    .instructions-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .activities-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .age-group {
        padding: 1.5rem;
    }
    
    .activity-item {
        padding: 0.75rem;
    }
    
    /* Gatito bot responsive - Enhanced mobile visibility */
    .gatito-chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .gatito-button {
        padding: 0.875rem 1.125rem;
        font-size: 1rem;
        /* Enhanced shadow for better visibility on mobile */
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
        /* Stronger pulse animation on mobile to draw attention */
        animation: gatitoPulseMobile 1.8s infinite;
        /* Ensure it's easily tappable */
        min-width: 56px;
        min-height: 56px;
    }
    
    .gatito-chat-container {
        width: 320px;
        max-height: 500px;
        bottom: 75px;
        right: 10px;
        /* Better mobile positioning */
        max-width: calc(100vw - 20px);
    }
    
    .gatito-messages {
        max-height: 250px;
        padding: 0.75rem;
    }
    
    .message-content {
        max-width: 220px;
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .quick-question {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
        /* Better touch targets for mobile */
        min-height: 36px;
        margin: 0.2rem;
    }
    
    /* Auto-collapse quick questions on mobile after interaction */
    .gatito-quick-questions.auto-collapsed {
        display: block;
    }
    
    .gatito-quick-questions.auto-collapsed .quick-question-buttons {
        max-height: 0;
        padding: 0 1rem;
        opacity: 0;
    }
    
    .gatito-quick-questions.auto-collapsed .toggle-icon {
        transform: rotate(180deg);
    }
    
    /* Mobile-specific pulse animation - more noticeable */
    @keyframes gatitoPulseMobile {
        0%, 100% { 
            transform: scale(1); 
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
        }
        50% { 
            transform: scale(1.08); 
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.7);
        }
    }
    
    /* Upload instructions responsive */
    .upload-instructions {
        padding: 1rem;
    }
    
    .instruction-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .instruction-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .gatito-chat-widget {
        bottom: 10px;
        right: 10px;
    }
    
    .gatito-chat-container {
        width: calc(100vw - 20px);
        max-width: 300px;
        right: 10px;
        bottom: 60px;
        /* Ensure chat doesn't cover the entire small screen */
        max-height: 60vh;
    }
    
    .gatito-button {
        padding: 0.75rem;
        font-size: 1.1rem;
        /* More prominent on very small screens */
        min-width: 60px;
        min-height: 60px;
        /* Enhanced shadow and animation for smallest screens */
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
        animation: gatitoPulseSmall 1.5s infinite;
    }
    
    /* Even more prominent animation for very small screens */
    @keyframes gatitoPulseSmall {
        0%, 100% { 
            transform: scale(1); 
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
        }
        50% { 
            transform: scale(1.1); 
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.8);
        }
    }
    
    .gatito-name {
        display: none;
    }
    
    .gatito-messages {
        max-height: 120px;
    }
    
    .quick-question {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        min-height: 44px;
    }
    
    .age-group {
        padding: 1rem;
    }
    
    .activity-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .activity-icon {
        align-self: center;
    }
}