/* ==========================================
   PÉROLA BABY
   Furo Humanizado & Body Piercing
========================================== */


/* ==========================================
   VARIÁVEIS
========================================== */

:root {
    --roxo-escuro: #5f3a91;
    --roxo: #7247aa;
    --lilas-escuro: #8658bd;
    --lilas: #9b6fd0;
    --lilas-claro: #b58ae0;
    --lilas-suave: #d7baf1;
    --lilas-fundo: #f6effc;
    --rosa-suave: #fbeff8;

    --branco: #ffffff;

    --texto: #342b3e;
    --texto-claro: #756d7e;

    --borda: rgba(114, 71, 170, 0.13);

    --sombra:
        0 24px 60px rgba(91, 56, 135, 0.12);
}


/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;

    background: var(--branco);

    color: var(--texto);

    line-height: 1.6;

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

i {
    line-height: 1;
}


/* ==========================================
   CONTAINER
========================================== */

.container {
    width: min(1160px, calc(100% - 40px));

    margin: 0 auto;
}


/* ==========================================
   HEADER
========================================== */

.header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.92);

    backdrop-filter: blur(16px);

    border-bottom:
        1px solid rgba(114, 71, 170, 0.08);
}

.nav {
    height: 86px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* ==========================================
   LOGO
========================================== */

.brand {
    display: flex;

    align-items: center;
}

.brand img {
    width: 150px;

    height: 70px;

    object-fit: contain;
}


/* ==========================================
   MENU
========================================== */

.menu {
    display: flex;

    align-items: center;

    gap: 28px;
}

.menu a {
    display: inline-flex;

    align-items: center;

    gap: 7px;
}

.menu > a:not(.btn) {
    position: relative;

    font-weight: 600;

    color: #5e5666;

    transition: 0.3s;
}

.menu > a:not(.btn) i {
    color: var(--lilas-escuro);

    font-size: 0.9rem;
}

.menu > a:not(.btn)::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 2px;

    border-radius: 10px;

    background: var(--lilas);

    transition: 0.3s;
}

.menu > a:not(.btn):hover {
    color: var(--roxo);
}

.menu > a:not(.btn):hover::after {
    width: 100%;
}


/* ==========================================
   BOTÕES
========================================== */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 50px;

    padding: 0 25px;

    border-radius: 50px;

    color: var(--branco);

    font-weight: 700;

    background:
        linear-gradient(
            135deg,
            var(--roxo),
            var(--lilas)
        );

    box-shadow:
        0 12px 28px rgba(114, 71, 170, 0.22);

    transition:
        transform 0.3s,
        box-shadow 0.3s,
        background 0.3s;
}

.btn i {
    font-size: 0.95rem;
}

.btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(114, 71, 170, 0.30);
}

.btn-small {
    min-height: 42px;

    padding: 0 20px;
}

.btn-outline {
    color: var(--roxo);

    background: transparent;

    border:
        1.5px solid var(--lilas-suave);

    box-shadow: none;
}

.btn-outline:hover {
    background: var(--lilas-fundo);

    box-shadow: none;
}


/* ==========================================
   MENU MOBILE
========================================== */

.menu-toggle {
    display: none;

    width: 45px;

    height: 45px;

    padding: 10px;

    cursor: pointer;

    border-radius: 14px;

    border:
        1px solid var(--borda);

    background: var(--lilas-fundo);
}

.menu-toggle span {
    display: block;

    width: 100%;

    height: 2px;

    margin: 5px 0;

    border-radius: 10px;

    background: var(--roxo);
}


/* ==========================================
   HERO
========================================== */

.hero {
    position: relative;

    min-height:
        calc(100vh - 86px);

    display: flex;

    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(231, 209, 249, 0.8),
            transparent 25%
        ),

        linear-gradient(
            135deg,
            #ffffff 0%,
            #fdfaff 45%,
            #f8f0ff 100%
        );
}

