/* ==========================================================================
   BOOM BABY FRALDAS E ACESSÓRIOS - IDENTIDADE VISUAL E DESIGN SYSTEM OFICIAL
   ========================================================================== */

/* Importação das Fontes Poppins, Nunito e Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Nunito:wght@400;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* --------------------------------------------------------------------------
   1. PALETA DE CORES E VARIÁVEIS OFICIAIS
   -------------------------------------------------------------------------- */
:root {
    /* Cores Oficiais Boom Baby */
    --color-blue-baby: #A9D9F7;
    --color-navy: #12182B;         /* Cor principal de texto/títulos e contraste */
    --color-pink-pastel: #F7C6D9;
    --color-pink-hot: #D95AA3;     /* Destaque rosa alegre */
    --color-yellow: #F6C515;       /* Cor de destaque principal (botões) */
    --color-green-soft: #B8D94B;
    
    /* Cores de Fundo e Apoio */
    --color-white: #FFFFFF;
    --color-clean-bg: #FCFDFE;
    --color-card-bg: #FFFFFF;
    
    /* Opacidades Suaves para Backgrounds e Blobs */
    --color-blue-baby-light: rgba(169, 217, 247, 0.15);
    --color-pink-pastel-light: rgba(247, 198, 217, 0.18);
    --color-yellow-light: rgba(246, 197, 21, 0.12);
    --color-green-soft-light: rgba(184, 217, 75, 0.15);
    
    /* Fontes */
    --font-heading: 'Nunito', sans-serif;  /* Calorosa, infantil premium, divertida e amigável */
    --font-body: 'Poppins', sans-serif;    /* Limpa, moderna, estruturada e refinada */
    --font-alt: 'Inter', sans-serif;
    
    /* Profundidade Visual (Sombras Refinadas) */
    --shadow-premium: 0 16px 40px rgba(18, 24, 43, 0.04);
    --shadow-premium-hover: 0 24px 60px rgba(18, 24, 43, 0.08);
    --shadow-button-yellow: 0 8px 24px rgba(246, 197, 21, 0.3);
    --shadow-button-whatsapp: 0 8px 24px rgba(37, 211, 102, 0.25);
    
    /* Bordas e Curvas Modernas */
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --radius-full: 9999px;
    
    /* Transições Suaves */
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. CONFIGURAÇÕES BASE E RESET
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-navy);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   3. ELEMENTOS DE DECORAÇÃO ORGÂNICA (BLOBS & CURVES)
   -------------------------------------------------------------------------- */
.blob-decorator {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.55;
}

.blob-blue {
    background-color: var(--color-blue-baby);
    width: 350px;
    height: 350px;
}

.blob-pink {
    background-color: var(--color-pink-pastel);
    width: 300px;
    height: 300px;
}

.blob-yellow {
    background-color: var(--color-yellow);
    width: 250px;
    height: 250px;
    opacity: 0.35;
}

/* Divisores Fluidos / Curvas */
.wave-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.wave-top {
    top: 0;
}

.wave-bottom {
    bottom: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider.color-clean-bg svg {
    fill: var(--color-clean-bg);
}

.wave-divider.color-white svg {
    fill: var(--color-white);
}

/* --------------------------------------------------------------------------
   4. ESTRUTURA GERAL E BREATHING SPACE
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-padding {
    padding: 130px 0;
    position: relative;
}

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

/* Selos Circulares/Pills da Logo */
.pills-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    transition: all var(--transition-normal);
}

