/* Style.css for AutoSelección Argentina */

/* CSS Variables & Root Styles */
:root {
    /* Tetrad Color Scheme */
    --primary-color: #FF5C4D;        /* Vibrant Red-Orange */
    --primary-dark: #D83C30;         /* Darker version of primary */
    --primary-light: #FF8A7E;        /* Lighter version of primary */
    
    --secondary-color: #4DCCFF;      /* Vibrant Blue */
    --secondary-dark: #2A9BD6;       /* Darker version of secondary */
    --secondary-light: #8ADFFF;      /* Lighter version of secondary */
    
    --tertiary-color: #8A4DFF;       /* Vibrant Purple */
    --tertiary-dark: #6230D8;        /* Darker version of tertiary */
    --tertiary-light: #B08AFF;       /* Lighter version of tertiary */
    
    --quaternary-color: #4DFF8A;     /* Vibrant Green */
    --quaternary-dark: #30D86A;      /* Darker version of quaternary */
    --quaternary-light: #7EFFAE;     /* Lighter version of quaternary */
    
    /* Neutral Colors */
    --dark-color: #131A29;           /* Dark Blue-Grey */
    --grey-color: #607095;           /* Medium Grey */
    --light-color: #F4F6FA;          /* Light Grey-White */
    --white-color: #FFFFFF;          /* Pure White */
    
    /* Neomorphic Shadow Variables */
    --nm-shadow-light: 10px 10px 20px rgba(166, 180, 200, 0.20);
    --nm-shadow-dark: -8px -8px 16px rgba(255, 255, 255, 0.70);
    --nm-shadow-inset: inset 6px 6px 12px rgba(166, 180, 200, 0.25), inset -6px -6px 12px rgba(255, 255, 255, 0.6);
    
    /* Typography */
    --heading-font: 'Inter', sans-serif;
    --body-font: 'IBM Plex Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-circle: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--dark-color);
}

h1 {
    font-size: 4.8rem;
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: 3.6rem;
    margin-bottom: var(--space-lg);
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover, a:focus {
    color: var(--secondary-dark);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

ul, ol {
    list-style: none;
    padding-left: 0;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Section Styles */
section {
    padding: var(--space-xl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: var(--radius-sm);
}

/* Button Styles - Global */
.btn, button, input[type="submit"] {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 1.6rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: var(--radius-md);
    transition: all var(--transition-medium);
    border: none;
    outline: none;
    background: var(--light-color);
    color: var(--dark-color);
    box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
}

.btn:hover, button:hover, input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
    text-decoration: none;
}

.btn:active, button:active, input[type="submit"]:active {
    transform: translateY(0);
    box-shadow: var(--nm-shadow-inset);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white-color);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white-color);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    color: var(--white-color);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md) 0;
    background-color: rgba(244, 246, 250, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    z-index: 1000;
    transition: all var(--transition-medium);
}

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

.logo a {
    display: block;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-list a {
    color: var(--dark-color);
    font-weight: 500;
    padding: var(--space-sm) 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-medium);
}

.nav-list a:hover::after, 
.nav-list a:focus::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark-color);
    transition: all var(--transition-medium);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
    max-width: 680px;
    color: var(--white-color);
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    z-index: 2;
}

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

.hero-content h1 {
    color: var(--white-color);
    font-size: 5.6rem;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-content p {
    font-size: 2rem;
    margin-bottom: var(--space-xl);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Vision Section */
.vision {
    background-color: var(--white-color);
}

.vision-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.vision-text {
    flex: 1;
    min-width: 300px;
}

.vision-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-image-container img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--nm-shadow-light);
}

.vision-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

/* Card Styles - Reusable */
.card {
    background: var(--light-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
    transition: transform var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.card-content {
    padding: var(--space-lg);
    flex: 1;
    width: 100%;
    text-align: center;
}

.card-content h3 {
    color: var(--dark-color);
    margin-bottom: var(--space-md);
}

.resource-link {
    display: inline-block;
    margin-top: var(--space-md);
    color: var(--tertiary-color);
    font-weight: 500;
    position: relative;
}

.resource-link::after {
    content: '→';
    margin-left: var(--space-xs);
    transition: transform var(--transition-fast);
}

.resource-link:hover::after {
    transform: translateX(4px);
}

/* Media Section */
.media {
    background-color: var(--light-color);
}

.media-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.gallery-container {
    position: relative;
    margin: var(--space-xl) 0;
}

.gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-lg);
    padding: var(--space-md) 0;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}

.gallery::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.gallery-item {
    flex: 0 0 auto;
    width: 350px;
    scroll-snap-align: start;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--nm-shadow-light);
    transition: transform var(--transition-medium);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white-color);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-medium);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.gallery-prev, .gallery-next {
    background: var(--light-color);
    color: var(--dark-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
}

.gallery-prev:hover, .gallery-next:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

/* Accordion Styles */
.accordions-container {
    max-width: 800px;
    margin: var(--space-xl) auto;
}

.accordion {
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white-color);
    box-shadow: var(--nm-shadow-light);
}