.hero-grid {
    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 70px;

    align-items: center;

    padding: 80px 0;
}


/* ==========================================
   TEXTO HERO
========================================== */

.hero-content {
    position: relative;

    z-index: 5;
}

.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 16px;

    padding: 8px 14px;

    border-radius: 50px;

    background: var(--lilas-fundo);

    color: var(--roxo);

    font-size: 0.80rem;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.eyebrow i {
    font-size: 0.82rem;
}

.hero h1 {
    max-width: 760px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(3rem, 6vw, 5.5rem);

    line-height: 1.05;

    letter-spacing: -0.04em;
}

.hero h1 span {
    color: var(--lilas-escuro);
}

.hero-content > p {
    max-width: 650px;

    margin-top: 22px;

    color: var(--texto-claro);

    font-size: 1.08rem;
}


/* ==========================================
   BOTÕES HERO
========================================== */

.hero-actions {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;

    margin-top: 32px;
}


/* ==========================================
   BADGES HERO
========================================== */

.hero-badges {
    display: flex;

    gap: 22px;

    flex-wrap: wrap;

    margin-top: 38px;
}

.badge {
    min-width: 230px;

    display: flex;

    align-items: center;

    gap: 12px;
}

.badge-icon {
    flex-shrink: 0;

    width: 46px;

    height: 46px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--branco);

    color: var(--lilas-escuro);

    font-size: 1.05rem;

    box-shadow:
        0 8px 22px rgba(91, 56, 135, 0.11);
}

.badge strong {
    display: block;

    font-size: 0.95rem;
}

.badge small {
    display: block;

    color: var(--texto-claro);
}


/* ==========================================
   FOTO VALQUÍRIA
========================================== */

.hero-photo-wrap {
    position: relative;

    min-height: 590px;

    display: grid;

    place-items: center;
}

.photo-ring {
    position: absolute;

    width: 470px;

    height: 470px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--lilas-suave),
            #f6dff2
        );
}

.hero-photo-card {
    position: relative;

    z-index: 2;

    width: 430px;

    height: 520px;

    overflow: hidden;

    border-radius:
        42% 42% 32% 32%
        / 34% 34% 22% 22%;

    background: var(--branco);

    border:
        8px solid rgba(255, 255, 255, 0.82);

    box-shadow: var(--sombra);
}

.hero-photo-card img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: 18% center;

    transform: scale(1.05);
}


/* ==========================================
   CARD FLUTUANTE
========================================== */

.floating-card {
    position: absolute;

    right: -15px;

    bottom: 52px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 16px 20px;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.95);

    border:
        1px solid rgba(114, 71, 170, 0.10);

    box-shadow:
        0 18px 42px rgba(91, 56, 135, 0.14);
}

.floating-card > span {
    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 13px;

    color: var(--roxo);

    background: var(--lilas-fundo);

    font-size: 1rem;
}

.floating-card strong {
    display: block;

    color: var(--roxo-escuro);
}

.floating-card small {
    display: block;

    color: var(--texto-claro);
}


/* ==========================================
   LUZES
========================================== */

.hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(10px);

    opacity: 0.55;
}

.glow-1 {
    width: 260px;

    height: 260px;

    top: -90px;

    right: 10%;

    background: var(--lilas-suave);
}

.glow-2 {
    width: 180px;

    height: 180px;

    bottom: 40px;

    left: -50px;

    background: #f3cce8;
}


/* ==========================================
   FAIXA DIFERENCIAIS
========================================== */

.trust-strip {
    color: var(--branco);

    background: var(--roxo-escuro);
}

.trust-grid {
    min-height: 118px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    align-items: center;

    gap: 30px;
}

.trust-grid div {
    padding-left: 22px;

    border-left:
        1px solid rgba(255, 255, 255, 0.20);
}

.trust-grid strong {
    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 1rem;
}

.trust-grid strong i {
    width: 30px;

    height: 30px;

    display: inline-grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 9px;

    color: #fff;

    background:
        rgba(255, 255, 255, 0.12);

    font-size: 0.85rem;
}