.pill-blue { background-color: var(--color-blue-baby-light); color: #3574a3; border: 1px solid rgba(169, 217, 247, 0.4); }
.pill-pink { background-color: var(--color-pink-pastel-light); color: var(--color-pink-hot); border: 1px solid rgba(247, 198, 217, 0.4); }
.pill-green { background-color: var(--color-green-soft-light); color: #5b750d; border: 1px solid rgba(184, 217, 75, 0.4); }

.section-title {
    font-family: var(--font-heading);
    font-size: 3.15rem;
    font-weight: 900;
    color: var(--color-navy);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title span {
    background: linear-gradient(135deg, var(--color-pink-hot), var(--color-brand-primary, #5c93c4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 70px;
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   5. BOTÕES PREMIUM MULTICOLORIDOS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    letter-spacing: 0.01em;
}

/* Botão Amarelo Oficial */
.btn-yellow {
    background-color: var(--color-yellow);
    color: var(--color-navy);
    box-shadow: var(--shadow-button-yellow);
}

.btn-yellow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(246, 197, 21, 0.45);
}

/* Botão Secundário Branco com Borda Marinho */
.btn-outline-navy {
    background-color: var(--color-white);
    border: 2.5px solid var(--color-navy);
    color: var(--color-navy);
    box-shadow: 0 4px 15px rgba(18, 24, 43, 0.03);
}

.btn-outline-navy:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Botão WhatsApp Modernizado */
.btn-whatsapp {
    background-color: #25d366;
    color: var(--color-white);
    box-shadow: var(--shadow-button-whatsapp);
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    background-color: #20ba56;
}

/* --------------------------------------------------------------------------
   6. CABEÇALHO (HEADER MODERNIZADO COM DETALHES DE LOGO)
   -------------------------------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--color-blue-baby-light);
    transition: all var(--transition-normal);
}

header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-premium);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 95px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 2.5px solid var(--color-blue-baby);
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--color-navy);
    letter-spacing: -0.04em;
}

.logo-text span {
    color: var(--color-pink-hot);
    position: relative;
}

/* Detalhe alegre da logo */
.logo-text span::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--color-yellow);
    border-radius: var(--radius-full);
    top: 4px;
    right: -10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--color-navy);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-pink-hot);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background-color: var(--color-yellow);
    border-radius: var(--radius-full);
    transition: width var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 24px;
}

.header-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
}

/* Hambúrguer Menu Mobile */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--color-navy);
}

/* --------------------------------------------------------------------------
   7. SEÇÃO HERO (COMPOSIÇÃO DE IMPACTO VISUAL)
   -------------------------------------------------------------------------- */
.hero {
    padding-top: 200px;
    padding-bottom: 160px;
    background-color: var(--color-clean-bg);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 4.25rem;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    color: var(--color-navy);
}

.hero-title span {
    color: var(--color-pink-hot);
    background: linear-gradient(135deg, var(--color-pink-hot), var(--color-blue-baby));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    margin-bottom: 44px;
    max-width: 580px;
    font-weight: 400;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Mascara Orgânica com Efeito Profundidade */
.hero-image-mask {
    width: 100%;
    max-width: 480px;
    height: 560px;
    overflow: hidden;
    border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
    box-shadow: 0 30px 70px rgba(18, 24, 43, 0.12);
    border: 8px solid var(--color-white);
    background-color: var(--color-blue-baby);
    transition: all var(--transition-slow);
}

.hero-image-mask:hover {
    border-radius: 50% 50% 45% 55% / 45% 55% 50% 50%;
    transform: rotate(1deg) scale(1.01);
}

.hero-image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------------------------------------------------------------------------
   8. SEÇÃO SOBRE A LOJA (EMOCIONAL & SOFISTICADA)
   -------------------------------------------------------------------------- */
.sobre {
    background-color: var(--color-white);
    z-index: 5;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.sobre-mask-container {
    position: relative;
}

.sobre-mask {
    width: 100%;
    height: 520px;
    border-radius: 52% 48% 55% 45% / 45% 55% 45% 55%;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(18, 24, 43, 0.08);
    border: 8px solid var(--color-white);
    background-color: var(--color-pink-pastel);
    transition: all var(--transition-slow);
}

.sobre-mask:hover {
    border-radius: 48% 52% 45% 55% / 55% 45% 55% 45%;
}

.sobre-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sobre-desc-main {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-bottom: 44px;
    line-height: 1.8;
}

/* Mini Cards Premium Sobre com Detalhes Divertidos */
.sobre-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.highlight-item {
    background-color: var(--color-clean-bg);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(169, 217, 247, 0.15);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--color-blue-baby);
}

.highlight-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.highlight-details h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 6px;
}

