/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #9ACED3;
    --primary-dark: #7fbec4;
    --primary-darkness: #6cb9c0;
    --primary-light: #cfeaed;

    --secondary: #f8a5be; /* mantém rosa como apoio (opcional) */
    --secondary-dark:#f8799f;
    --secondary-darkness:#ff447c;

    --white: #ffffff;
    --light: #f8fafc;
    --dark: #0f172a;
    --gray: #64748b;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

section {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background-color: #f9fafb;
    line-height: 1.6;
    padding-top: 80px;
    overflow-x: hidden
}

a {
    text-decoration: none;
}


/* ================= CONTAINER ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ================= HEADER ================= */
.header {
    position: fixed; /* mais forte que sticky */
    top: 0;
    left: 0;
    width: 100%;

    background: var(--primary-dark);
    padding: 18px 0;

    z-index: 1001; /* acima do menu */

    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.3);
}

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

/* BOTÃO HAMBÚRGUER */
.menu-toggle {
    color: var(--white);
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* ================= MENU MOBILE LATERAL ================= */

/* OVERLAY ESCURO */
.overlay {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* MENU LATERAL */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;

    width: 33%;
    max-width: 320px;

    background: linear-gradient(180deg, var(--primary-dark), var(--primary));
    backdrop-filter: blur(10px);

    display: flex;
    flex-direction: column;

    padding: 100px 0 20px;

    box-shadow: -15px 0 40px rgba(0,0,0,0.15);

    transition: 0.4s ease;
    z-index: 1000;
}

/* ATIVO */
.mobile-menu.active {
    right: 0;
}

/* LINKS */
.mobile-menu a {
    padding: 16px 10px;

    font-size: 17px;
    font-weight: bolder;

    color: var(--white);
    text-decoration: none;

    border-left: 4px solid transparent;

    transition: 0.3s;
}

.mobile-menu a:hover {
    background: rgba(154, 206, 211, 0.15);
    color: var(--primary);

    border-left: 4px solid var(--primary);
}

.mobile-header {
    position: absolute;
    top: 20px;
    left: 10px;
}

.mobile-header img {
    width: 120px;
}

/* NAV */
.nav {
    display: flex;
    gap: 25px;
}

/* LINKS */
.nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: bolder;

    position: relative;
    transition: 0.3s;
}

/* HOVER */
.nav a:hover {
    color: var(--primary);
}

/* LINHA ANIMADA */
.nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;

    width: 0%;
    height: 2px;

    background: var(--primary);
    transition: 0.3s;
}

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

.logo-img {
    height: 48px;
}

.btn-whatsapp {
    background: linear-gradient(145deg, var(--secondary), var(--secondary-dark));
    color: #ffffff;
    font-weight: 600;
    border-radius: 999px;
    padding: 12px 26px;
    border: none;

    /* Luz e profundidade */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 
        0 6px 0 var(--secondary-dark),   /* base (chão) */
        0 10px 15px rgba(0, 0, 0, 0.3), /* sombra externa */
        inset 0 2px 3px rgba(255, 255, 255, 0.3); /* brilho topo */

    transition: all 0.15s ease;
    cursor: pointer;
}

.btn-whatsapp:hover {
    transform: translateY(2px);

    box-shadow: 
        0 4px 0 var(--secondary-dark),
        0 6px 10px rgba(0, 0, 0, 0.25),
        inset 0 2px 3px rgba(255, 255, 255, 0.3);
}

.btn-whatsapp:active {
    transform: translateY(6px);

    box-shadow: 
        0 0px 0 var(--secondary-dark),
        0 2px 5px rgba(0, 0, 0, 0.2),
        inset 0 3px 5px rgba(0, 0, 0, 0.3); /* afundado */
}

.whats {
    display: block;
}

@media (max-width: 768px) {

    .logo-img {
        height: 40px;
    }

    .btn-whatsapp {
        padding: 8px 16px;
        font-size: 14px;
    }

}