.trust-grid span {
    display: block;

    margin-top: 3px;

    padding-left: 39px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 0.92rem;
}


/* ==========================================
   SEÇÕES
========================================== */

.section {
    padding: 110px 0;
}

.section h2 {
    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(2.3rem, 4vw, 3.7rem);

    line-height: 1.1;

    letter-spacing: -0.025em;
}

.section-heading {
    max-width: 720px;

    margin:
        0 auto 52px;

    text-align: center;
}

.section-heading p {
    margin-top: 14px;

    color: var(--texto-claro);
}


/* ==========================================
   GALERIA
========================================== */

.galeria-bebes {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(215, 186, 241, 0.25),
            transparent 25%
        ),

        radial-gradient(
            circle at 90% 80%,
            rgba(251, 239, 248, 0.8),
            transparent 25%
        ),

        #ffffff;
}

.galeria-bebes .section-heading {
    max-width: 720px;

    margin:
        0 auto 55px;

    text-align: center;
}

.galeria-bebes .section-heading h2 {
    color: var(--roxo-escuro);
}

.galeria-bebes .section-heading p {
    max-width: 560px;

    margin:
        15px auto 0;

    color: var(--texto-claro);
}


/* ==========================================
   GRID FOTOS
========================================== */

.galeria-grid {
    max-width: 900px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 35px;

    align-items: stretch;
}


/* ==========================================
   MOLDURA FOTO
========================================== */

.foto-moldura {
    position: relative;

    margin: 0;

    padding: 9px;

    overflow: hidden;

    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            #ead9fa,
            #c89be9,
            #9b6fd0,
            #7247aa
        );

    box-shadow:
        0 18px 45px rgba(95, 58, 145, 0.18);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.foto-moldura:hover {
    transform: translateY(-8px);

    box-shadow:
        0 28px 60px rgba(95, 58, 145, 0.26);
}

.foto-moldura img {
    width: 100%;

    height: 440px;

    display: block;

    object-fit: cover;

    border-radius: 26px;

    border:
        4px solid rgba(255, 255, 255, 0.92);

    transition:
        transform 0.5s ease;
}

.foto-moldura:hover img {
    transform: scale(1.025);
}

.foto-moldura::before {
    content: "♡";

    position: absolute;

    top: 20px;

    right: 20px;

    z-index: 5;

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: var(--roxo);

    font-size: 1.5rem;

    font-weight: bold;

    background:
        rgba(255, 255, 255, 0.94);

    box-shadow:
        0 7px 20px rgba(95, 58, 145, 0.18);
}


/* ==========================================
   LEGENDA
========================================== */

.foto-moldura figcaption {
    position: relative;

    z-index: 4;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin:
        -28px 18px 8px;

    padding:
        14px 18px;

    text-align: center;

    color: var(--branco);

    font-family:
        "Playfair Display",
        serif;

    font-size: 1.05rem;

    font-weight: 600;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            var(--roxo),
            var(--lilas)
        );

    box-shadow:
        0 10px 25px rgba(95, 58, 145, 0.28);
}

.foto-moldura figcaption i {
    font-size: 0.9rem;
}


/* ==========================================
   AVISO GALERIA
========================================== */

.galeria-aviso {
    margin-top: 38px;

    text-align: center;

    color: var(--texto-claro);

    font-size: 0.85rem;
}

.galeria-aviso i {
    margin-right: 6px;

    color: var(--lilas-escuro);
}


/* ==========================================
   SERVIÇOS
========================================== */

.services {
    background: var(--lilas-fundo);
}

.cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.service-card {
    position: relative;

    padding: 30px;

    background: var(--branco);

    border:
        1px solid var(--borda);

    border-radius: 28px;

    box-shadow:
        0 16px 40px rgba(91, 56, 135, 0.07);

    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 24px 55px rgba(91, 56, 135, 0.14);
}