.highlight-details p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. VITRINE DE PRODUTOS PREMIUM (VITRINE SEM ECOMMERCE)
   -------------------------------------------------------------------------- */
.vitrine-institucional {
    background-color: var(--color-clean-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

/* Cards Arredondados com Sombras Suaves */
.category-card {
    background-color: var(--color-card-bg);
    border-radius: var(--radius-md);
    padding: 44px 32px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Detalhes coloridos da identidade na borda superior */
.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: var(--color-blue-baby);
    transition: height var(--transition-fast);
}

.category-card:nth-child(2)::before { background-color: var(--color-pink-pastel); }
.category-card:nth-child(3)::before { background-color: var(--color-yellow); }
.category-card:nth-child(4)::before { background-color: var(--color-green-soft); }
.category-card:nth-child(5)::before { background-color: var(--color-blue-baby); }
.category-card:nth-child(6)::before { background-color: var(--color-pink-pastel); }
.category-card:nth-child(7)::before { background-color: var(--color-yellow); }
.category-card:nth-child(8)::before { background-color: var(--color-green-soft); }

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium-hover);
    border-color: rgba(169, 217, 247, 0.4);
}

.category-card:hover::before {
    height: 10px;
}

.category-visual {
    width: 104px;
    height: 104px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 28px;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 24px rgba(18, 24, 43, 0.02);
}

.category-card:hover .category-visual {
    transform: scale(1.12) rotate(6deg);
}

.category-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--color-navy);
}

.category-desc {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. SEÇÃO DIFERENCIAIS (MINI CARDS REESTRUTURADOS)
   -------------------------------------------------------------------------- */
.diferenciais {
    background-color: var(--color-white);
}

/* Fundo Azul Claro Suave solicitado */
.diferenciais-container {
    background-color: rgba(169, 217, 247, 0.12);
    border-radius: var(--radius-lg);
    padding: 80px 48px;
    border: 2px solid rgba(169, 217, 247, 0.25);
    box-shadow: var(--shadow-card);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.diferencial-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.diferencial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium-hover);
    border-color: var(--color-pink-pastel);
}

.diferencial-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all var(--transition-normal);
}

.diferencial-card:hover .diferencial-icon {
    transform: scale(1.1) rotate(-8deg);
}

.diferencial-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.3;
}

/* --------------------------------------------------------------------------
   11. GALERIA DA LOJA (ESTILO INSTAGRAM PREMIUM)
   -------------------------------------------------------------------------- */
.galeria {
    background-color: var(--color-white);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.galeria-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-premium);
    border: 4px solid var(--color-white);
    background-color: var(--color-clean-bg);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 24, 43, 0.85); /* Tom marinho com opacidade */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    color: var(--color-white);
    padding: 24px;
    text-align: center;
    transition: opacity var(--transition-normal);
}

.galeria-item:hover img {
    transform: scale(1.12);
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay i {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--color-yellow);
}

.galeria-overlay span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   12. SEÇÃO EMOCIONAL CINEMATOGRÁFICA
   -------------------------------------------------------------------------- */
.emocional {
    position: relative;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

/* Parallax com partículas flutuantes leves simulação via css */
.emocional::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 2;
    pointer-events: none;
}

.emocional-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 24, 43, 0.45); /* Overlay suave e sofisticada */
    z-index: 1;
}

.emocional-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 850px;
    padding: 0 32px;
}

.emocional-text {
    font-family: var(--font-heading);
    font-size: 3.65rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 32px;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.emocional-heart {
    font-size: 2.2rem;
    color: var(--color-pink-hot);
    margin-bottom: 16px;
    animation: heartbeat 1.5s infinite alternate;
    filter: drop-shadow(0 4px 8px rgba(217, 90, 163, 0.4));
}

.emocional-content .btn {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------------------------------------
   13. AVALIAÇÕES MINIMALISTAS E SOFISTICADAS (AIRBNB STYLE)
   -------------------------------------------------------------------------- */
.avaliacoes {
    background-color: var(--color-clean-bg);
}

.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.avaliacao-card {
    background-color: var(--color-white);
    padding: 56px 44px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.avaliacao-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium-hover);
    border-color: rgba(169, 217, 247, 0.25);
}

.avaliacao-stars {
    color: var(--color-yellow);
    margin-bottom: 24px;
    font-size: 1rem;
}

.avaliacao-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 36px;
    font-weight: 400;
}

