/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #ffffff;
    color: #063d2f;
}

/* ===== HEADER ===== */
.header {
    background: #e7f9f0;
    padding: 10px 20px;
    border-bottom: 1px solid #cceede;
    position: relative;
}

.navbar {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    width: 60px;
    border-radius: 8px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand {
    color: #0a7a51;
    font-size: 22px;
}

/* ===== MENU DESKTOP ===== */
.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #063d2f;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0a7a51;
}

.btn-outline {
    padding: 6px 10px;
    border: 1px solid #063d2f;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #063d2f;
    color: white;
}

/* ===== MENU MOBILE ===== */
.menu-toggle {
    display: none;
    font-size: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-toggle.active {
    transform: rotate(90deg);
}

/* CORREÇÃO: Menu mobile ativo */
@media (max-width: 768px) {
    .nav-links { 
        display: none;
        position: absolute;
        background: white;
        right: 0;
        top: 100%;
        width: 100%;
        padding: 15px;
        flex-direction: column;
        gap: 12px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    /* CORREÇÃO: Mudando para specialista-card (com 's') */
    .specialista-card {
        flex-direction: column;
        text-align: center;
    }

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

/* ===== HERO MODERNO ===== */
.hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #006b4a 0%, #039a69 40%, #0fd18c 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* brilho suave, sem branco */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.hero::before {
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.10);
    top: -60px;
    left: -40px;
}

.hero::after {
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    bottom: -50px;
    right: -20px;
}

/* texto dentro do hero */
.hero-content {
    max-width: 700px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #e5fff3;
}

/* ===== BOTÃO MODERNO ===== */
.btn-primary {
    margin-top: 18px;
    display: inline-block;
    background: #ffffff;
    padding: 12px 22px;
    color: #0a7a51;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 17px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.06);
    background: #e8fff3;
    box-shadow: 0 6px 18px rgba(0,0,0,0.20);
}

/* CORREÇÃO: Mudando para modern-btn (com 'e') - ou ajuste no HTML */
.modern-btn {
    background: linear-gradient(135deg, #0fd18c, #07a567);
    padding: 14px 26px;
    border-radius: 12px;
    color: white !important;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
    transition: 0.25s ease;
}

.modern-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.30);
    background: linear-gradient(135deg, #12f5a7, #0ac77b);
}

/* ===== SEÇÕES ===== */
.section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: auto;
}

.section-title {
    margin-bottom: 20px;
    font-size: 26px;
    color: #063d2f;
    font-weight: 700;
    text-align: center;
}

/* ===== CARDS ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    border: 1px solid #d9eee4;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.card img {
    width: 50%;
    height: 150px;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
}

/* CORREÇÃO: Mudando para specialista-card (com 's') */
.specialista-card {
    display: flex;
    gap: 20px;
    align-items: center;
}

.specialista-card img {
    width: 130px;
    height: 130px;
    border-radius: 10px;
    object-fit: cover;
}

/* ===== LISTAS ===== */
.gray {
    background: #f4faf7;
}

.care-list li {
    margin: 6px 0;
    font-size: 17px;
}

/* ===== FOOTER ===== */
.footer {
    background: #e7f9f0;
    padding: 30px 20px;
    text-align: center;
    margin-top: 30px;
}

.copy {
    margin-top: 15px;
    color: #246b57;
}

/* BOTÃO DO WHATSAPP */
.whatsapp-btn {
    background: #25D366;
    padding: 12px 22px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white !important;
    font-size: 18px;
    font-weight: bold;
    border-radius:  10px;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.20);
    transition: 0.25s;
}

.whatsapp-btn img {
    width: 28px;
    height: 28px;
}

.whatsapp-btn:hover {
    background: #1ebe5b;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.30);
}

/* WHATSAPP PEQUENO (REDONDO) */
.whatsapp-small {
    width: 48px;
    height: 48px;
    background: #25D366;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: 0.25s;
    background-image: url("https://upload.wikimedia.org/wikipedia/commons/6/6b/WhatsApp.svg");
    background-size: 55%;
    background-repeat: no-repeat;
    background-position: center;
}