.service-card.featured {
    background:
        linear-gradient(
            160deg,
            #ffffff,
            #fbf6ff
        );

    border-color:
        rgba(134, 88, 189, 0.30);
}

.service-icon {
    width: 60px;

    height: 60px;

    display: grid;

    place-items: center;

    margin-bottom: 20px;

    border-radius: 18px;

    color: var(--roxo);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eee2fa
        );

    border:
        1px solid rgba(114, 71, 170, 0.10);

    box-shadow:
        0 8px 20px rgba(91, 56, 135, 0.10);

    font-size: 1.35rem;
}

.service-tag {
    color: var(--lilas-escuro);

    font-size: 0.80rem;

    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.service-card h3 {
    margin-top: 7px;

    font-family:
        "Playfair Display",
        serif;

    font-size: 1.65rem;

    color: var(--roxo-escuro);
}

.service-card p {
    margin:
        14px 0 22px;

    color: var(--texto-claro);
}

.service-card a {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--roxo);

    font-weight: 800;

    transition: 0.3s;
}

.service-card a i {
    font-size: 0.8rem;

    transition: 0.3s;
}

.service-card a:hover {
    color: var(--lilas-escuro);
}

.service-card a:hover i {
    transform: translateX(4px);
}


/* ==========================================
   COMO FUNCIONA
========================================== */

.care {
    background: var(--branco);
}

.care-grid {
    display: grid;

    grid-template-columns:
        1.15fr 0.85fr;

    gap: 80px;

    align-items: center;
}

.steps {
    display: grid;

    gap: 24px;

    margin-top: 34px;
}

.step {
    display: grid;

    grid-template-columns:
        58px 1fr;

    gap: 16px;

    align-items: start;
}

.step > span {
    width: 52px;

    height: 52px;

    display: grid;

    place-items: center;

    border-radius: 16px;

    color: var(--roxo);

    background:
        var(--lilas-fundo);

    border:
        1px solid var(--lilas-suave);

    font-size: 1.05rem;

    box-shadow:
        0 7px 18px rgba(91, 56, 135, 0.08);
}

.step h3 {
    margin-bottom: 4px;

    color: var(--roxo-escuro);
}

.step p {
    color: var(--texto-claro);
}


/* ==========================================
   CARD ROXO
========================================== */

.care-box {
    padding: 42px;

    color: var(--branco);

    border-radius: 34px;

    background:
        linear-gradient(
            160deg,
            var(--roxo-escuro),
            var(--lilas-escuro)
        );

    box-shadow: var(--sombra);
}

.care-heart {
    width: 58px;

    height: 58px;

    display: grid;

    place-items: center;

    margin-bottom: 22px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.12);

    font-size: 1.4rem;
}

.care-box h3 {
    font-family:
        "Playfair Display",
        serif;

    font-size: 2rem;
}

.care-box p {
    margin-top: 14px;

    color:
        rgba(255, 255, 255, 0.78);
}

.signature {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 30px;

    padding-top: 22px;

    border-top:
        1px solid rgba(255, 255, 255, 0.18);

    font-weight: 800;
}

.signature i {
    font-size: 0.95rem;
}


/* ==========================================
   CTA / WHATSAPP
========================================== */

.cta-section {
    padding:
        0 0 110px;
}

.cta-box {
    min-height: 310px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 56px;

    color: var(--branco);

    border-radius: 38px;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(255, 255, 255, 0.18),
            transparent 24%
        ),

        linear-gradient(
            135deg,
            var(--roxo-escuro),
            var(--lilas)
        );

    box-shadow: var(--sombra);
}

.cta-box > div {
    max-width: 700px;
}

.cta-box h2 {
    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(2.3rem, 4vw, 3.7rem);

    line-height: 1.1;
}

.cta-box p {
    margin-top: 14px;

    color:
        rgba(255, 255, 255, 0.78);
}

.cta-box p i {
    margin-right: 6px;
}

