/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Fallback styles for text logo if needed */
.logo h2 {
    color: #004B60;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.logo span {
    color: #666;
    font-size: 0.9rem;
    display: block;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #004B60;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #004B60;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: #004B60;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #666;
}

.credentials {
    color: #004B60 !important;
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
}

.cta-button {
    display: inline-block;
    background: #004B60;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #004B60;
    cursor: pointer;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0,75,96,0.2);
}

.cta-button:hover {
    background: #003a4a;
    border-color: #003a4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,75,96,0.4);
    color: white;
    text-decoration: none;
}

.hero-image img {
    width: 100%;
    height: auto;
}

/* Especialidades Cards */
.especialidades-cards {
    padding: 80px 0;
    background: #fff;
}

.especialidades-cards h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #004B60;
    margin-bottom: 3rem;
    font-weight: 700;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card:hover .card-icon {
    background: #003a4a;
    transform: scale(1.1);
}

.card:hover .card-icon img {
    transform: scale(1.05);
}

.card-icon {
    background: #004B60;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    overflow: hidden;
    padding: 10px;
    transition: all 0.3s ease;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.card h3 {
    color: #004B60;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 2.2rem;
    color: #004B60;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Stats Section */
.stats {
    background: #004B60;
    padding: 60px 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Other Specialties */
.other-specialties {
    padding: 80px 0;
    background: #fff;
}

.other-specialties h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #004B60;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.specialties-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.specialties-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.specialties-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.specialties-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

.specialty-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.specialty-card:hover {
    transform: translateY(-5px);
}

.specialty-card:hover .specialty-icon {
    background: #003a4a;
    transform: scale(1.1);
}

.specialty-card:hover .specialty-icon img {
    transform: scale(1.05);
}

.specialty-icon {
    background: #004B60;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.3rem;
    overflow: hidden;
    padding: 8px;
    transition: all 0.3s ease;
}

.specialty-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.specialty-card h3 {
    color: #004B60;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.specialty-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
    flex-grow: 1;
}

.cta-center {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #004B60;
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-card.active {
    display: block;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author strong {
    color: #004B60;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-nav button {
    background: #004B60;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-nav button:hover {
    background: #003a4a;
    transform: scale(1.1);
}/* C
TA Section */
.cta-section {
    background: linear-gradient(135deg, #004B60 0%, #003a4a 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: white;
    color: #004B60;
}

.cta-section .cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #fff;
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #004B60;
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #004B60;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 1.5rem 0;
    color: #666;
    line-height: 1.6;
}

/* Blog section removed - using external blog link in navigation */

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #004B60;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-method:hover {
    border-color: #004B60;
    box-shadow: 0 4px 16px rgba(0,75,96,0.1);
    transform: translateY(-2px);
}

.contact-method i {
    background: linear-gradient(135deg, #004B60 0%, #006b7d 100%);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,75,96,0.2);
    transition: all 0.3s ease;
}

/* Cores específicas para cada tipo de contato */
.whatsapp-method i {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 3px 10px rgba(37,211,102,0.3);
}

.phone-method i {
    background: linear-gradient(135deg, #004B60 0%, #006b7d 100%);
    box-shadow: 0 3px 10px rgba(0,75,96,0.2);
}

.appointment-method i {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    box-shadow: 0 3px 10px rgba(108,92,231,0.3);
}

.contact-method:hover i {
    transform: scale(1.1);
}

.contact-method div {
    flex: 1;
}

.contact-method strong {
    color: #004B60;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    font-weight: 600;
}

.contact-method p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.whatsapp-contact,
.phone-contact {
    color: #004B60;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
}

.whatsapp-contact:hover,
.phone-contact:hover {
    color: #003a4a;
    border-bottom-color: #004B60;
}

/* Remove os emojis dos pseudo-elementos */
.phone-contact::before,
.whatsapp-contact::before {
    display: none;
}

.contact-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    max-width: 100%;
}

.contact-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.surgery-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 2.5rem 2rem 2rem;
    color: white;
    text-align: center;
}

.image-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.image-overlay p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.image-overlay .cta-button {
    background: #004B60;
    color: white;
    border: 2px solid #004B60;
    transition: all 0.3s ease;
}

.image-overlay .cta-button:hover {
    background: transparent;
    color: #004B60;
    background: white;
    transform: translateY(-2px);
}

.image-overlay .cta-button i {
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #004B60 0%, #003a4a 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .hero {
        padding: 140px 0 80px;
        min-height: 75vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-image {
        order: 1;
    }
    
    .contact-info {
        order: 2;
    }

    .contact-method {
        padding: 1.2rem;
        flex-direction: row;
        text-align: left;
    }

    .contact-method i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-method strong {
        font-size: 0.95rem;
    }

    .contact-method p {
        font-size: 0.9rem;
    }

    .surgery-image {
        height: 400px;
    }

    .image-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }

    .image-overlay h3 {
        font-size: 1.3rem;
    }

    .image-overlay p {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .specialties-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .specialties-cards {
        grid-template-columns: 1fr;
        order: 2;
    }
    
    .specialties-image {
        order: 1;
    }
    
    /* Blog section removed - external link maintained */
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
    }
    
    .logo-img {
        height: 35px;
        max-width: 120px;
    }

    .contact-method {
        padding: 1rem;
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }

    .contact-method i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-top: 0;
    }

    .contact-method strong {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }

    .contact-method p {
        font-size: 0.85rem;
    }

    .surgery-image {
        height: 350px;
    }

    .image-overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .image-overlay h3 {
        font-size: 1.2rem;
    }

    .image-overlay p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .image-overlay .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card,
.specialty-card,
.page-specialty-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}/* Pag
e Styles */
.page-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0 30px;
    margin-top: 80px;
}

.page-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #004B60;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.page-hero h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
}