.whatsapp-small:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.whatsapp-small {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
}

.text-block p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.care-list {
    margin-left: 25px;
    list-style-type: "• ";
}

.care-list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.especialista-info h4 {
    margin-bottom: 6px;
    color: #063d2f;
}

.formacao-title {
    margin-top: 20px;
    font-size: 20px;
    color: #0a7a51;
    margin-bottom: 10px;
}

.formacao-list {
    margin-left: 20px;
    list-style-type: none;
    padding-left: 0;
}

.formacao-list li {
    margin-bottom: 18px;
    padding: 12px 15px;
    background: #f4faf7;
    border-left: 4px solid #0a7a51;
    border-radius: 6px;
    line-height: 1.5;
}

.formacao-list strong {
    color: #063d2f;
}

.care-list-numbered {
    margin-left: 18px;
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

.care-list-numbered li {
    margin-bottom: 20px;
    padding: 12px 15px;
    background: #f4faf7;
    border-left: 4px solid #0a7a51;
    border-radius: 6px;
    line-height: 1.6;
}

.care-list-numbered li strong {
    color: #063d2f;
    font-weight: bold;
}

.intro-alerta {
    margin-bottom: 15px;
    line-height: 1.6;
}

.alerta-lista {
    margin-left: 18px;
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

.alerta-lista li {
    margin-bottom: 18px;
    padding: 12px 15px;
    background: #f4faf7;
    border-left: 4px solid #c0392b;
    border-radius: 6px;
    line-height: 1.6;
    font-weight: 500;
}

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

.omvv-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 18px 20px;
    border-left: 4px solid #0a7a51;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.omvv-card:hover {
    transform: translateY(-2px);
}

.omvv-card h4 {
    margin-bottom: 10px;
    color: #0a7a51;
    font-size: 20px;
}

.omvv-card p {
    line-height: 1.6;
    white-space: pre-line;
    color: #063d2f;
}

/* BOTÃO FLUTUANTE DO CHAT */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 90px;
    width: 60px;
    height: 60px;
    background: #0a7f42;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.2s ease;
}

.chat-button:hover {
    transform: scale(1.12);
}

/* JANELA DO CHAT */
.chat-window {
    position: fixed;
    bottom: 95px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    overflow: hidden;
    display: none;
    flex-direction: column;
    z-index: 9999;
}

/* Cabeçalho */
.chat-header {
    background: #0a7f42;
    color: white;
    padding: 10px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* Conteúdo */
.chat-content {
    padding: 12px;
    height: 180px;
    overflow-y: auto;
    font-size: 14px;
}

/* Área de entrada */
.chat-input-area {
    display: flex;
    border-top: 1px solid #ddd;
}

.chat-input-area input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
}

.chat-input-area button {
    background: #0a7f42;
    color: white;
    border: none;
    padding: 10px 12px;
    cursor: pointer;
}

.servicos-msg {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.servicos-imagens {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.servicos-imagens img {
    width: 350px;          /* ajusta o tamanho das fotos */
    border-radius: 10px;   /* cantos arredondados */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Instagram link estilizado */
.instagram-link a {
  display: inline-flex;          /* alinha ícone e texto horizontalmente */
  align-items: center;           /* centraliza verticalmente */
  gap: 6px;                      /* espaço entre ícone e texto */
  font-family: 'Arial', sans-serif; /* fonte mais bonita e legível */
  font-weight: 600;               /* texto um pouco mais destacado */
  font-size: 0.95rem;             /* tamanho confortável */
  color: #246b57   ;                 /* cor oficial do Instagram */
  text-decoration: none;           /* remove underline */
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Ícone do Instagram pequeno */
.instagram-link a img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

/* Efeito hover */
.instagram-link a:hover {
  color: #246b57;                /* muda a cor ao passar o mouse */
}

.instagram-link a:hover img {
  transform: scale(1.2);         /* aumenta o ícone levemente */
}
