@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Great+Vibes&family=Merienda:wght@300..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Viaoda+Libre&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');


:root {
    --primary-blue: #00a7c7;
    --dark-blue: #1a4a5e;
    --light-bg: #e8f6fb;
    --text-gray: #615c5c;
    --white: #ffffff;
}

html {
    background-color: white;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f7fbfd;
    color: #333;
    opacity: 0;
  animation: pageIn 0.6s ease forwards;
}

@keyframes pageIn {
  to { opacity: 1; }
}

body.menu-open {
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

.logo {
    
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #007b9e;
    font-weight: bold;
}

nav a {
    position: relative;
    text-decoration: none;
    color: #007b9e;
    font-weight: bold;
    display: inline-block;
}

nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease;
}

nav a:hover::after {
    width: 100%;
    left: 0;
}



/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #007b9e;
    margin-bottom: 5px;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
    padding: 60px 0 140px 0;
    background-image: url(../img/bg-hero.png);
    background-repeat: no-repeat;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cursive-title {
    font-family: 'Merienda', cursive;
    font-size: 3.8rem;
    color: var(--primary-blue);
    font-style: italic;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 35px;
}

.btn-cta {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    
    display: inline-block;
    box-shadow: 0 8px 20px rgba(0, 167, 199, 0.3);
    transition: 0.3s;
}

.btn-cta:hover {
    background: #008fa3;
    transform: translateY(-3px);
}

.hero-image img {
    max-width: 550px;
    /* Efeito de fade na base da imagem da dentista */
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}
/* SOBRE SECTION */
.sobre { 
    padding: 80px 0;
    margin: 0 auto;
    width: 100%;
    background-image: url(../img/bg-2.png);
    background-repeat: no-repeat;
    
    
}

.about-grid {
    font-family: "PT Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    
}

.title-left {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: left;
    font-family: "PT Sans", sans-serif;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.05em;
}

.description { 
    margin-bottom: 40px; 
    color: var(--text-gray); 
    font-family: "PT Sans", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.2em;
    letter-spacing: 1.5px;
}

.about-features {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #969595;
    padding-top: 30px;
    
}

.feature-item { 
    text-align: center; 
    flex: 1; 
    font-family: "PT Sans", sans-serif;
  
}

.feature-item img { 
    width: 50px; 
    margin-bottom: 10px; 

}

.feature-item span {
    font-family: "PT Sans", sans-serif;
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-blue);
    border-bottom: 2px solid #969595;
    padding-bottom: 15px;
}

.img-rounded-shadow {
    width: 80%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* SECTIONS */
section {
    padding: 70px 0;
    color: var(--text-gray);
}

h2 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

/* TRATAMENTOS */
.tratamentos {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}

.section-title { color: var(--dark-blue); font-size: 2.2rem; }
.section-subtitle { color: var(--text-gray); margin-bottom: 50px; }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #f8f8f8;
}

.card:hover { transform: translateY(-10px); }
.card-icon img { width: 60px; margin-bottom: 20px; }
.card h3 { font-size: 1.1rem; color: var(--dark-blue); }

/* FOOTER */
footer {
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
}

footer span { color: var(--primary-blue); font-weight: bold; }




/* FOOTER */
footer {
    background: #007b9e;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* RESPONSIVO */
@media (max-width: 768px) {

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0,0,0,.1);
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hamburger {
        display: flex;
    }
}



footer span {
    color: greenyellow;
}

/* SEÇÃO DE DEPOIMENTOS */
.depoimentos {
    padding: 80px 0;
    background-color: #ffffff;
}

.depoimentos-grid {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;justify-content: space-between;
}

.depoimento-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
}

.depoimento-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f8fa;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}

.depoimento-text {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.depoimento-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.paciente-nome {
    font-weight: 600;
    color: #007b9e;
}

.paciente-foto {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e8f6fb;
}

/* BOLINHAS (DOTS) */
.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #d1d1d1;
    border-radius: 50%;
}

.dot.active {
    background-color: #00a7c7;
}

/* RESPONSIVO DEPOIMENTOS */
@media (max-width: 992px) {
    .depoimentos-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.contact {
    text-align: center;
    font-family: "Nunito", sans-serif;
    color: var(--text-gray); 
    font-weight: 600;
    font-style: normal;
    font-size: 1.2em;
    letter-spacing: 1.5px;
}

.contact__title {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    color: var(--primary-blue);
    padding-bottom: 25px;
    
}

.contact__text {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    font-style: italic;
    padding-bottom: 25px;
    border-bottom: 2px solid #615c5c;
}

.contact__tel {
    display: flex;
    align-items: center;      /* alinha verticalmente */
    gap: 8px;                /* espaço entre ícone e texto */
    background: #f2fbfd;      /* opcional, só para destacar */
    padding: 20px 24px;
    border-radius: 12px;
    max-width: 420px;         /* controla largura */
    margin: 0 auto;           /* centraliza o bloco */
    
    
}
.contact__tel img {
    width: 80px;              /* tamanho do ícone */
    height: auto;
    flex-shrink: 0;           /* impede o ícone de encolher */
}
.contact__number p {
    margin: 0;
    line-height: 1.4;
    color: #555;
    font-size: 14px;
}

.contact__number .number {
    font-size: 1.5em;
    font-weight: 800;
    color: #0aa6c0;
}




.number {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    color: var(--primary-blue);
    font-size: 1.5em;
    padding-bottom: 10px;
}

.contact__number {
    

}

/* ================================
   SEÇÃO CLIENTES / DEPOIMENTOS
================================ */

.clientes-section {
    background: #ffffff;
    padding: 80px 0;
}

.clientes-section h3 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 40px;
    font-family: "PT Sans", sans-serif;
}

