/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #F8F8FF 0%, #B0E0E6 100%);
    min-height: 100vh;
}

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

/* Header */
.header {
    background: #FF8C42;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 2px solid #20B2AA;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 3px solid #20B2AA;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.25rem;
}

.logo-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

/* Navigation */
.nav {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.5rem 0;
}

.nav-content {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: #20B2AA;
    background: linear-gradient(135deg, #F8F8FF 0%, #FFE4E1 100%);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background: #20B2AA;
    color: white;
}

.btn-primary:hover {
    background: #008B8B;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #20B2AA;
    border: 2px solid #20B2AA;
}

.btn-outline:hover {
    background: #20B2AA;
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
}

.btn-back {
    background: transparent;
    color: #20B2AA;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 2rem;
}

.btn-back:hover {
    color: #0f766e;
}

/* Pages */
.page {
    display: none;
    min-height: calc(100vh - 200px);
}

.page.active {
    display: block;
}

.page-header {
    padding: 2rem 0 1rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: #20B2AA;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    color: #374151;
}

.badge i {
    color: #20B2AA;
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 3rem;
}

.professionals {
    padding: 4rem 0;
    background: white;
}

.professionals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .professionals-grid {
        grid-template-columns: 1fr;
    }
}

.professional-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.professional-card:hover {
    transform: translateY(-5px);
    border-color: #20B2AA;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.professional-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.professional-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #20B2AA, #008B8B);
    padding: 4px;
}

.professional-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #008B8B, #FF6347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.photo-placeholder.large {
    font-size: 5rem;
}

.professional-info h4 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.specialty {
    color: #20B2AA;
    font-weight: 600;
    font-size: 1.1rem;
}

.description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.services {
    margin-bottom: 2rem;
}

.service {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.service i {
    color: #20B2AA;
    width: 20px;
}

.professional-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Professional Detail */
.professional-detail {
    padding: 2rem 0 4rem;
}

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

.detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #20B2AA, #008B8B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.detail-header h1 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.detail-specialty {
    color: #20B2AA;
    font-size: 1.2rem;
    font-weight: 600;
}

.detail-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.detail-photo {
    text-align: center;
}

.detail-photo img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Services */
.services-highlight {
    padding: 4rem 0;
    background: white;
}

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