.eyebrow.light {
    color: var(--branco);

    background:
        rgba(255, 255, 255, 0.14);
}

.btn-white {
    flex-shrink: 0;

    color: var(--roxo);

    background: var(--branco);

    box-shadow: none;
}

.btn-white:hover {
    color: var(--roxo-escuro);

    background: var(--lilas-fundo);

    box-shadow: none;
}


/* ==========================================
   FOOTER
========================================== */

footer {
    padding: 42px 0;

    border-top:
        1px solid var(--borda);

    background:
        #fdfbff;
}

.footer-content {
    display: grid;

    grid-template-columns:
        1fr 1fr auto;

    gap: 38px;

    align-items: center;

    color: var(--texto-claro);
}


/* MARCA */

.footer-brand strong {
    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--roxo);

    font-family:
        "Playfair Display",
        serif;

    font-size: 1.25rem;
}

.footer-brand strong i {
    font-size: 0.95rem;
}

.footer-brand span {
    display: block;

    margin-top: 3px;
}


/* PROFISSIONAL */

.footer-profissional {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-profissional p {
    margin: 0;
}

.footer-profissional p > span {
    display: flex;

    align-items: center;

    gap: 6px;
}

.footer-profissional p > span i {
    color: var(--lilas-escuro);

    font-size: 0.85rem;
}

.footer-profissional strong {
    display: block;

    margin-top: 2px;

    color: var(--roxo);

    font-family:
        "Playfair Display",
        serif;

    font-size: 1.25rem;
}


/* ==========================================
   INSTAGRAM
========================================== */

.instagram-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    width: fit-content;

    color: var(--roxo);

    font-size: 0.9rem;

    font-weight: 600;

    transition: 0.3s ease;
}

.instagram-link i {
    font-size: 1.15rem;

    color: var(--roxo);

    transition: 0.3s ease;
}

.instagram-link:hover {
    color: var(--lilas-escuro);
}

.instagram-link:hover i {
    color: var(--lilas-escuro);

    transform: scale(1.12);
}


/* ==========================================
   DESENVOLVEDOR
========================================== */

.footer-dev {
    display: flex;

    flex-direction: column;

    gap: 6px;
}

.footer-dev small {
    display: block;
}

.footer-dev small i {
    margin-right: 5px;

    color: var(--lilas-escuro);

    font-size: 0.8rem;
}

.developer-link {
    position: relative;

    color: var(--roxo);

    font-weight: 700;

    transition: 0.3s;
}

.developer-link:hover {
    color: var(--lilas-escuro);
}

.developer-link::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -2px;

    width: 0;

    height: 1px;

    background: var(--lilas);

    transition: 0.3s;
}

.developer-link:hover::after {
    width: 100%;
}


/* ==========================================
   RESPONSIVIDADE - TABLET
========================================== */

@media (max-width: 980px) {

    .menu-toggle {
        display: block;
    }

    .menu {
        position: absolute;

        top: 78px;

        left: 20px;

        right: 20px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        padding: 18px;

        background: var(--branco);

        border:
            1px solid var(--borda);

        border-radius: 20px;

        box-shadow: var(--sombra);
    }

    .menu.open {
        display: flex;
    }

    .menu a {
        padding: 12px;

        border-radius: 12px;
    }

    .menu > a:not(.btn):hover {
        background: var(--lilas-fundo);
    }


    /* HERO */

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content > p {
        margin-left: auto;

        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-photo-wrap {
        min-height: 540px;
    }


    /* GALERIA */

    .galeria-grid {
        max-width: 760px;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 24px;
    }

    .foto-moldura img {
        height: 380px;
    }


    /* SERVIÇOS */

    .cards {
        grid-template-columns: 1fr;
    }


    /* DIFERENCIAIS */

    .trust-grid {
        grid-template-columns: 1fr;

        padding: 26px 0;
    }

    .trust-grid div {
        padding:
            0 0 18px;

        border-left: none;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.14);
    }

    .trust-grid div:last-child {
        border-bottom: none;
    }


    /* COMO FUNCIONA */

    .care-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    /* CTA */

    .cta-box {
        flex-direction: column;

        align-items: flex-start;
    }


    /* FOOTER */

    .footer-content {
        grid-template-columns: 1fr;
    }

}