.clientes-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cliente-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    width: 300px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.cliente-card:hover {
    transform: translateY(-10px);
}

.cliente-card .depoimento-text {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.cliente-card .depoimento-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.cliente-card .paciente-nome {
    font-weight: 600;
    color: #007b9e;
}

.cliente-card .paciente-foto {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e8f6fb;


}

.avaliacao span {
    color: #f4c430;
    font-size: 1.3rem;
    margin-right: 2px;
}


/* RESPONSIVO */
@media (max-width: 768px) {
    .clientes-grid {
        flex-direction: column;
        align-items: center;
    }
}

.avaliacao {
    color: #f4c430; /* dourado */
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

/* ANIMAÇÃO HAMBURGER */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger span {
    transition: 0.3s ease;
}

/* =========================
   SOBRE — RESPONSIVO
========================= */

@media (max-width: 992px) {

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .title-left {
        text-align: center;
    }

    .description {
        text-align: center;
        letter-spacing: 0.8px;
    }

    .about-features {
        flex-direction: column;
        gap: 25px;
        border-top: none;
        padding-top: 0;
    }

    .feature-item span {
        border-bottom: none;
        padding-bottom: 0;
    }

    .about-photo-wrapper {
        display: flex;
        justify-content: center;
    }

    .img-rounded-shadow {
        width: 70%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {

    .description {
        font-size: 1rem;
    }

    .cursive-title {
        font-size: 2.8rem;
    }
}

/* =========================
   BACKGROUND CURVO - SOBRE
========================= */

.sobre {
    position: relative;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #e8f6fb 100%
    );
    overflow: hidden;
}

.sobre-bg {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 160px;
    z-index: 0;
}

.about-grid {
    position: relative;
    z-index: 1;
}

/* =========================
   HERO + SOBRE - IDENTIDADE
========================= */

.hero {
    background-image: url(../img/bg-hero.png);
    padding-bottom: 160px;
    
}



.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #ffffff 100%
    );
}

.cursive-title,
.title-left {
    color: #1a4a5e;
}

.hero-subtitle,
.description {
    color: #615c5c;
}

.feature-item img {
    filter: drop-shadow(0 4px 6px rgba(0, 167, 199, 0.25));
}

.img-rounded-shadow {
    background: #ffffff;
    padding: 6px;
}

/* =========================
   MICRO ANIMAÇÃO - SOBRE
========================= */

.feature-item {
    transition: transform 0.3s ease;
}

.feature-item img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

.feature-item:hover img {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(0 10px 15px rgba(0, 167, 199, 0.35));
}

.feature-item span {
    transition: color 0.3s ease;
}

.feature-item:hover span {
    color: var(--primary-blue);
}

/* =========================
   CTA - SOBRE
========================= */

.about-cta {
    margin-top: 40px;
    text-align: left;
}

@media (max-width: 992px) {
    .about-cta {
        text-align: center;
    }
}

@keyframes pulseCTA {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.about-cta .btn-cta {
    animation: pulseCTA 3s ease-in-out infinite;
}

/* =========================
   ANIMAÇÃO VIEWPORT - SOBRE
========================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delay escalonado */
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.25s; }
.reveal.delay-3 { transition-delay: 0.4s; }
.reveal.delay-4 { transition-delay: 0.55s; }


/* =========================
   HERO - ANIMAÇÃO ENTRADA
========================= */

.hero-animate {
    opacity: 0;
    transform: translateY(50px);
    animation: heroFadeUp 1.2s ease forwards;
    animation-fill-mode: both;
}

.hero .btn-cta {
    animation: heroFadeUp 1s ease forwards, pulseCTA 3s ease-in-out 2s infinite;
}

.hero-animate.delay-1 { animation-delay: 0.2s; }
.hero-animate.delay-2 { animation-delay: 0.4s; }
.hero-animate.delay-3 { animation-delay: 0.6s; }

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   ANIMAÇÃO EM CASCATA
========================= */

.cascade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.cascade.active {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   CTA MAGNÉTICO
========================= */

.magnetic {
    position: relative;
    transition: transform 0.2s ease;
}

/* =========================
   SOBRE - BASE
========================= */

.sobre {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #e8f6fb 100%);
    overflow: hidden;
}

.sobre-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    z-index: 0;
}

.about-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    font-family: "PT Sans", sans-serif;
}

/* TEXTO */

.title-left {
    color: #1a4a5e;
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.description {
    color: #615c5c;
    font-size: 1.15rem;
    margin-bottom: 35px;
    letter-spacing: 1px;
}

/* CTA */

.about-cta {
    margin-bottom: 40px;
}

.about-cta .btn-cta {
    animation: pulseCTA 3s ease-in-out infinite;
}

@keyframes pulseCTA {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); }
    100% { transform: scale(1); }
}

/* FEATURES */

.about-features {
    display: flex;
    gap: 40px;
}

.feature-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item img {
    width: 48px;
    margin-bottom: 10px;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 4px 6px rgba(0,167,199,.25));
}

.feature-item span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a4a5e;
    transition: color 0.3s ease;
}

.feature-item:hover img {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(0 10px 15px rgba(0,167,199,.35));
}

.feature-item:hover span {
    color: #00a7c7;
}

/* FOTO */

.about-photo-wrapper {
    display: flex;
    justify-content: center;
}

.img-rounded-shadow {
    width: 80%;
    max-width: 320px;
    border-radius: 20px;
    background: #fff;
    padding: 6px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .about-features {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .about-cta {
        margin-bottom: 30px;
    }
}

/* =========================
   REVEAL ANIMATION
========================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

footer a {
    text-decoration: none;
}