.service-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.service-icon.red { background: #FF6347; }
.service-icon.green { background: #20B2AA; }
.service-icon.blue { background: #008B8B; }
.service-icon.orange { background: #FF6347; }
.service-icon.purple { background: #20B2AA; }
.service-icon.yellow { background: #FFE4E1; color: #2F4F4F; }

.service-card h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Clinic Info */
.clinic-info {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F8F8FF 0%, #B0E0E6 100%);
}

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

.info-card {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #20B2AA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.info-card h4 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.info-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-card small {
    color: #9ca3af;
    font-size: 0.85rem;
}

/* About Page */
.about-section {
    padding: 2rem 0 4rem;
}

.about-content h1 {
    font-size: 2.5rem;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.about-photo img {
    width: 100%;
    max-width: 400px;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #20B2AA, #008B8B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.about-header h2 {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

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

.stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.stat i {
    color: #20B2AA;
    font-size: 1.25rem;
}

.stat strong {
    display: block;
    color: #1f2937;
    font-size: 0.9rem;
}

.stat span {
    color: #6b7280;
    font-size: 0.85rem;
}

/* Education */
.education-section {
    margin-bottom: 4rem;
}

.education-section h2 {
    font-size: 2rem;
    color: #1f2937;
    text-align: center;
    margin-bottom: 2rem;
}

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

.education-card {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.education-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #20B2AA, #FF6347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.education-card h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.education-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Philosophy */
.philosophy-section h2 {
    font-size: 2rem;
    color: #1f2937;
    text-align: center;
    margin-bottom: 2rem;
}

.philosophy-section blockquote {
    font-size: 1.25rem;
    color: #6b7280;
    font-style: italic;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-left: 4px solid #20B2AA;
}

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

.philosophy-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #20B2AA, #FF6347);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.philosophy-item h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.philosophy-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact */
.contact-section {
    padding: 2rem 0 4rem;
}

.contact-section h1 {
    font-size: 2.5rem;
    color: #1f2937;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #20B2AA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.25rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #20B2AA;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Specialties */
.specialties {
    padding: 4rem 0;
    background: white;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
}

.footer-logo h4 {
    font-size: 1.25rem;
}

.footer p {
    color: #9ca3af;
}

.footer-copy {
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-content {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .professionals-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .detail-actions {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .education-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .professional-card {
        padding: 1.5rem;
    }
    
    .detail-header h1 {
        font-size: 2rem;
    }
    
    .about-content h1 {
        font-size: 2rem;
    }
    
    .contact-section h1 {
        font-size: 2rem;
    }
}


/* Curriculum Section */
.curriculum-section {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    border-left: 4px solid #20B2AA;
}

.curriculum-section h3 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.curriculum-section h3:first-child {
    margin-top: 0;
}

.curriculum-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.curriculum-item h4 {
    color: #20B2AA;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.curriculum-item p {
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.curriculum-item p:last-child {
    margin-bottom: 0;
}


/* Vaccines Section */
.vaccines-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #F8F8FF 0%, #B0E0E6 100%);
}

.vaccines-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.vaccines-info h4 {
    color: #1f2937;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.vaccines-info p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.vaccines-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.vaccines-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
}

.vaccines-features .feature i {
    color: #20B2AA;
    font-size: 1.2rem;
}

.btn-vaccines {
    background: linear-gradient(135deg, #20B2AA, #008B8B);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-vaccines:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    text-decoration: none;
    color: white;
}

.vaccines-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vaccines-icon {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 4px solid #20B2AA;
    overflow: hidden;
    padding: 10px;
}

.vaccines-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .vaccines-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .vaccines-icon {
        width: 140px;
        height: 140px;
        font-size: 3rem;
        padding: 8px;
    }
}


/* Melhorias de Responsividade */

/* Header responsivo */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0.75rem 0;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 1.25rem;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Navigation responsiva */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Hero section responsiva */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .badge {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Profissionais responsivo */
@media (max-width: 768px) {
    .professionals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .professional-card {
        padding: 1.5rem;
    }
    
    .professional-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .professional-photo img {
        width: 120px;
        height: 120px;
    }
    
    .services {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .professional-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Info grid responsivo */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
}

/* Detail page responsivo */
@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .detail-photo img {
        width: 250px;
        height: 250px;
    }
    
    .detail-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .curriculum-section {
        padding: 1.5rem;
    }
}

/* Botões responsivos */
@media (max-width: 768px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-whatsapp {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Seções gerais responsivas */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .professionals,
    .vaccines-section,
    .clinic-info,
    .services-highlight {
        padding: 2rem 0;
    }
}

/* Melhorias para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .professionals-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* ========================================
   Estilos do Popup de Vacinação
   ======================================== */

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

.popup-overlay.active {
    display: flex;
}

.popup-container {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.popup-close:hover {
    background: #ff5252;
    transform: rotate(90deg);
}

.popup-content {
    padding: 50px 40px 40px;
    text-align: center;
}

.popup-logo {
    margin-bottom: 25px;
}

.popup-logo img {
    max-width: 280px;
    height: auto;
    border-radius: 15px;
}

.popup-title {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.popup-text {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: justify;
}

.popup-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.popup-highlight p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.4);
}

.popup-btn i {
    font-size: 20px;
}

.popup-footer {
    border-top: 2px solid #eee;
    padding-top: 20px;
}

.popup-footer p {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.popup-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
}

.popup-link:hover {
    text-decoration: underline;
}

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

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

/* Responsividade do Popup */
@media (max-width: 768px) {
    .popup-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .popup-content {
        padding: 40px 25px 30px;
    }
    
    .popup-logo img {
        max-width: 220px;
    }
    
    .popup-title {
        font-size: 24px;
    }
    
    .popup-text {
        font-size: 15px;
    }
    
    .popup-highlight p {
        font-size: 14px;
    }
    
    .popup-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}

