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

.header {
    text-align: center;
    margin-bottom: 70px;
    animation: slideDown 0.8s ease-out;
}

.header h1 {
    /* font-family: 'Sora', sans-serif; */
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}

.header p {
    font-size: 18px;
    color: #64748b;
    font-weight: 400;
}

/* Sección Hero */
.hero-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    flex: 1;
    min-height: 400px;
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 120px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    /* font-family: 'Sora', sans-serif; */
    font-size: 42px;
    font-weight: 800;
    /* color: #0f172a; */
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.8;
}

.hero-content .subtitle {
    font-size: 18px;
    color: #0052a3;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Secciones de información */
.info-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: cardFloat 0.8s ease-out;
}

.info-card:nth-child(1) {
    animation-delay: 0.1s;
}

.info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.info-card:nth-child(3) {
    animation-delay: 0.3s;
}

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

.info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.card-title {
    /* font-family: 'Sora', sans-serif; */
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.card-content {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
}

.card-list {
    list-style: none;
    margin-top: 15px;
}

.card-list li {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0052a3;
    font-weight: 700;
    font-size: 16px;
}

/* Sección de especialidades */
.specialties-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin-bottom: 80px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.specialties-section h3 {
    /* font-family: 'Sora', sans-serif; */
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 40px;
    text-align: center;
}

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

.specialty-tag {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: default;
}

.specialty-tag:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 82, 163, 0.3);
}

.specialty-tag:nth-child(2n) {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #0f172a;
}

.specialty-tag:nth-child(2n):hover {
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.specialty-tag:nth-child(3n) {
    background: linear-gradient(135deg, #3d2817 0%, #2a1810 100%);
    color: white;
}

.specialty-tag:nth-child(3n):hover {
    box-shadow: 0 10px 25px rgba(61, 40, 23, 0.3);
}

/* Sección de testimonio */
.testimonial-section {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.testimonial-section p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-section .quote {
    font-size: 48px;
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* CTA Button */
.cta-section {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-button {
    padding: 18px 50px;
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(0, 82, 163, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 82, 163, 0.4);
}

.cta-button:active {
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-section {
        gap: 40px;
    }

    .hero-image {
        min-height: 350px;
        font-size: 100px;
    }

    .hero-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 36px;
    }

    .hero-section {
        flex-direction: column;
        gap: 30px;
    }

    .hero-image {
        min-height: 300px;
        font-size: 80px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .info-sections {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .specialties-section {
        padding: 40px 30px;
    }

    .specialties-section h3 {
        font-size: 24px;
    }

    .testimonial-section {
        padding: 40px 30px;
    }

    .testimonial-section p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    /* body {
        padding: 40px 15px;
    } */

    .header h1 {
        font-size: 28px;
    }

    .header p {
        font-size: 14px;
    }

    .hero-image {
        min-height: 250px;
        font-size: 60px;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .card-title {
        font-size: 20px;
    }

    .specialties-section {
        padding: 30px 20px;
    }

    .specialties-grid {
        grid-template-columns: 1fr;
    }

    .specialty-tag {
        padding: 14px 20px;
        font-size: 14px;
    }

    .testimonial-section {
        padding: 30px 20px;
    }

    .testimonial-section p {
        font-size: 16px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 14px;
    }
}

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

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