.avaliacao-autor {
    display: flex;
    align-items: center;
    gap: 16px;
}

.autor-avatar {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background-color: var(--color-blue-baby);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.15rem;
    box-shadow: 0 4px 10px rgba(169, 217, 247, 0.3);
}

.avaliacao-card:nth-child(2) .autor-avatar {
    background-color: var(--color-pink-pastel);
    color: var(--color-pink-hot);
    box-shadow: 0 4px 10px rgba(247, 198, 217, 0.35);
}

.avaliacao-card:nth-child(3) .autor-avatar {
    background-color: var(--color-green-soft-light);
    color: #5b750d;
    box-shadow: 0 4px 10px rgba(184, 217, 75, 0.25);
}

.autor-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.autor-info p {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* --------------------------------------------------------------------------
   14. LOCALIZAÇÃO E CONTATO (MAPA E CARTÕES MODERNOS)
   -------------------------------------------------------------------------- */
.contato {
    background-color: var(--color-white);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: stretch;
}

.contato-map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(18, 24, 43, 0.08);
    height: 520px;
    border: 6px solid var(--color-clean-bg);
}

.contato-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contato-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contato-subtitle {
    font-family: var(--font-heading);
    font-size: 2.15rem;
    font-weight: 900;
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 12px;
}

/* Detalhe de linha de logo */
.contato-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-pink-hot);
    border-radius: var(--radius-full);
}

.contato-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.contato-item {
    display: flex;
    gap: 20px;
    background-color: var(--color-clean-bg);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(169, 217, 247, 0.12);
    transition: all var(--transition-normal);
}

.contato-item:hover {
    border-color: var(--color-blue-baby);
    transform: translateX(4px);
}