/* ================= BOTÕES ================= */
.btn-primary {
    background: linear-gradient(145deg, var(--secondary), var(--secondary-dark));
    color: #ffffff;
    font-weight: 600;
    border-radius: 999px;
    padding: 14px 24px;
    border: none;

    /* Profundidade */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    box-shadow:
        0 6px 0 var(--secondary-dark),   /* base */
        0 10px 15px rgba(0, 0, 0, 0.3), /* sombra externa */
        inset 0 2px 3px rgba(255, 255, 255, 0.3); /* brilho */

    transition: all 0.15s ease;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(2px);

    box-shadow:
        0 4px 0 var(--secondary-dark),
        0 6px 10px rgba(0, 0, 0, 0.25),
        inset 0 2px 3px rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(6px);

    box-shadow:
        0 0px 0 var(--secondary-dark),
        0 2px 5px rgba(0, 0, 0, 0.2),
        inset 0 3px 5px rgba(0, 0, 0, 0.35); /* afundado */
}

/* ================= HERO ================= */

@media (max-width: 768px) {

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-logo {
        margin: 0 auto 20px;
        display: block;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .hero-text p {
        font-size: 16px;
    }

    /* ESCALA A GALERIA INTEIRA */
    .hero-gallery {
        transform: scale(0.7);
        transform-origin: center;
        height: auto;
    }

}

@media (max-width: 480px) {

    .hero-gallery {
        transform: scale(0.55);
    }

}

/* LOGO HEADER */
.logo-img {
    height: 45px;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 100px 0;
    color: white;
    overflow: hidden; /* 🔥 ESSENCIAL */
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* TEXTO */
.hero-logo {
    width: clamp(180px, 30vw, 400px);
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.15));
}

.hero-text h1 {
    font-size: 34px;
    margin-bottom: 15px;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* GALERIA */
.hero-gallery {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 560px;
    margin: 0 auto;
}

/* BASE */
.diamond {
    position: absolute;
    width: 250px;
    height: 250px;
    transform: rotate(45deg);
    overflow: hidden;
    border-radius: 20px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border: 3px solid rgba(255,255,255,0.5);
}

/* CENTRALIZA TODOS NO MEIO PRIMEIRO */
.img1, .img2, .img3, .img4 {
    top: 50%;
    left: 50%;
}

/* DISTRIBUIÇÃO PERFEITA (FORMANDO LOSANGO MAIOR) */
.img1 {
    transform: translate(-50%, -125%) rotate(45deg);
}

.img2 {
    transform: translate(25%, -50%) rotate(45deg);
}

.img3 {
    transform: translate(-50%, 25%) rotate(45deg);
}

.img4 {
    transform: translate(-125%, -50%) rotate(45deg);
}

.diamond img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(-45deg) scale(1.4);
}


/* ================= BENEFÍCIOS ================= */
.benefits {
    padding: 60px 0;
    background: var(--light);
}

.benefits .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefits-block{
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    height: 250px;
    padding-top: 20px;
    padding: 5px;
}

.benefits-block h1{
    font-size: 50px;
    color:var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* CARD */
.benefit-card {
    background: var(--white);
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--primary-light);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* ÍCONE */
.icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--primary-light);
}

/* SVG */
.icon svg {
    width: 32px;
    height: 32px;
    color: var(--secondary-dark);
}

.icon2 {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--primary-light);
}

/* SVG */
.icon2 img {
    width: 55px;
    height: 55px;
    color: var(--secondary-dark);
}


/* TEXTO */
.benefit-card h3 {
    margin-bottom: 10px;
    color: var(--dark);
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray);
}

.benefit-content {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    padding: 20px;

    margin: 0 auto;
    max-width: 1200px;
}

/* TEXTO */
.benefit-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;

    background: var(--white);
}

.benefit-text:hover {
    transform: translateY(-6px);
}

.benefit-text h2 {
    font-size: 35px;
    font-weight: 600;
    color: var(--primary-darkness);
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.3px;
}

.benefit-text p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    color: var(--gray);
    font-weight: bold;
}

.benefit-top-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;

    background: var(--white);
}

.benefit-top-text:hover {
    transform: translateY(-6px);
}

.benefit-top-text h2 {
    font-size: 35px;
    font-weight: 600;
    color: var(--primary-darkness);
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.3px;
}

.benefit-top-text p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    color: var(--gray);
    font-weight: bold;
}

