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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Hero Section Combined (Header + Hero) - OVERLAY MEJORADO */
.hero-section {
    min-height: 100vh;
    background-image: url('img/bodi.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-slogan {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: #10B981;
    font-weight: 600;
}

/* Header dentro del hero */
.header {
    position: relative;
    z-index: 10;
    padding-top: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: #10B981;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.025em;
    white-space: nowrap;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #10B981;
    border-radius: 1px;
}

.contact-btn {
    background-color: white;
    border: 1px solid black;
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Hero Content */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: #10B981;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #10B981;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: #374151;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.btn-secondary:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* Statistics Section */
.stats-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.stat-sublabel {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
}

/* About Section */
.about-section {
    background-color: white;
    padding: 6rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-tag {
    display: inline-block;
    background-color: #D1FAE5;
    color: #10B981;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

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

.about-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.about-card h4 {
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 3rem;
    line-height: 1.2;
}

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

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: #D1FAE5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Hero Section Combined (Header + Hero) - AJUSTADO PARA ZOOM */
.hero-section {
    min-height: 100vh;
    background-image: url('img/bodi.png');
    background-size: contain; /* Cambiado de 'cover' a 'contain' para que se reduzca con el zoom */
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

/* Header dentro del hero */
.header {
    position: relative;
    z-index: 10;
    padding-top: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: #10B981;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.025em;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #10B981;
    border-radius: 1px;
}

.contact-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Hero Content */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: #10B981;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #10B981;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: #374151;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.btn-secondary:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* Statistics Section */
.stats-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.stat-sublabel {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
}

/* About Section */
.about-section {
    background-color: white;
    padding: 6rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-tag {
    display: inline-block;
    background-color: #D1FAE5;
    color: #10B981;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

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

.about-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.about-card h4 {
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 3rem;
    line-height: 1.2;
}

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

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: #D1FAE5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #10B981;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

/* Video Section - RESPONSIVIDAD MEJORADA */
.video-section {
    background-color: white;
    padding: 6rem 2rem;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 3rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    max-width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
}

.stars {
    margin-bottom: 2rem;
}

.star {
    color: #FCD34D;
    font-size: 1.5rem;
    margin: 0 0.1rem;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 2rem;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background-color: white;
    padding: 6rem 2rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background-color: #DDFCE6;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f1f5f9;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
    flex: 1;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #10B981;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

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

/* Footer - COLUMNAS CORREGIDAS */
.footer {
    background-color: #1F2937;
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo p {
    color: #9CA3AF;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: contents;
}

.link-column {
    min-width: 0;
}

.link-column h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-column ul {
    list-style: none;
}

.link-column li {
    margin-bottom: 0.5rem;
}

.link-column a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.link-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    margin: 0;
}

/* Responsive Design - MEJORADO */
@media (max-width: 1200px) {
    .navbar {
        padding: 1.5rem 1rem;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .video-container {
        padding: 0 1rem;
    }
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo {
        grid-column: 1;
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .contact-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-title {
        font-size: 1.25rem;
    }
    
    .video-title {
        font-size: 1.75rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .author-info {
        text-align: center;
    }
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Efectos adicionales */
.btn-primary svg,
.contact-btn svg {
    transition: transform 0.2s ease;
}

.btn-primary:hover svg,
.contact-btn:hover svg {
    transform: translateX(2px);
}
    margin-bottom: 1rem;
    color: #10B981;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

/* Video Section - RESPONSIVIDAD MEJORADA */
.video-section {
    background-color: white;
    padding: 6rem 0rem;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 3rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    max-width: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f9fa;
    padding: 6rem 2rem;
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
}

.stars {
    margin-bottom: 2rem;
}

.star {
    color: #FCD34D;
    font-size: 1.5rem;
    margin: 0 0.1rem;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 2rem;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background-color: white;
    padding: 6rem 2rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #f1f5f9;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
    flex: 1;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #10B981;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

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

/* Footer - COLUMNAS CORREGIDAS */
.footer {
    background-color: black;
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo p {
    color: #9CA3AF;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-links {
    display: contents;
}

.link-column {
    min-width: 0;
}

.link-column h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-column ul {
    list-style: none;
}

.link-column li {
    margin-bottom: 0.5rem;
}

.link-column a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.link-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9CA3AF;
    margin: 0;
}

/* Responsive Design - MEJORADO */
@media (max-width: 1200px) {
    .navbar {
        padding: 1.5rem 1rem;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .video-container {
        padding: 0 1rem;
    }
}

@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-cards {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo {
        grid-column: 1;
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .contact-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .about-title {
        font-size: 1.25rem;
    }
    
    .video-title {
        font-size: 1.75rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .author-info {
        text-align: center;
    }
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Efectos adicionales */
.btn-primary svg,
.contact-btn svg {
    transition: transform 0.2s ease;
}

.btn-primary:hover svg,
.contact-btn:hover svg {
    transform: translateX(2px);
}

.app-design-section {
    background-color: #ffffff;
    padding: 6rem 2rem;
    text-align: center;
}

.app-design-container {
    max-width: 1800px;
    margin: 0 auto;
}

.app-design-text {
    font-size: 1.1rem;
    color: #4B5563;
    margin-bottom: 2rem;
}

.app-design-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* --- App Design Zigzag Layout --- */
.app-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(.4,2,.6,1) forwards;
}

.app-row-left .app-images { order: 1; }
.app-row-left .app-desc { order: 2; text-align: left; }
.app-row-right .app-images { order: 2; }
.app-row-right .app-desc { order: 1; text-align: right; }

.app-images {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
}

.app-img {
    width: 370px;
    max-width: 48vw;
    border-radius: 22px;
    border: none;
    background: white;
    box-shadow: none; /* <--- Sin sombra */
    transition: transform 0.3s cubic-bezier(.4,2,.6,1);
    filter: none;
}
.app-img:hover {
    transform: scale(1.06) rotate(-2deg);
    box-shadow: none; /* <--- Sin sombra al hacer hover */
    z-index: 2;
}

.app-desc {
    flex: 1 1 320px;
    background: linear-gradient(120deg, #D1FAE5 60%, #fff 100%);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 16px rgba(16,185,129,0.06);
    color: #1F2937;
    min-width: 280px;
    max-width: 420px;
    animation: fadeInUp 1.2s cubic-bezier(.4,2,.6,1);
}
.app-desc h3 {
    color: #10B981;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.app-desc p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
}

/* Animación para fadeInUp en app design */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media (max-width: 1200px) {
    .app-img {
        width: 100%;
        max-width: 420px;
    }
    .app-images {
        flex-wrap: wrap;
        justify-content: center;
    }
    .app-design-container {
        max-width: 98vw;
    }
}
@media (max-width: 900px) {
    .app-row {
        flex-direction: column !important;
        gap: 2rem;
        text-align: center;
    }
    .app-images {
        order: 1 !important;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        gap: 1rem;
    }
    .app-img {
        width: 100%;
        max-width: 350px;
    }
    .app-desc {
        order: 2 !important;
        max-width: 100%;
        padding: 1.5rem 1rem;
        text-align: center !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
}
@media (max-width: 600px) {
    .app-img {
        width: 100%;
        max-width: 98vw;
    }
    .app-row {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    .app-images {
        gap: 0.5rem;
    }
    .app-desc {
        padding: 1.2rem 0.5rem;
    }
}