.contato-item-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.icon-blue { background-color: var(--color-blue-baby-light); color: #3574a3; }
.icon-pink { background-color: var(--color-pink-pastel-light); color: var(--color-pink-hot); }
.icon-mint { background-color: var(--color-green-soft-light); color: #5b750d; }

.contato-item-details h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.contato-item-details p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.contato-ctas {
    display: flex;
    gap: 16px;
}

.contato-ctas .btn {
    padding: 16px 32px;
    flex: 1;
}

/* --------------------------------------------------------------------------
   15. RODAPÉ (FOOTER PREMIUM AZUL MARINHO #12182B COM ACENTOS DA LOGO)
   ========================================================================== */
footer {
    background-color: var(--color-navy); /* Azul marinho oficial */
    color: var(--color-white);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

/* Blob suave para decorar o rodapé escuro */
footer::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 90, 163, 0.15) 0%, rgba(18,24,43,0) 70%);
    bottom: -150px;
    right: -100px;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.footer-brand .logo-wrapper .logo-text {
    color: var(--color-white);
}

.footer-brand .logo-wrapper .logo-text span {
    color: var(--color-blue-baby);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    margin-bottom: 28px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
}

.social-btn:hover {
    background-color: var(--color-yellow);
    color: var(--color-navy);
    border-color: var(--color-yellow);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-menu a:hover {
    color: var(--color-yellow);
    padding-left: 6px;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-details i {
    color: var(--color-blue-baby);
    margin-right: 8px;
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

/* --------------------------------------------------------------------------
   16. ANIMAÇÕES (KEYFRAMES)
   -------------------------------------------------------------------------- */
@keyframes heartbeat {
    0% { transform: scale(1); }
    100% { transform: scale(1.12); }
}

/* --------------------------------------------------------------------------
   17. RESPONSIVIDADE (MOBILE-FIRST)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .section-padding {
        padding: 90px 0;
    }
    .hero-grid {
        gap: 40px;
    }
    .hero-title {
        font-size: 3.25rem;
    }
    .sobre-grid {
        gap: 40px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .avaliacoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    /* Menu Responsivo Clean e Sofisticado com Identidade Visual */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 2px solid var(--color-blue-baby-light);
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 24px 32px;
        box-shadow: 0 15px 30px rgba(18, 24, 43, 0.08);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        z-index: 999;
    }

    .nav-menu.mobile-active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        padding: 14px 0;
        font-size: 1.08rem;
        border-bottom: 1px dashed rgba(18, 24, 43, 0.06);
    }
    
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    .nav-menu li a::after {
        display: none; /* Remove a linha de baixo do desktop */
    }
    
    .header-btn {
        display: none; /* Oculta botão WhatsApp padrão na barra mobile */
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--color-navy);
        background-color: var(--color-blue-baby-light);
        width: 44px;
        height: 44px;
        border-radius: var(--radius-sm);
        transition: all var(--transition-fast);
        margin-left: auto;
    }
    
    .mobile-menu-btn:hover {
        background-color: var(--color-blue-baby);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.35rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-image-mask {
        height: 440px;
    }
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .sobre-mask {
        height: 400px;
        order: 2;
    }
    .sobre-text {
        padding-left: 0;
    }
    .diferenciais-container {
        padding: 60px 24px;
    }
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    .emocional-text {
        font-size: 2.45rem;
    }
    .avaliacoes-grid {
        grid-template-columns: 1fr;
    }
    .contato-grid {
        grid-template-columns: 1fr;
    }
    .contato-map-wrapper {
        height: 360px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 40px;
        height: 40px;
    }
    .logo-text {
        font-size: 1.55rem;
    }
    .logo-text span::after {
        width: 6px;
        height: 6px;
        top: 3px;
        right: -8px;
    }
    .nav-container {
        height: 80px;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .galeria-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MELHORIAS DE CONVERSÃO, DESTAQUES GERIÁTRICOS E NOVAS SEÇÕES
   ========================================================================== */

/* Badges de Categoria */
.card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 12px;
    font-size: 0.72rem;
    font-weight: 800;
    font-family: var(--font-heading);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.badge-hot {
    background-color: var(--color-pink-hot);
    color: var(--color-white);
}
.badge-blue {
    background-color: #2b70ab;
    color: var(--color-white);
}
.badge-yellow {
    background-color: var(--color-yellow);
    color: var(--color-navy);
}

/* CTAs nos Cards de Produto */
.category-cta {
    margin-top: auto;
    padding-top: 20px;
    width: 100%;
}
.btn-card-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
    background-color: var(--color-clean-bg);
    border: 1.5px solid var(--color-blue-baby);
    color: #3574a3;
    transition: all var(--transition-normal);
}
.btn-card-whatsapp:hover {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(246, 197, 21, 0.2);
}

/* Seção de Entrega (Delivery) */
.entrega {
    background-color: var(--color-white);
    position: relative;
}
.entrega-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}
.entrega-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 8px solid var(--color-white);
    transition: all var(--transition-slow);
}
.entrega-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-premium-hover);
}
.delivery-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.entrega-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.entrega-desc {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}
.entrega-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.entrega-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.02rem;
    color: var(--color-navy);
}
.entrega-list li i {
    font-size: 1.25rem;
    margin-top: 4px;
    flex-shrink: 0;
}
.icon-pink { color: var(--color-pink-hot); }
.icon-blue { color: #3574a3; }
.icon-green { color: #5b750d; }

/* Seção de FAQ */
.faq {
    background-color: var(--color-clean-bg);
    border-top: 2px solid var(--color-blue-baby-light);
    position: relative;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}
.faq-item {
    background-color: var(--color-white);
    padding: 36px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    box-shadow: var(--shadow-premium);
    transition: all var(--transition-normal);
}
.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium-hover);
    border-color: var(--color-blue-baby-light);
}
.faq-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.faq-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}
.faq-item h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-navy);
    margin: 0;
    line-height: 1.3;
}
.faq-content p {
    font-size: 0.98rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Botão Tabela de Preços */
.products-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* Media Queries de Responsividade Adicionais */
@media (max-width: 991px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .entrega-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .entrega-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .entrega-text {
        align-items: center;
    }
    .entrega-list li {
        text-align: left;
    }
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