.page-hero p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Internal Pages About Details */
.page-about-details {
    padding: 80px 0;
}

.page-about-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.page-about-details .about-text p {
    margin-bottom: 1.5rem;
    color: #444;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.page-about-details .about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Formation Section */
.formation {
    padding: 80px 0;
    background: #f8f9fa;
}

.formation h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #004B60;
    margin-bottom: 3rem;
    font-weight: 700;
}

.formation-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.formation-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.formation-year {
    background: #004B60;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    height: fit-content;
}

.formation-content h3 {
    color: #004B60;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.formation-content p {
    color: #555;
    line-height: 1.6;
    font-weight: 500;
}

.memberships {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.memberships h3 {
    color: #004B60;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.memberships ul {
    list-style: none;
    padding: 0;
}

.memberships li {
    padding: 0.8rem 0;
    color: #444;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.memberships li:before {
    content: "✓";
    color: #004B60;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0.8rem;
}

/* Specialties Overview */
.specialties-overview {
    padding: 6rem 0;
    background: #f8fafc;
}

.specialties-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.specialties-grid {
    display: grid;
    gap: 3rem;
}

.page-specialty-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    align-items: center;
}

.page-specialty-card:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.page-specialty-card:nth-child(even) .specialty-image {
    order: 2;
}

.page-specialty-card:nth-child(even) .specialty-content {
    order: 1;
}

.specialty-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.specialty-content h3 {
    color: #004B60;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

.specialty-content p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

/* Internal Pages CTA Section */
.page-cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.page-cta-section .cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 2rem;
}

.page-cta-section .cta-text h2 {
    font-size: 2.2rem;
    color: #004B60;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-cta-section .cta-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.page-cta-section .cta-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.page-cta-section .cta-button {
    text-align: center;
}

/* Navigation Active State */
.nav-menu a.active {
    color: #004B60;
    font-weight: 600;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 30px 0 20px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero h2 {
        font-size: 1.5rem;
    }
    
    .page-about-details-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .formation-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .page-specialty-card,
    .page-specialty-card:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .page-specialty-card:nth-child(even) .specialty-image,
    .page-specialty-card:nth-child(even) .specialty-content {
        order: initial;
    }
    
    .page-cta-section .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero h2 {
        font-size: 1.3rem;
    }
    
    .formation-item,
    .page-specialty-card,
    .memberships {
        padding: 1.5rem;
    }
}/* Enha
nced styles for sobre page */
.page-about-details {
    background: #fff;
}

.page-about-details-content {
    align-items: flex-start;
}

.formation {
    background: #f8f9fa;
}

.formation-year {
    background: linear-gradient(135deg, #004B60 0%, #003a4a 100%);
    color: white;
    padding: 1.2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    height: fit-content;
    box-shadow: 0 4px 15px rgba(0,75,96,0.2);
}

.formation-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.formation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.memberships {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    margin-bottom: 2rem;
}

.memberships h3 {
    color: #004B60;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #004B60;
    padding-bottom: 0.5rem;
}

.specialties-overview {
    background: #fff;
}

.page-specialty-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.specialty-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-cta-section .cta-text h2 {
    font-size: 2.2rem;
    color: #004B60;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.page-cta-section .cta-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.page-cta-section .cta-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Navigation active state for sobre page */
.nav a.active {
    color: #004B60;
    font-weight: 600;
    position: relative;
}

.nav a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #004B60;
    border-radius: 1px;
}

/* Improved responsive design for sobre page */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero h2 {
        font-size: 1.5rem;
    }
    
    .page-about-details-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .formation-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        padding: 2rem;
    }
    
    .formation-year {
        margin: 0 auto 1rem;
        width: fit-content;
    }
    
    .page-specialty-card,
    .page-specialty-card:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }
    
    .page-specialty-card:nth-child(even) .specialty-image,
    .page-specialty-card:nth-child(even) .specialty-content {
        order: initial;
    }
    
    .page-cta-section .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .specialty-image img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero h2 {
        font-size: 1.3rem;
    }
    
    .formation-item,
    .page-specialty-card,
    .memberships {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
        min-width: 180px;
    }
}/* Esti
los para Membros e Títulos - Layout Simples e Limpo */
.memberships {
    margin-top: 3rem;
}

.memberships h3 {
    color: #004B60;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.memberships-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.memberships-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
}

.memberships-list li:last-child {
    border-bottom: none;
}

.memberships-list li i {
    color: #004B60;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Estilos para Condições Médicas - Layout Grid Simples */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.condition-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.condition-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #004B60 0%, #006B7D 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.condition-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 75, 96, 0.15);
    border-color: #004B60;
}

.condition-item:hover::before {
    transform: scaleX(1);
}

.condition-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    display: block;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #f8fafc;
    padding: 10px;
    box-sizing: border-box;
}

.condition-item:hover .condition-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 75, 96, 0.2);
}

.condition-item h4 {
    color: #1a202c;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.condition-item:hover h4 {
    color: #004B60;
}

.condition-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsividade para os novos layouts */
@media (max-width: 768px) {
    .memberships-list li {
        padding: 0.8rem 0;
        font-size: 0.9rem;
    }
    
    .conditions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .condition-item {
        padding: 1.2rem;
    }
    
    .condition-icon {
        width: 70px;
        height: 70px;
    }
    
    .condition-item h4 {
        font-size: 1rem;
    }
    
    .condition-item p {
        font-size: 0.85rem;
    }
}/* E
stilos para Página de Especialidades */

/* Main Specialties Section */
.main-specialties {
    padding: 4rem 0;
    background: #f8f9fa;
}

.main-specialties h2 {
    text-align: center;
    color: #004B60;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.specialty-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.specialty-detail-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #004B60;
}