/* ==========================================
   RESPONSIVIDADE - CELULAR
========================================== */

@media (max-width: 620px) {

    .container {
        width:
            min(100% - 28px, 1160px);
    }


    /* HEADER */

    .nav {
        height: 76px;
    }

    .brand img {
        width: 125px;

        height: 60px;
    }


    /* HERO */

    .hero-grid {
        padding:
            58px 0 68px;
    }

    .hero h1 {
        font-size:
            clamp(2.5rem, 13vw, 4rem);
    }

    .hero-content > p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-badges {
        flex-direction: column;

        align-items: center;
    }

    .badge {
        width: 100%;

        max-width: 320px;

        text-align: left;
    }


    /* FOTO */

    .hero-photo-wrap {
        min-height: 450px;
    }

    .photo-ring {
        width: 340px;

        height: 340px;
    }

    .hero-photo-card {
        width: 320px;

        height: 400px;

        border-radius: 38px;
    }

    .floating-card {
        right: 0;

        bottom: 14px;

        padding: 13px 14px;
    }

    .floating-card > span {
        width: 36px;

        height: 36px;
    }

    .floating-card strong {
        font-size: 0.9rem;
    }

    .floating-card small {
        font-size: 0.75rem;
    }


    /* SEÇÕES */

    .section {
        padding: 78px 0;
    }

    .section h2 {
        font-size:
            clamp(2rem, 10vw, 3rem);
    }


    /* GALERIA */

    .galeria-bebes .section-heading {
        margin-bottom: 35px;
    }

    .galeria-grid {
        grid-template-columns: 1fr;

        max-width: 430px;

        gap: 30px;
    }

    .foto-moldura {
        width: 100%;

        margin: 0 auto;

        border-radius: 28px;
    }

    .foto-moldura img {
        height: 410px;

        border-radius: 21px;
    }

    .foto-moldura figcaption {
        margin:
            -24px 12px 7px;

        font-size: 0.95rem;
    }


    /* CARDS */

    .service-card {
        padding: 25px;
    }


    /* CARE */

    .care-box {
        padding: 30px 25px;
    }


    /* CTA */

    .cta-section {
        padding-bottom: 78px;
    }

    .cta-box {
        padding: 36px 26px;

        border-radius: 28px;
    }

    .cta-box .btn {
        width: 100%;
    }


    /* FOOTER MOBILE CENTRALIZADO */

    footer {
        padding: 40px 0;
    }

    .footer-content {
        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 22px;

        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand strong {
        justify-content: center;
    }

    .footer-profissional {
        align-items: center;

        text-align: center;
    }

    .footer-profissional p > span {
        justify-content: center;
    }

    .instagram-link {
        margin: 0 auto;

        justify-content: center;
    }

    .footer-dev {
        align-items: center;

        text-align: center;
    }

    .footer-dev small {
        text-align: center;
    }

}


/* ==========================================
   CELULARES PEQUENOS
========================================== */

@media (max-width: 400px) {

    .foto-moldura img {
        height: 340px;
    }

}


@media (max-width: 380px) {

    .hero-photo-card {
        width: 280px;

        height: 360px;
    }

    .photo-ring {
        width: 290px;

        height: 290px;
    }

    .floating-card {
        left: 5px;

        right: 5px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

}

/* ==========================================
   MARCA / LOGO DO FOOTER
========================================== */

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 140px;
    height: auto;

    display: block;
    object-fit: contain;
}

.footer-brand span {
    display: block;

    margin-top: 8px;

    color: var(--texto-claro);
    font-size: 0.9rem;

    text-align: center;
}