.accordion-header {
    padding: var(--space-md) var(--space-lg);
    background: var(--light-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h4 {
    margin: 0;
    font-size: 1.8rem;
}

.accordion-icon {
    font-weight: bold;
    font-size: 2rem;
    transition: transform var(--transition-fast);
}

.accordion.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--space-lg);
    transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.accordion.active .accordion-content {
    max-height: 300px;
    padding: var(--space-lg);
}

/* Recursos Section */
.recursos {
    background-color: var(--white-color);
}

.recursos-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.recursos-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

/* Eventos Section */
.eventos {
    background-color: var(--light-color);
}

.eventos-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.evento-card {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.evento-date {
    background: var(--primary-color);
    color: var(--white-color);
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    width: 100%;
}

.evento-date .day {
    font-size: 3.2rem;
    font-weight: 700;
    display: block;
}

.evento-date .month {
    font-size: 1.8rem;
    text-transform: uppercase;
}

.evento-content {
    padding: var(--space-lg);
    width: 100%;
    text-align: center;
}

.evento-location {
    color: var(--grey-color);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.evento-description {
    margin-bottom: var(--space-lg);
}

.evento-image-container {
    width: 100%;
    height: 250px;
    margin-bottom: var(--space-lg);
    overflow: hidden;
    border-radius: var(--radius-md);
}

.evento-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

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

/* Testimonios Section */
.testimonios {
    background-color: var(--white-color);
}

.testimonios-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

.testimonios-slider {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonio {
    padding: var(--space-lg) var(--space-md);
}

.testimonio-content {
    background: var(--light-color);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    align-items: center;
}

.testimonio-image {
    flex: 0 0 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonio-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius-circle);
    border: 4px solid var(--white-color);
    box-shadow: var(--nm-shadow-light);
}

.testimonio-text {
    flex: 1;
    min-width: 280px;
}

.testimonio-text p {
    position: relative;
    font-style: italic;
}

.testimonio-text p::before {
    content: '❝';
    font-size: 3rem;
    color: var(--tertiary-light);
    position: absolute;
    left: -25px;
    top: -15px;
}

.testimonio-text h4 {
    margin-bottom: 5px;
    color: var(--tertiary-color);
}

.client-location {
    color: var(--grey-color);
    font-style: italic;
}

.testimonios-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.testimonio-prev, .testimonio-next {
    background: var(--light-color);
    color: var(--dark-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
}

.testimonio-prev:hover, .testimonio-next:hover {
    background: var(--tertiary-color);
    color: var(--white-color);
}

.testimonios-dots {
    display: flex;
    gap: var(--space-sm);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-circle);
    background: var(--light-color);
    cursor: pointer;
    transition: background var(--transition-fast);
    box-shadow: var(--nm-shadow-inset);
}

.dot.active, .dot:hover {
    background: var(--tertiary-color);
    box-shadow: var(--nm-shadow-light);
}

/* Contacto Section */
.contacto {
    background-color: var(--light-color);
}

.contacto-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.contacto-info {
    flex: 1;
    min-width: 300px;
}

.contacto-details {
    margin-top: var(--space-xl);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.contact-icon {
    margin-right: var(--space-md);
    font-size: 2.4rem;
}

.contacto-form-container {
    flex: 1;
    min-width: 300px;
}

.contacto-form {
    background: var(--white-color);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: none;
    background: var(--light-color);
    box-shadow: var(--nm-shadow-inset);
    font-family: var(--body-font);
    transition: box-shadow var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--secondary-color), var(--nm-shadow-inset);
}

.toggle-group {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.toggle-group input[type="radio"] {
    display: none;
}

.toggle-option {
    padding: 10px 20px;
    border-radius: var(--radius-md);
    background: var(--light-color);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
    user-select: none;
}

.toggle-group input[type="radio"]:checked + .toggle-option {
    background: var(--secondary-color);
    color: var(--white-color);
    box-shadow: var(--nm-shadow-inset);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: var(--space-xl) 0 0;
}

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

.footer-column h3 {
    color: var(--white-color);
    margin-bottom: var(--space-lg);
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--light-color);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
}

address p {
    margin-bottom: var(--space-sm);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.social-links a {
    color: var(--light-color);
    display: inline-block;
    transition: color var(--transition-medium), transform var(--transition-medium);
    padding: var(--space-sm) 0;
    position: relative;
}

.social-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-medium);
}

.social-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.social-links a:hover::before {
    width: 100%;
}

.newsletter h4 {
    color: var(--white-color);
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    margin-top: var(--space-sm);
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-family: var(--body-font);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    background: var(--primary-color);
    color: var(--white-color);
    cursor: pointer;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    transition: background var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg) 0;
    text-align: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    overflow-y: auto;
}

.modal-content {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 90%;
    margin: 10% auto;
    padding: var(--space-xl);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

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

.close-modal {
    position: absolute;
    right: var(--space-lg);
    top: var(--space-lg);
    font-size: 2.4rem;
    color: var(--grey-color);
    cursor: pointer;
}

.close-modal:hover {
    color: var(--dark-color);
}

/* Success, Privacy & Terms Pages */
.success-page,
.privacy-page,
.terms-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-xxl) 0;
}

.success-content,
.privacy-content,
.terms-content {
    max-width: 800px;
    text-align: center;
    padding: var(--space-xl);
    background: var(--white-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--nm-shadow-light), var(--nm-shadow-dark);
}

.success-icon {
    font-size: 8rem;
    color: var(--quaternary-color);
    margin-bottom: var(--space-lg);
}

.privacy-page .container,
.terms-page .container {
    padding-top: 100px;
}

.privacy-content,
.terms-content {
    text-align: left;
}

/* Animation Utilities */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Media Queries */
@media (max-width: 1024px) {
    html {
        font-size: 60%;
    }
    
    .hero-content h1 {
        font-size: 4.8rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        padding: var(--space-md);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-list a {
        display: block;
        padding: var(--space-md) 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.8rem;
    }
    
    .eventos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 50%;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-content h1 {
        font-size: 3.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: var(--space-sm);
    }
    
    .vision-cards,
    .recursos-cards {
        grid-template-columns: 1fr;
    }
    
    .testimonios-nav {
        flex-direction: column;
        gap: var(--space-md);
    }
}