/* IMAGEM */
.benefit-image {
    width: 600px;
    height: 500px;
    transition: 0.3s;
    flex-shrink: 0;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.benefit-image:hover{
    transform: translateY(-6px);
}

.mySwiper {
    max-width: 1300px; 
    margin: 20px auto 0;
}

.swiper-slide {
    overflow: hidden;
    border-radius: 12px;
}

.swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.swiper-slide img {
    transition: 0.5s;
}

.swiper-slide img:hover {
    transform: scale(1.05);
}

.swiper-wrapper {
    align-items: center;
}

.swiper-slide img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide:hover img {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* remove efeito automático */
.swiper-slide-active img {
    transform: none;
    box-shadow: none;
}

/* Botões */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
}

/* Bolinhas */
.swiper-pagination-bullet {
    background: var(--primary);
}

@media (hover: hover) {
    .swiper-slide:hover img {
        transform: scale(1.05);
    }
}

@media (max-width: 1024px) {
    .benefits .container {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefit-content {
        margin: 0 40px;
    }
}

@media (max-width: 600px) {
    .benefits .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .benefit-content {
        flex-direction: column;
        text-align: center;
        margin: 0 20px;
    }

    .benefit-text {
        text-align: center;
        max-width: 100%;
    }

    .benefit-image {
        max-width: 100%;
    }

}

/* ================= VACINAS ================= */
.vaccines {
    padding: 60px 0;
}

.vaccines h2 {
    text-align: center;
    margin-bottom: 40px;
}

.vaccine-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;

    max-width: 900px; /* controla largura */
    margin: 0 auto;   /* centraliza */
}

.card {
    background: var(--light);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    font-weight: bold;
}

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

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

.vaccines-block {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    height: 200px;
    padding-top: 20px;
    margin-bottom: 30px;
}

.vaccines-block h2{
    font-size: 30px;
    color:var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* ================= TIPOS DE VACINA ================= */

.vaccine-types {
    margin-top: 80px;
}

.vaccine-types h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* GRID */
.vaccine-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;

    max-width: 900px; /* controla largura */
    margin: 0 auto;   /* centraliza */
}

/* CARD */
.vaccine-card {
    background: var(--light);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: left;
    transition: 0.3s;
}

/* HOVER */
.vaccine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ÍCONE */
.vaccine-card .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* SVG */
.vaccine-card .icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

/* TÍTULO */
.vaccine-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

/* TEXTO */
.vaccine-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
    font-weight: bold;
}

@media (max-width: 1024px) {
    .vaccine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (max-width: 600px) {
    .vaccine-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= ATENDIMENTO ================= */

.service-area {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.service-area h2 {
    margin-bottom: 10px;
}

.service-area .subtitle {
    color: var(--gray);
    margin-bottom: 40px;
    font-weight: bolder;
}

/* GRID */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;

    max-width: 900px; /* mantém padrão visual */
    margin: 0 auto;
}

/* CARD */
.service-card {
    background: var(--light);
    padding: 30px 20px;
    border-radius: 20px;
    transition: 0.3s;
}

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

/* TEXTO */
.service-card h3 {
    margin: 15px 0 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    font-weight: bolder;
}

.service-area h2 {
    font-size: 55px;
    font-weight: 800;

    color: var(--primary-dark);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);

    margin-bottom: 12px;
    letter-spacing: -1px;
    
}

/* Subtítulo */
.service-area .subtitle {
    font-size: 18px;
    color: var(--gray);

    max-width: 650px;
    margin: 0 auto 45px;

    line-height: 1.7;
    
}

@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .service-area h2 {
        font-size: 30px;
    }

    .service-area .subtitle {
        font-size: 16px;
    }
}

/* ================= SNAPWIDGET ================= */

.instagram {
    padding: 80px 0;
    text-align: center;
    background: var(--light);
}

.instagram h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--primary);
}

.instagram .subtitle {
    color: var(--gray);
    margin-bottom: 40px;
    font-weight: bolder;
}

/* CONTAINER DO FEED */
.instagram-feed {
    max-width: 1000px;
    margin: 0 auto;
}

/* IFRAME */
.instagram-feed iframe {
    width: 100% !important;
    border: none;
}

/* ================= DEPOIMENTOS ================= */

.testimonials {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

/* TÍTULO */
.testimonials h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--primary);
}

/* GRID CORRETO */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.testimonial {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;

    text-align: left;
    position: relative;

    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

/* HOVER */
.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* ASPAS DECORATIVAS */
.testimonial::before {
    content: "“";
    font-size: 60px;
    color: var(--primary-light);

    position: absolute;
    top: 10px;
    left: 20px;
}

/* TEXTO */
.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);

    margin-bottom: 20px;
    padding-top: 10px;
}