.specialty-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.specialty-detail-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.specialty-detail-header h3 {
    color: #004B60;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.specialty-detail-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.specialty-benefits {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.specialty-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: #333;
}

.specialty-benefits li i {
    color: #28a745;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Additional Procedures Section */
.additional-procedures {
    padding: 4rem 0;
    background: white;
}

.additional-procedures h2 {
    text-align: center;
    color: #004B60;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.procedures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.procedure-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.procedure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 75, 96, 0.15);
    border-color: #004B60;
}

.procedure-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin: 0 auto 1rem;
    display: block;
}

.procedure-card h4 {
    color: #004B60;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.procedure-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Technology Section */
.technology-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #004B60, #006B7D);
    color: white;
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.technology-text h2 {
    color: white;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.technology-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.technology-list {
    list-style: none;
    padding: 0;
}

.technology-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    font-size: 1rem;
}

.technology-list li i {
    color: #00d4ff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.technology-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: white;
}

.benefits-section h2 {
    text-align: center;
    color: #004B60;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #004B60, #006B7D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.benefit-item h4 {
    color: #004B60;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsividade para Especialidades */
@media (max-width: 768px) {
    .main-specialties h2 {
        font-size: 2rem;
    }
    
    .specialty-detail-card {
        padding: 1.5rem;
    }
    
    .specialty-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .specialty-detail-icon {
        width: 50px;
        height: 50px;
    }
    
    .specialty-detail-header h3 {
        font-size: 1.3rem;
    }
    
    .technology-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .technology-text {
        order: 2;
    }
    
    .technology-image {
        order: 1;
    }
    
    .procedures-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}
/*
 ===== PÁGINA DE ESPECIALIDADES - DESIGN ULTRA MODERNO ===== */

/* Hero Section Moderno */
.modern-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #001a2e 0%, #004B60 50%, #006B7D 100%);
}

.hero-background {
    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 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 75, 96, 0.1);
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge i {
    color: #00d4ff;
}

.modern-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.highlight {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item-hero {
    text-align: center;
}

.stat-number-hero {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #00d4ff;
    line-height: 1;
}

.stat-label-hero {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Especialidades Premium */
.premium-specialties {
    padding: 8rem 0;
    background: #f8fafc;
    position: relative;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #004B60, #006B7D);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header-modern h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, #004B60, #006B7D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Fallback para navegadores que não suportam background-clip */
@supports not (-webkit-background-clip: text) {
    .text-gradient {
        color: #004B60;
        background: none;
        -webkit-text-fill-color: initial;
    }
}

.section-header-modern p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.specialties-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.specialty-card-modern {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.specialty-card-modern.featured {
    background: linear-gradient(135deg, #004B60 0%, #006B7D 100%);
    color: white;
    transform: scale(1.05);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.specialty-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 75, 96, 0.2);
}

.specialty-card-modern.featured:hover {
    transform: translateY(-10px) scale(1.07);
}

.specialty-icon-modern {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.specialty-card-modern:not(.featured) .specialty-icon-modern {
    background: #f1f5f9;
}

.specialty-icon-modern img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.specialty-content-modern h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: inherit;
}

.specialty-content-modern p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.specialty-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.specialty-card-modern:not(.featured) .feature-tag {
    background: #e2e8f0;
    color: #475569;
}

.card-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.specialty-card-modern:not(.featured) .card-number {
    background: #004B60;
    color: white;
}

/* Diretório de Especialidades */
.specialties-directory {
    padding: 8rem 0;
    background: white;
}

.specialties-grid-directory {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.specialty-category {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.specialty-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 75, 96, 0.1);
    border-color: #004B60;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #004B60;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.category-title i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #004B60, #006B7D);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.specialty-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.specialty-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e2e8f0;
}

.specialty-item:hover {
    background: #004B60;
    color: white;
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 75, 96, 0.2);
}

.specialty-icon-dir {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem;
    color: #004B60;
    transition: all 0.3s ease;
}

.specialty-item:hover .specialty-icon-dir {
    background: rgba(255, 255, 255, 0.2);
    color: #00d4ff;
}

.specialty-content-dir {
    flex: 1;
}

.specialty-content-dir h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: inherit;
    line-height: 1.3;
}

.specialty-content-dir p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

.specialty-arrow {
    font-size: 1rem;
    opacity: 0.6;
    transition: all 0.3s ease;
    color: #64748b;
}

.specialty-item:hover .specialty-arrow {
    opacity: 1;
    transform: translateX(5px);
    color: #00d4ff;
}

/* Tecnologia Showcase */
.tech-showcase {
    position: relative;
    padding: 8rem 0;
    background: #0f172a;
    color: white;
    overflow: hidden;
}

.tech-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tech-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%2300d4ff" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1" fill="%2300d4ff" opacity="0.3"><animate attributeName="opacity" values="0.3;0.8;0.3" dur="3s" repeatCount="indefinite"/></circle><circle cx="40" cy="70" r="1" fill="%2300d4ff" opacity="0.4"><animate attributeName="opacity" values="0.4;0.9;0.4" dur="2.5s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

.tech-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.tech-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.tech-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.tech-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tech-item p {
    opacity: 0.8;
    font-size: 0.95rem;
}

/* CTA Moderno */
.modern-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.cta-modern-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-text-modern h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.cta-text-modern p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.cta-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #004B60, #006B7D);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 75, 96, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 75, 96, 0.4);
}

.btn-secondary-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25d366;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-secondary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsividade Ultra Moderna */
@media (max-width: 1024px) {
    .specialties-showcase {
        grid-template-columns: 1fr;
    }
    
    .specialty-card-modern.featured {
        transform: none;
    }
    
    .specialties-grid-directory {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .modern-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-header-modern h2 {
        font-size: 2.5rem;
    }
    
    .specialty-card-modern {
        padding: 2rem;
    }
    
    .specialties-grid-directory {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .specialty-category {
        padding: 1.5rem;
    }
    
    .category-title {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .category-title i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .specialty-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .specialty-icon-dir {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .specialty-content-dir h4 {
        font-size: 1rem;
    }
    
    .specialty-content-dir p {
        font-size: 0.85rem;
    }
    
    .tech-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-text-modern h2 {
        font-size: 2rem;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}/* ===
== PÁGINA DE CONTATO - DESIGN LIMPO E PROFISSIONAL ===== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 0 6rem;
    text-align: center;
}

.contact-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid #e2e8f0;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #004B60;
    box-shadow: 0 4px 12px rgba(0, 75, 96, 0.1);
}

.contact-hero .hero-badge i {
    color: #004B60;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Section Headers */
.section-header-contact {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-header-contact p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
}

/* Contact Methods Section */
.contact-methods-section {
    padding: 6rem 0;
    background: white;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-method-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #004B60, #006B7D);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method-card:hover::before {
    transform: scaleX(1);
}

.contact-method-card:hover {
    border-color: #004B60;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 75, 96, 0.15);
}

.method-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.phone-icon {
    background: linear-gradient(135deg, #004B60, #006B7D);
}

.online-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.method-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.method-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-number {
    font-size: 1.3rem;
    font-weight: 600;
    color: #004B60;
    display: block;
}

.contact-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.phone-btn {
    background: #004B60;
    color: white;
}

.phone-btn:hover {
    background: #003a4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 75, 96, 0.3);
}

.online-btn {
    background: #6366f1;
    color: white;
}

.online-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

/* Clinics Section */
.clinics-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.clinics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.clinic-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.clinic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 75, 96, 0.1);
    border-color: #004B60;
}

.clinic-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.clinic-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #004B60, #006B7D);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.clinic-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.clinic-location {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.clinic-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    color: #004B60;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-item strong {
    color: #1a202c;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.info-item p {
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.info-item a {
    color: #004B60;
    text-decoration: none;
    font-weight: 500;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-contact-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-contact-item:hover {
    background: white;
    border-color: #004B60;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 75, 96, 0.1);
}

.faq-contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #004B60, #006B7D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.3rem;
}

.faq-contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.faq-contact-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #004B60 0%, #006B7D 100%);
    color: white;
    text-align: center;
}

.contact-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-text-contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text-contact p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons-contact {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #25d366;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-primary-contact:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.btn-secondary-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary-contact:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Responsividade para Contato */
@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 4rem;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-method-card {
        padding: 2rem;
    }
    
    .clinics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .clinic-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .faq-contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-text-contact h2 {
        font-size: 2rem;
    }
    
    .cta-buttons-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-contact,
    .btn-secondary-contact {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}/* Con
tact CTA Section (Index) */
.contact-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #004B60 0%, #006B7D 100%);
    color: white;
    text-align: center;
}

.contact-cta .contact-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta .cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-cta .cta-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contact-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta .btn-primary,
.contact-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-cta .btn-primary {
    background: white;
    color: #004B60;
}

.contact-cta .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.contact-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-cta {
        padding: 4rem 0;
    }
    
    .contact-cta .cta-text h2 {
        font-size: 2rem;
    }
    
    .contact-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta .btn-primary,
    .contact-cta .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}/* Breadcru
mb Navigation */
.breadcrumb {
    background: #f8fafc;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: #64748b;
    font-weight: 500;
}

.breadcrumb a {
    color: #004B60;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #006B7D;
    text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.75rem 0;
    }
    
    .breadcrumb ol {
        font-size: 0.8rem;
    }
}/* Media
 Query para Desktop Grande */
@media (min-width: 1400px) {
    .hero-content {
        max-width: 1200px;
        padding: 0 40px;
    }
    
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }
}

/* Media Query para Desktop Médio */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-content {
        max-width: 1100px;
        padding: 0 30px;
    }
}

/* Media Query para Desktop Pequeno */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-content {
        max-width: 960px;
        padding: 0 20px;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
}/* Contro
le específico de largura para evitar problemas de layout */
.hero .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

/* Garantir que o hero-content não ultrapasse os limites */
.hero-content {
    box-sizing: border-box;
    overflow: hidden;
}

.hero-text, .hero-image {
    box-sizing: border-box;
    max-width: 100%;
}

/* Ajuste para telas muito grandes */
@media (min-width: 1600px) {
    .hero .container {
        max-width: 1400px !important;
        padding: 0 60px !important;
    }
}/* COR
REÇÃO ESPECÍFICA PARA LARGURA DA SEÇÃO HERO */
.hero .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

.hero-content {
    box-sizing: border-box !important;
    overflow: hidden !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.hero-text, .hero-image {
    box-sizing: border-box !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

/* Reset para garantir que não há estilos conflitantes */
.hero * {
    box-sizing: border-box !important;
}

/* Ajuste específico para desktop */
@media (min-width: 1024px) and (max-width: 1599px) {
    .hero .container {
        max-width: 1200px !important;
        padding: 0 40px !important;
    }
    
    .hero-content {
        gap: 3rem !important;
    }
}

/* Ajuste para telas muito grandes */
@media (min-width: 1600px) {
    .hero .container {
        max-width: 1400px !important;
        padding: 0 60px !important;
    }
}/* ===== 
PÁGINA SOBRE - LAYOUT MODERNO ===== */

/* Hero Section Moderna */
.about-hero-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 75, 96, 0.1);
    color: #004B60;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-text-modern h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-text-modern h2 {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-text-modern p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.credentials-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #004B60;
    font-size: 0.95rem;
}

.credential-item i {
    color: #004B60;
    font-size: 1.1rem;
}

.image-container-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-container-modern img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay-modern {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
}

.stats-mini {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-mini {
    display: flex;
    flex-direction: column;
}

.stat-mini .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #004B60;
}

.stat-mini .label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Experience Section Moderna */
.experience-section-modern {
    padding: 6rem 0;
    background: white;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.section-header-modern p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.experience-content-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-item-modern {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.experience-icon-modern {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #004B60 0%, #006B7D 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.experience-details-modern h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.experience-details-modern p {
    color: #64748b;
    line-height: 1.6;
}

.experience-image-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-image-modern img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 75, 96, 0.9);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Stats Section Moderna */
.stats-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, #004B60 0%, #006B7D 100%);
    color: white;
}

.stats-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-header-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stats-header-modern p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon-modern {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.stat-number-modern {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label-modern {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-description-modern {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}

/* Timeline Section Moderna */
.timeline-section-modern {
    padding: 6rem 0;
    background: #f8fafc;
}

.timeline-modern {
    position: relative;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #004B60, #006B7D);
    transform: translateX(-50%);
}

.timeline-item-modern {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item-modern:nth-child(odd) {
    flex-direction: row;
}

.timeline-item-modern:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year-modern {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #004B60 0%, #006B7D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.timeline-content-modern {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 350px;
}

.timeline-content-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.timeline-item-modern:nth-child(odd) .timeline-content-modern::before {
    left: -30px;
    border-right-color: white;
}

.timeline-item-modern:nth-child(even) .timeline-content-modern::before {
    right: -30px;
    border-left-color: white;
}

.timeline-icon-modern {
    width: 50px;
    height: 50px;
    background: rgba(0, 75, 96, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004B60;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-content-modern h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.timeline-content-modern p {
    color: #64748b;
    margin-bottom: 1rem;
}

.timeline-badge-modern {
    display: inline-block;
    background: linear-gradient(135deg, #004B60 0%, #006B7D 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Memberships Modernas */
.memberships-modern {
    margin-top: 4rem;
}

.memberships-modern h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 3rem;
}

.memberships-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.membership-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #004B60;
}

.membership-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.membership-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #004B60 0%, #006B7D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.membership-card-modern h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.membership-card-modern p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .about-hero-content,
    .experience-content-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text-modern h1 {
        font-size: 2.2rem;
    }
    
    .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline-modern::before {
        left: 30px;
    }
    
    .timeline-item-modern {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-year-modern {
        position: absolute;
        left: 0;
        margin: 0;
    }
    
    .timeline-content-modern {
        max-width: none;
    }
    
    .timeline-content-modern::before {
        left: -30px !important;
        right: auto !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
    
    .memberships-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* 
Correções para página sobre - Estilos modernos aprimorados */

/* Stats Section Moderna - Correção do contraste de texto */
.stats-modern {
    background: linear-gradient(135deg, #004B60 0%, #003a4a 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-modern::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats-header-modern {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.stats-header-modern h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.stats-header-modern .text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-header-modern p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.stat-card-modern {
    background: rgba(255, 255, 255, 0.15);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card-modern:hover::before {
    left: 100%;
}

.stat-card-modern:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-icon-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.stat-card-modern:hover .stat-icon-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: scale(1.15) rotate(10deg);
    border-color: rgba(255, 255, 255, 0.6);
}

.stat-content-modern {
    color: white;
    position: relative;
    z-index: 2;
}

.stat-number-modern {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.stat-label-modern {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-description-modern {
    font-size: 1rem;
    opacity: 0.95;
    color: white;
    line-height: 1.5;
    max-width: 250px;
    margin: 0 auto;
}

/* Timeline Icons - Correção para aparecerem */
.timeline-icon-modern {
    background: linear-gradient(135deg, #004B60 0%, #006b7d 100%) !important;
    color: white !important;
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,75,96,0.3) !important;
    border: 3px solid rgba(255,255,255,0.2) !important;
}

.timeline-item-modern:hover .timeline-icon-modern {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(0,75,96,0.4) !important;
}

/* Membership Icons - Correção para aparecerem */
.membership-icon-modern {
    background: linear-gradient(135deg, #004B60 0%, #006b7d 100%) !important;
    color: white !important;
    width: 70px !important;
    height: 70px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,75,96,0.3) !important;
    border: 3px solid rgba(255,255,255,0.2) !important;
}

.membership-card-modern:hover .membership-icon-modern {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(0,75,96,0.4) !important;
}

/* Condições Médicas - Aplicar azul padrão do site com ícones brancos */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.condition-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,75,96,0.1);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.condition-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #004B60 0%, #006b7d 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.condition-item:hover::before {
    transform: scaleX(1);
}

.condition-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,75,96,0.2);
    border-color: #004B60;
}

.condition-item:hover .condition-icon {
    transform: scale(1.15);
    background: linear-gradient(135deg, #003a4a 0%, #004B60 100%);
    box-shadow: 0 10px 25px rgba(0,75,96,0.4);
}

/* Correção específica para os ícones das condições médicas */
.condition-icon {
    background: linear-gradient(135deg, #004B60 0%, #006b7d 100%) !important;
    width: 90px !important;
    height: 90px !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 2rem !important;
    overflow: hidden !important;
    padding: 15px !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 6px 20px rgba(0,75,96,0.2) !important;
    border: 2px solid rgba(255,255,255,0.1) !important;
}

/* Forçar ícones brancos sobre fundo azul */
.condition-icon img,
.condition-item img.condition-icon {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1) contrast(100%) !important;
    transition: all 0.4s ease !important;
    opacity: 1 !important;
}

.condition-item:hover .condition-icon img,
.condition-item:hover img.condition-icon {
    transform: scale(1.1) !important;
    filter: brightness(0) invert(1) contrast(100%) drop-shadow(0 2px 4px rgba(0,0,0,0.2)) !important;
}

.condition-item h4 {
    color: #004B60 !important;
    margin-bottom: 1.2rem !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    transition: color 0.3s ease !important;
}

.condition-item:hover h4 {
    color: #003a4a !important;
}

.condition-item p {
    color: #555 !important;
    line-height: 1.7 !important;
    font-size: 1rem !important;
    transition: color 0.3s ease !important;
}

.condition-item:hover p {
    color: #333 !important;
}

/* Correção do rodapé para ficar igual ao da página index */
.footer {
    background: linear-gradient(135deg, #004B60 0%, #003a4a 100%) !important;
    color: white !important;
    padding: 60px 0 20px !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 2rem !important;
}

.footer-section h3 {
    color: white !important;
    margin-bottom: 1rem !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6 !important;
}

.footer-section ul {
    list-style: none !important;
}

.footer-section ul li {
    margin-bottom: 0.5rem !important;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
}

.footer-section ul li a:hover {
    color: white !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding-top: 2rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0 !important;
}

.footer-bottom a {
    color: white !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: opacity 0.3s !important;
}

.footer-bottom a:hover {
    opacity: 0.8 !important;
}

/* Animação dos números - Correção */
.stat-number-modern {
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

/* Responsivo para as correções */
@media (max-width: 768px) {
    .stats-grid-modern {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .stat-card-modern {
        padding: 2rem 1.5rem !important;
    }
    
    .stat-number-modern {
        font-size: 2.8rem !important;
    }
    
    .conditions-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .condition-item {
        padding: 2rem !important;
    }
    
    .condition-icon {
        width: 80px !important;
        height: 80px !important;
    }
    
    .timeline-icon-modern {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    .membership-icon-modern {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .stats-header-modern h2 {
        font-size: 2rem !important;
    }
    
    .stat-number-modern {
        font-size: 2.5rem !important;
    }
    
    .stat-label-modern {
        font-size: 1.1rem !important;
    }
    
    .condition-item h4 {
        font-size: 1.2rem !important;
    }
    
    .condition-item p {
        font-size: 0.9rem !important;
    }
}/* Correção
 adicional para garantir ícones brancos nas condições médicas */
.specialties-overview .condition-item {
    background: white !important;
    padding: 2.5rem !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 25px rgba(0,75,96,0.1) !important;
    text-align: center !important;
    transition: all 0.4s ease !important;
    border: 1px solid #e9ecef !important;
    position: relative !important;
    overflow: hidden !important;
}

.specialties-overview .condition-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(135deg, #004B60 0%, #006b7d 100%) !important;
    transform: scaleX(0) !important;
    transition: transform 0.4s ease !important;
}

.specialties-overview .condition-item:hover::before {
    transform: scaleX(1) !important;
}

.specialties-overview .condition-item:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 15px 40px rgba(0,75,96,0.2) !important;
    border-color: #004B60 !important;
}

/* Forçar estrutura correta dos ícones */
.specialties-overview .condition-item img.condition-icon {
    background: linear-gradient(135deg, #004B60 0%, #006b7d 100%) !important;
    width: 90px !important;
    height: 90px !important;
    border-radius: 20px !important;
    padding: 15px !important;
    margin: 0 auto 2rem !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 6px 20px rgba(0,75,96,0.2) !important;
    border: 2px solid rgba(255,255,255,0.1) !important;
    filter: brightness(0) invert(1) contrast(100%) !important;
    object-fit: contain !important;
    display: block !important;
}

.specialties-overview .condition-item:hover img.condition-icon {
    transform: scale(1.15) !important;
    background: linear-gradient(135deg, #003a4a 0%, #004B60 100%) !important;
    box-shadow: 0 10px 25px rgba(0,75,96,0.4) !important;
    filter: brightness(0) invert(1) contrast(100%) drop-shadow(0 2px 4px rgba(0,0,0,0.2)) !important;
}

.specialties-overview .condition-item h4 {
    color: #004B60 !important;
    margin-bottom: 1.2rem !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    transition: color 0.3s ease !important;
}

.specialties-overview .condition-item:hover h4 {
    color: #003a4a !important;
}

.specialties-overview .condition-item p {
    color: #555 !important;
    line-height: 1.7 !important;
    font-size: 1rem !important;
    transition: color 0.3s ease !important;
}

.specialties-overview .condition-item:hover p {
    color: #333 !important;
}

/* Responsivo para as correções das condições médicas */
@media (max-width: 768px) {
    .specialties-overview .condition-item {
        padding: 2rem !important;
    }
    
    .specialties-overview .condition-item img.condition-icon {
        width: 80px !important;
        height: 80px !important;
        padding: 12px !important;
    }
    
    .specialties-overview .condition-item h4 {
        font-size: 1.2rem !important;
    }
    
    .specialties-overview .condition-item p {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .specialties-overview .condition-item {
        padding: 1.5rem !important;
    }
    
    .specialties-overview .condition-item img.condition-icon {
        width: 70px !important;
        height: 70px !important;
        padding: 10px !important;
    }
    
    .specialties-overview .condition-item h4 {
        font-size: 1.1rem !important;
    }
    
    .specialties-overview .condition-item p {
        font-size: 0.85rem !important;
    }
}/
* CORREÇÃO FINAL - Ícones das Condições Médicas com Fundo Azul e Ícones Brancos */
.specialties-overview .conditions-grid .condition-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,75,96,0.1);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.specialties-overview .conditions-grid .condition-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #004B60 0%, #006b7d 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.specialties-overview .conditions-grid .condition-item:hover::before {
    transform: scaleX(1);
}

.specialties-overview .conditions-grid .condition-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,75,96,0.2);
    border-color: #004B60;
}

/* Ícones com fundo azul e imagem branca */
.specialties-overview .conditions-grid .condition-item .condition-icon,
.specialties-overview .conditions-grid .condition-item img.condition-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    margin: 0 auto 2rem;
    padding: 15px;
    background: linear-gradient(135deg, #004B60 0%, #006b7d 100%);
    box-shadow: 0 6px 20px rgba(0,75,96,0.2);
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    object-fit: contain;
    filter: brightness(0) invert(1) contrast(100%);
    display: block;
}

.specialties-overview .conditions-grid .condition-item:hover .condition-icon,
.specialties-overview .conditions-grid .condition-item:hover img.condition-icon {
    transform: scale(1.15);
    background: linear-gradient(135deg, #003a4a 0%, #004B60 100%);
    box-shadow: 0 10px 25px rgba(0,75,96,0.4);
    filter: brightness(0) invert(1) contrast(100%) drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.specialties-overview .conditions-grid .condition-item h4 {
    color: #004B60;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.specialties-overview .conditions-grid .condition-item:hover h4 {
    color: #003a4a;
}

.specialties-overview .conditions-grid .condition-item p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.specialties-overview .conditions-grid .condition-item:hover p {
    color: #333;
}

/* Responsivo específico */
@media (max-width: 768px) {
    .specialties-overview .conditions-grid .condition-item {
        padding: 2rem;
    }
    
    .specialties-overview .conditions-grid .condition-item .condition-icon,
    .specialties-overview .conditions-grid .condition-item img.condition-icon {
        width: 80px;
        height: 80px;
        padding: 12px;
    }
    
    .specialties-overview .conditions-grid .condition-item h4 {
        font-size: 1.2rem;
    }
    
    .specialties-overview .conditions-grid .condition-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .specialties-overview .conditions-grid .condition-item {
        padding: 1.5rem;
    }
    
    .specialties-overview .conditions-grid .condition-item .condition-icon,
    .specialties-overview .conditions-grid .condition-item img.condition-icon {
        width: 70px;
        height: 70px;
        padding: 10px;
    }
    
    .specialties-overview .conditions-grid .condition-item h4 {
        font-size: 1.1rem;
    }
    
    .specialties-overview .conditions-grid .condition-item p {
        font-size: 0.85rem;
    }
}/* SOLUÇÃO 
DEFINITIVA - Ícones das Condições Médicas Visíveis */
.specialties-overview .condition-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,75,96,0.1);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.specialties-overview .condition-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #004B60 0%, #006b7d 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.specialties-overview .condition-item:hover::before {
    transform: scaleX(1);
}

.specialties-overview .condition-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,75,96,0.2);
    border-color: #004B60;
}

/* Container azul para os ícones */
.specialties-overview .condition-item .condition-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    margin: 0 auto 2rem;
    padding: 15px;
    background: linear-gradient(135deg, #004B60 0%, #006b7d 100%);
    box-shadow: 0 6px 20px rgba(0,75,96,0.2);
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    object-fit: contain;
    display: block;
    /* Remover filtros que deixam tudo branco */
    filter: none;
}

.specialties-overview .condition-item:hover .condition-icon {
    transform: scale(1.15);
    background: linear-gradient(135deg, #003a4a 0%, #004B60 100%);
    box-shadow: 0 10px 25px rgba(0,75,96,0.4);
}

/* Criar wrapper para ícone com fundo azul */
.specialties-overview .condition-item {
    position: relative;
}

.specialties-overview .condition-item .condition-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #004B60 0%, #006b7d 100%);
    border-radius: 20px;
    z-index: 1;
}

.specialties-overview .condition-item .condition-icon {
    position: relative;
    z-index: 2;
    background: transparent;
    mix-blend-mode: screen;
}

/* Alternativa mais simples - usar box-shadow inset */
.specialties-overview .condition-item img.condition-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    margin: 0 auto 2rem;
    padding: 15px;
    background: linear-gradient(135deg, #004B60 0%, #006b7d 100%);
    box-shadow: 0 6px 20px rgba(0,75,96,0.2), inset 0 0 0 2px rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    object-fit: contain;
    display: block;
    filter: brightness(1.2) contrast(1.1);
}

.specialties-overview .condition-item:hover img.condition-icon {
    transform: scale(1.15);
    background: linear-gradient(135deg, #003a4a 0%, #004B60 100%);
    box-shadow: 0 10px 25px rgba(0,75,96,0.4), inset 0 0 0 2px rgba(255,255,255,0.2);
    filter: brightness(1.3) contrast(1.2);
}

.specialties-overview .condition-item h4 {
    color: #004B60;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.specialties-overview .condition-item:hover h4 {
    color: #003a4a;
}

.specialties-overview .condition-item p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.specialties-overview .condition-item:hover p {
    color: #333;
}

/* Responsivo */
@media (max-width: 768px) {
    .specialties-overview .condition-item {
        padding: 2rem;
    }
    
    .specialties-overview .condition-item img.condition-icon {
        width: 80px;
        height: 80px;
        padding: 12px;
    }
    
    .specialties-overview .condition-item h4 {
        font-size: 1.2rem;
    }
    
    .specialties-overview .condition-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .specialties-overview .condition-item {
        padding: 1.5rem;
    }
    
    .specialties-overview .condition-item img.condition-icon {
        width: 70px;
        height: 70px;
        padding: 10px;
    }
    
    .specialties-overview .condition-item h4 {
        font-size: 1.1rem;
    }
    
    .specialties-overview .condition-item p {
        font-size: 0.85rem;
    }
}/
* CORREÇÃO FINAL SIMPLES - Ícones Visíveis com Fundo Azul */
.specialties-overview .conditions-grid .condition-item img.condition-icon {
    width: 90px !important;
    height: 90px !important;
    border-radius: 20px !important;
    margin: 0 auto 2rem !important;
    padding: 15px !important;
    background: linear-gradient(135deg, #004B60 0%, #006b7d 100%) !important;
    box-shadow: 0 6px 20px rgba(0,75,96,0.2) !important;
    border: 2px solid rgba(255,255,255,0.1) !important;
    transition: all 0.4s ease !important;
    object-fit: contain !important;
    display: block !important;
    /* Remover todos os filtros que deixam branco */
    filter: none !important;
    opacity: 1 !important;
    /* Manter as imagens visíveis */
    mix-blend-mode: normal !important;
}

.specialties-overview .conditions-grid .condition-item:hover img.condition-icon {
    transform: scale(1.15) !important;
    background: linear-gradient(135deg, #003a4a 0%, #004B60 100%) !important;
    box-shadow: 0 10px 25px rgba(0,75,96,0.4) !important;
    border: 2px solid rgba(255,255,255,0.2) !important;
    /* Sem filtros para manter visibilidade */
    filter: none !important;
}

/* Garantir que as imagens sejam visíveis */
.specialties-overview .conditions-grid .condition-item img {
    filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsivo específico */
@media (max-width: 768px) {
    .specialties-overview .conditions-grid .condition-item img.condition-icon {
        width: 80px !important;
        height: 80px !important;
        padding: 12px !important;
    }
}

@media (max-width: 480px) {
    .specialties-overview .conditions-grid .condition-item img.condition-icon {
        width: 70px !important;
        height: 70px !important;
        padding: 10px !important;
    }
}/* SOL
UÇÃO DEFINITIVA - Ícones com Wrapper Azul */
.condition-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #004B60 0%, #006b7d 100%);
    box-shadow: 0 6px 20px rgba(0,75,96,0.2);
    border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.condition-icon-wrapper:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, #003a4a 0%, #004B60 100%);
    box-shadow: 0 10px 25px rgba(0,75,96,0.4);
    border: 2px solid rgba(255,255,255,0.2);
}

.condition-icon-wrapper .condition-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.condition-icon-wrapper:hover .condition-icon {
    transform: scale(1.05);
}

/* Garantir que o hover funcione no item todo */
.condition-item:hover .condition-icon-wrapper {
    transform: scale(1.15);
    background: linear-gradient(135deg, #003a4a 0%, #004B60 100%);
    box-shadow: 0 10px 25px rgba(0,75,96,0.4);
    border: 2px solid rgba(255,255,255,0.2);
}

.condition-item:hover .condition-icon-wrapper .condition-icon {
    transform: scale(1.05);
}

/* Responsivo para o wrapper */
@media (max-width: 768px) {
    .condition-icon-wrapper {
        width: 80px;
        height: 80px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .condition-icon-wrapper {
        width: 70px;
        height: 70px;
        padding: 10px;
    }
}/* SO
LUÇÃO SIMPLES - Ícones FontAwesome Azuis */
.condition-icon-simple {
    color: #004B60;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.condition-item:hover .condition-icon-simple {
    color: #003a4a;
    transform: scale(1.1);
}

/* Responsivo */
@media (max-width: 768px) {
    .condition-icon-simple {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .condition-icon-simple {
        font-size: 2rem;
    }
}/* SOLUÇ
ÃO FINAL - Imagens Originais com Filtro Azul Simples */
img.condition-icon-simple {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    filter: hue-rotate(200deg) saturate(2) brightness(0.8);
    object-fit: contain;
    display: block;
}

.condition-item:hover img.condition-icon-simple {
    transform: scale(1.1);
    filter: hue-rotate(200deg) saturate(2.5) brightness(0.7);
}

/* Responsivo para imagens */
@media (max-width: 768px) {
    img.condition-icon-simple {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    img.condition-icon-simple {
        width: 60px;
        height: 60px;
    }
}/* 
CORREÇÃO - Text Gradient em Fundo Azul */
.contact-cta-section .text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Fallback para navegadores que não suportam background-clip em fundo azul */
@supports not (-webkit-background-clip: text) {
    .contact-cta-section .text-gradient {
        color: white;
        background: none;
        -webkit-text-fill-color: white;
    }
}

/* Garantir que o texto seja sempre visível em fundos azuis */
.contact-cta-section h2,
.contact-cta-section .cta-text-contact h2 {
    color: white;
}

.contact-cta-section .text-gradient {
    color: white !important;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Fallback adicional para garantir legibilidade */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .contact-cta-section .text-gradient {
        background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

/* Para navegadores que não suportam gradiente em texto */
@supports not (background-clip: text) {
    .contact-cta-section .text-gradient {
        color: white !important;
        background: none !important;
        -webkit-text-fill-color: white !important;
    }
}/* C
ORREÇÃO - Espaçamento Hero para Tablet */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        padding: 130px 0 70px;
        min-height: 70vh;
    }
    
    .hero-content {
        gap: 2.5rem;
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text h2 {
        font-size: 1.6rem;
    }
}

/* CORREÇÃO - Espaçamento Hero para Mobile Grande */
@media (min-width: 376px) and (max-width: 480px) {
    .hero {
        padding: 110px 0 50px;
    }
}

/* CORREÇÃO - Espaçamento Hero para Mobile Pequeno */
@media (max-width: 375px) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
    }
}/* CORREÇ
ÃO - Menu Mobile Hambúrguer */
@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav ul {
        flex-direction: column;
        padding: 1rem 0;
        margin: 0;
    }
    
    .nav ul li {
        text-align: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav ul li:last-child {
        border-bottom: none;
    }
    
    .nav ul li a {
        display: block;
        padding: 0.8rem 1rem;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .nav ul li a:hover {
        background: #f8f9fa;
        color: #004B60;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Garantir que o header tenha position relative para o menu absolute */
.header {
    position: relative;
}

/* Estilos para scroll effect */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Animação fadeInUp */
.animate {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}