/* Variáveis de cores conforme briefing */
:root {
    --azul-profundo: #1A2942;
    --branco: #FFFFFF;
    --cinza-neutro: #E5E5E5;
    --amarelo-girassol: #FFD54F;
    --azul-puzzle: #4FC3F7;
    --cinza-escuro: #333333;
    --cinza-claro: #F5F5F5;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Lato', sans-serif;
    color: var(--azul-profundo);
    line-height: 1.6;
    background-color: var(--branco);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--azul-profundo);
}

p {
    margin-bottom: 1rem;
    font-family: 'Lato', sans-serif;
}

a {
    color: var(--azul-profundo);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--azul-puzzle);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--amarelo-girassol);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--cinza-escuro);
}

/* Botões */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--azul-profundo);
    color: var(--branco);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: var(--azul-puzzle);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--azul-profundo);
    color: var(--azul-profundo);
}

.cta-button.secondary:hover {
    background-color: var(--azul-profundo);
    color: var(--branco);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--branco);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 5px 0; /* Reduzido de 15px */
}

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

.logo img {
    height: 100px; /* Reduzido para caber no header menor */
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255, 213, 79, 0.5)); /* Sombra ajustada */
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--amarelo-girassol);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.menu-mobile {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-mobile span {
    width: 30px;
    height: 3px;
    background-color: var(--azul-profundo);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background-color: var(--cinza-claro);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px; /* Aumenta o espaçamento entre a foto e o texto */
}

.hero-text {
    flex: 1;
    padding-left: 20px; /* Adicionado padding à esquerda em vez de à direita */
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--azul-profundo);
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--cinza-escuro);
}

.hero-text .tagline {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--azul-puzzle);
}

.hero-text .credentials {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--azul-profundo);
    padding: 5px 0;
    border-top: 1px solid var(--cinza-neutro);
    border-bottom: 1px solid var(--cinza-neutro);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--branco);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1.5;
}

.about-highlights {
    display: flex;
    margin-top: 30px;
    gap: 20px;
}

.highlight {
    flex: 1;
    padding: 20px;
    background-color: var(--cinza-claro);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.highlight h3 {
    font-size: 1.2rem;
    color: var(--azul-profundo);
    margin-bottom: 10px;
}

/* Specialties Section */
.specialties {
    padding: 80px 0;
    background-color: var(--cinza-claro);
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.specialty-card {
    background-color: var(--branco);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.specialty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--cinza-claro);
    border-radius: 50%;
}

.specialty-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--azul-profundo);
}

.specialty-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Procedures Section */
.procedures {
    padding: 80px 0;
    background-color: var(--branco);
}

.procedures-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.procedures-image {
    flex: 1;
}

.procedures-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.procedures-list {
    flex: 1.5;
}

.procedure-group {
    margin-bottom: 30px;
}

.procedure-group h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--azul-profundo);
}

.procedure-group ul {
    list-style-position: inside;
    margin-bottom: 20px;
}

.procedure-group li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.procedure-group li::before {
    content: '•';
    color: var(--amarelo-girassol);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--cinza-claro);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--branco);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    text-align: right;
}

.testimonial-card.placeholder {
    border: 2px dashed var(--cinza-neutro);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 200px;
}

/* Tips Section */
.tips {
    padding: 80px 0;
    background-color: var(--branco);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background-color: var(--cinza-claro);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--azul-profundo);
}

.tip-card.placeholder {
    border: 2px dashed var(--cinza-neutro);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 200px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--cinza-claro);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.contact-card {
    background-color: var(--branco);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--azul-profundo);
}

.contact-card p {
    margin-bottom: 15px;
}

.hospital {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cinza-neutro);
    display: flex;
    align-items: center;
    gap: 20px;
}

.hospital:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hospital-logo {
    flex: 0 0 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hospital-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hospital-info {
    flex: 1;
}

.hospital h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--azul-profundo);
}

.map {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Convênios */
.convenios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.convenio {
    background-color: var(--cinza-claro);
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.convenios-info {
    font-size: 0.9rem;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: var(--azul-profundo);
    color: var(--branco);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Alinha itens na base */
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-logo {
    margin-right: 20px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
}

.secondary-logo img {
    height: 250px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-contact p {
    margin-bottom: 10px;
    color: var(--cinza-neutro);
}

.footer-credits {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--cinza-neutro);
}

.footer-credits p {
    margin-bottom: 5px;
}
.english-credentials {
    font-size: 0.9rem;
    color: var(--azul-puzzle);
    font-style: italic;
    margin: 10px 0;
    line-height: 1.4;
} WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.icon-whatsapp {
    width: 30px;
    height: 30px;
    fill: white;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .procedures-content {
        flex-direction: column;
    }
    
    .hero-text,
    .about-text,
    .procedures-list {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .about-highlights {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .menu-mobile {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .specialties-grid,
    .tips-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo,
    .footer-contact,
    .footer-social {
        margin-bottom: 30px;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.specialty-card,
.tip-card,
.contact-card,
.about-image,
.procedures-image,
.testimonial-card {
    animation: fadeIn 0.8s ease forwards;
}

/* Acessibilidade */
:focus {
    outline: 3px solid var(--amarelo-girassol);
    outline-offset: 3px;
}

/* Toques de inclusão com cores sutis */
.specialty-card:nth-child(1) .specialty-icon {
    background-color: rgba(79, 195, 247, 0.2); /* Azul puzzle suave */
}

.specialty-card:nth-child(2) .specialty-icon {
    background-color: rgba(255, 213, 79, 0.2); /* Amarelo girassol suave */
}

.specialty-card:nth-child(3) .specialty-icon {
    background-color: rgba(129, 199, 132, 0.2); /* Verde suave */
}

.specialty-card:nth-child(4) .specialty-icon {
    background-color: rgba(186, 104, 200, 0.2); /* Roxo suave */
}

.specialty-card:nth-child(5) .specialty-icon {
    background-color: rgba(255, 138, 101, 0.2); /* Laranja suave */
}

.specialty-card:nth-child(6) .specialty-icon {
    background-color: rgba(79, 195, 247, 0.2); /* Azul puzzle suave */
}