/* NOME */
.testimonial span {
    font-weight: 600;
    color: var(--primary);
}

.stars {
    color: #fbbf24;
    margin-bottom: 10px;
    margin-left: 15px;
}

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

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

/* ================= SOBRE ================= */

.about {
    padding: 100px 0;
    background: var(--light);
}

/* LAYOUT */
.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

/* IMAGEM */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 600px;

    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* TEXTO */
.about-text {
    flex: 1;
    max-width: 550px;
}

/* TÍTULO */
.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;

    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* PARÁGRAFOS */
.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);

    margin-bottom: 15px;
}

/* LISTA */
.about-text ul {
    margin-top: 20px;
    list-style-type: none;
}

.about-text li {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--dark);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-text {
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 28px;
    }
}

/* ================= FAQ ================= */

.faq {
    padding: 80px 0;
    background: var(--light);
}

/* TÍTULO */
.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;

    color: var(--primary);
}

/* ITEM */
.faq-item {
    max-width: 800px;
    margin: 0 auto 15px;

    border-radius: 12px;
    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* PERGUNTA */
.faq-question {
    width: 100%;
    padding: 18px 20px;

    background: var(--light);
    border: none;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 16px;
    font-weight: 600;
    cursor: pointer;

    color: var(--dark);
}

/* ÍCONE */
.faq-question span {
    font-size: 22px;
    color: var(--primary);
    transition: 0.3s;
}

/* RESPOSTA */
.faq-answer {
    max-height: 0;
    overflow: hidden;

    background: var(--white);
    transition: 0.3s ease;
}

.faq-answer p {
    padding: 15px 20px;
    font-weight: bolder;
    color: var(--gray);
    line-height: 1.6;
}

/* ATIVO */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg); /* vira um X */
}

/* ================= CONTATO PREMIUM ================= */

.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fbfc, #ffffff);
    text-align: center;
}

/* TÍTULO */
.contact h2 {
    font-size: 40px;
    margin-bottom: 10px;

    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SUBTÍTULO */
.contact .subtitle {
    color: var(--gray);
    margin-bottom: 50px;
    font-size: 18px;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.contact-box {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;

    text-align: left;
    position: relative;

    border: 2px solid transparent;
    transition: 0.3s;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* BORDA COM GRADIENT */
.contact-box:hover {
    transform: translateY(-8px);

    border: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(154, 206, 211, 0.25);
}

/* TÍTULO DOS CARDS */
.contact-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

/* TEXTO */
.contact-box p {
    color: var(--dark);
    line-height: 1.6;
}

/* MAPA */
.contact-box iframe {
    width: 100%;
    height: 220px;
    border: none;
    border-radius: 12px;
    margin-top: 15px;
}

/* HORÁRIOS */
.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;

    border-bottom: 1px solid #e5e7eb;
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-row strong {
    color: var(--primary);
}

/* BOTÃO */
.contact-box .btn {
    display: inline-block;
    margin-top: 20px;

    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;

    padding: 12px 20px;
    border-radius: 10px;

    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

.contact-box .btn:hover {
    opacity: 0.9;
}

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

    .contact-box {
        text-align: center;
    }
}

/* ================= FOOTER ================= */

.footer {
    background: var(--primary-dark);
    color: #e2e8f0;
    padding: 60px 0 30px;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* TÍTULOS */
.footer h3,
.footer h4 {
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* TEXTO */
.footer p {
    font-size: 14px;
    line-height: 1.6;
    font-weight: bolder;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* LINKS */
.footer a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: bolder;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.footer a:hover {
    color: var(--primary);
}

/* LISTA */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    margin-bottom: 8px;
}

/* BASE */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;

    border-top: 1px solid #334155;

    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-wrap: wrap;
}

.dev a {
    color: var(--secondary);
}

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ================= RESPONSIVO ================= */
@media (max-width: 1024px) {

    .hero-content,
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .benefits .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .vaccine-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .hero-text h1 {
        font-size: 28px;
    }

    .benefits .container,
    .vaccine-cards {
        grid-template-columns: 1fr;
    }
}

/* FUNDO */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 80px;

    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.85);
}

/* IMAGEM */
.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;

    animation: zoomIn 0.3s ease;
}

/* ANIMAÇÃO */
@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* BOTÃO FECHAR */
.close {
    position: absolute;
    top: 30px;
    right: 40px;

    color: white;
    font-size: 35px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

