/* Variáveis */
:root {
    --royal-blue: #1a56db;
    --light-blue: #3b82f6;
    --baby-blue: #93c5fd;
    --white: #ffffff;
    --light-gray: #f3f4f6;
    --dark-gray: #4b5563;
    --yellow: #fbbf24;
    --pink: #ec4899;
    --green: #10b981;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --font-bubbly: 'Bubblegum Sans', cursive;
}

/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Textura de fundo e ícones temáticos */
body {
    font-family: 'Nunito', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-opacity='0.03' fill='%231a56db'%3E%3Cpath d='M50 0C22.4 0 0 22.4 0 50s22.4 50 50 50 50-22.4 50-50S77.6 0 50 0zm0 80c-16.6 0-30-13.4-30-30s13.4-30 30-30 30 13.4 30 30-13.4 30-30 30z'/%3E%3C/g%3E%3C/svg%3E"), 
                  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill-opacity='0.02' fill='%23fbbf24'%3E%3Cpath d='M30 0l30 30-30 30L0 30z'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Bubblegum Sans', cursive;
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/* p {
    margin-bottom: 1rem;
} */

a {
    text-decoration: none;
    color: var(--royal-blue);
    transition: var(--transition);
}

a:hover {
    color: var(--light-blue);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background-color: var(--royal-blue);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: var(--light-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--royal-blue);
    color: var(--royal-blue);
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--yellow);
    border-radius: 2px;
}

.section-header p {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

/* Divisórias entre seções */
section {
    position: relative;
    /* padding: 100px 0; */
    margin-bottom: 30px;
}

/* Divisores ondulados (waves) */
section:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V120H0V95.8C57.1,118.92,136.33,111.31,213.09,91.94Z' fill='%231a56db' opacity='0.15'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z' fill='%231a56db' opacity='0.15'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    z-index: 1;
}

section:last-of-type:after {
    display: none;
}

/* Header */
header {
    background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 100%);
    box-shadow: 0 2px 12px rgba(26, 86, 219, 0.08);
    border-bottom: 3px solid rgba(26, 86, 219, 0.12);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* padding: 0.8rem 0; */
    backdrop-filter: saturate(1.2) blur(3px);
}

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

.logo img {
    height: 80px;
    border-radius: 8px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--royal-blue);
    transition: var(--transition);
    border-radius: 2px;
}

nav ul li a:hover:after {
    width: 100%;
}

nav ul li a {
    color: var(--royal-blue);
}

nav ul li a:hover {
    color: var(--light-blue);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--royal-blue);
}

/* Hero Section */
.hero {
    /* padding: 10rem 0 6rem; */
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231a56db' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

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

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    margin: 0 0 1rem 0;
    line-height: 1.15;
    color: #2c3e50;
}

.hero-content h1 span {
    color: #2c3e50;
    display: block;
}

.hero-content p {
    font-size: 1.2rem;
    /* margin-bottom: 2rem; */
}

.buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    max-width: 110%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

/* Slideshow em tela cheia no Hero */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 82vh;
    display: flex;
    align-items: center;
    /*margin-top: 95px;*/ /* compensa header fixo */
}
.hero .container {
    position: relative;
    z-index: 2;
    /* padding-top: 3rem;
    padding-bottom: 3rem; */
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s ease;
}
.hero-bg .hero-blur {
    filter: blur(12px) brightness(0.92);
    transform: scale(1.06);
}
#hero-slideshow {
    object-fit: contain !important;
    object-position: center center;
}
.hero-bg .hero-blur {
    object-position: center center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.28) 100%);
}

/* Melhorar legibilidade do texto e visibilidade dos botões no hero */
.hero-content h1, .hero-content p {
    /* text-shadow: 0 2px 6px rgba(0,0,0,0.55), 0 0 6px rgba(255,255,255,0.35); */
}
/* Escopo: branco apenas dentro do .hero */
.hero .hero-content p {
    color: #ffffff;
}
/* Escopo: texto escuro na seção principal */
.container-section-1 .hero-content p {
    color: #2c3e50;
    margin: 0.5rem 0 1rem;
}
.hero-content h1 span {
    /* text-shadow: 0 2px 6px rgba(0,0,0,0.6), 0 0 6px rgba(255,255,255,0.45); */
}
.hero .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.95);
    border-width: 2px;
    background-color: rgba(0,0,0,0.40);
}
.hero .btn-outline:hover {
    background-color: rgba(0,0,0,0.60);
    border-color: #fff;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating-clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.cloud {
    position: absolute;
    background-color: var(--white);
    border-radius: 50%;
    opacity: 0.8;
}

.cloud-1 {
    width: 80px;
    height: 40px;
    top: 20%;
    left: 10%;
    animation: cloud-move 15s linear infinite;
}

.cloud-2 {
    width: 60px;
    height: 30px;
    top: 40%;
    right: 15%;
    animation: cloud-move 20s linear infinite;
}

.cloud-3 {
    width: 100px;
    height: 50px;
    bottom: 20%;
    left: 20%;
    animation: cloud-move 18s linear infinite reverse;
}

@keyframes cloud-move {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(30px);
    }
    100% {
        transform: translateX(0);
    }
}

/* Catálogo de Produtos com Abas */
.catalogo-tabs {
    margin-top: 2rem;
}

.tabs-container {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: var(--light-gray);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-bubbly);
    color: var(--dark-gray);
    min-width: 110px;
}

.tab-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
    color: var(--royal-blue);
}

.tab-btn span {
    font-size: 1rem;
    font-weight: 700;
}

.tab-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.tab-btn.active {
    background-color: var(--royal-blue);
    color: var(--white);
}

.tab-btn.active i {
    color: var(--white);
}

.tab-content {
    position: relative;
    min-height: 300px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-pane.active {
    display: block;
}

/* Grupos de categoria (Infantil, Geriátrica, Higiene) */
.categoria-grupo {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.categoria-grupo h4 {
    color: var(--royal-blue);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

/* Lista de marcas como chips */
.marca-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.marca-list li {
    background: var(--baby-blue);
    color: var(--royal-blue);
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid var(--light-blue);
}

/* Ícones dentro da imagem do produto (para Higiene) */
.produto-img i {
    font-size: 2.2rem;
    color: var(--royal-blue);
}

@media (max-width: 768px) {
    .categoria-grupo {
        padding: 1.2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .marca-list {
        justify-content: center;
    }
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    padding-bottom: 75px;
}

.produto-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.4rem; /* aumenta área do retângulo */
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--light-gray);
}

.produto-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--royal-blue);
}

.produto-img {
    margin-bottom: 1.8rem; /* pequeno respiro extra antes do título */
    overflow: hidden;
    border-radius: var(--border-radius);
    height: 190px; /* aumenta a área reservada da imagem */
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-img img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain; /* garante que imagens com proporções diferentes não distorçam */
    transition: var(--transition);
}

.produto-item:hover .produto-img img {
    transform: scale(1.05);
}

.produto-item h4 {
    color: var(--royal-blue);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    line-height: 1.3;
    min-height: 1.6rem; /* reserva espaço uniforme para alinhar títulos */
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.produto-item.animated {
    animation: fadeIn 0.5s ease forwards;
}

.produto-item p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.4;
    min-height: 1.6rem; /* reserva espaço para alinhar descrições no mesmo nível */
}

.btn-produto {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--baby-blue);
    color: var(--royal-blue);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-produto:hover {
    background-color: var(--royal-blue);
    color: var(--white);
}

/* Responsividade para o catálogo */
@media (max-width: 768px) {
    .tabs-container {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1rem;
        min-width: 100px;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .tabs-container {
        flex-wrap: wrap;
        overflow: visible;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .tab-btn {
        min-width: 95px;
        padding: 0.6rem 0.8rem;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
}

/* Botão de WhatsApp Fixo */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 34px;
    margin-right: 8px;
}

.whatsapp-btn span {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-bubbly);
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    background-color: #20ba5a;
    color: #D4D4D4;
}

@media (max-width: 576px) {
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        width: 60px;
        height: 72px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .whatsapp-btn i {
        font-size: 50px;
        margin-right: 0;
    }
}

/* Destaque Section */
.destaque {
    padding: 5rem 0;
    background-color: var(--royal-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.destaque:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.destaque h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.destaque h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--yellow);
    border-radius: 2px;
}

.destaque-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.destaque-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.destaque-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.destaque-item h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.destaque-item p {
    color: rgba(255, 255, 255, 0.8);
}

.destaque-icon {
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.btn-saiba-mais {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-saiba-mais:hover {
    background-color: var(--white);
    color: var(--royal-blue);
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--yellow);
    color: var(--dark-gray);
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    box-shadow: var(--shadow);
}

/* Sobre Section */
.sobre {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

/* Estilo para a seção Sobre Nós */
.sobre-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.sobre-text {
    flex: 1;
    max-width: 800px;
}

.sobre-ilustracao {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.valores {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.valor {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 0 calc(25% - 1.5rem);
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.valor-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.valor:nth-child(1) .valor-icon {
    color: #e53e3e;
}

.valor:nth-child(2) .valor-icon {
    color: #3182ce;
}

.valor:nth-child(3) .valor-icon {
    color: #ecc94b;
}

.valor:nth-child(4) .valor-icon {
    color: #38a169;
}

/* Contato Section */
.contato {
    padding: 5rem 0;
    background-color: var(--white);
}

/* Seção de Localização */
.localizacao {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.mapa-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.mapa-container iframe {
    display: block;
}

/* Grid de mapas (Matriz e Filial) */
.mapas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.map-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1rem;
}

.map-card h3 {
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.map-actions {
    margin-top: 1rem;
}

.contato-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.contato-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    width: 100%;
}

.info-group {
    width: 100%;
    margin-bottom: 25px;
}

.info-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.info-item {
    display: flex;
    /* align-items: center; */
    margin-bottom: 20px;
    text-align: left;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--royal-blue);
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    background-color: var(--baby-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@media (max-width: 576px) { 
    .info-item-icon-free i {
        margin-right: 0px;
        margin-bottom: 10px;
    } 
}

.info-item a {
    color: var(--royal-blue);
    font-weight: 600;
    transition: var(--transition);
}

.info-item a.contact-highlight {
    /* font-size: 1.1rem;
    font-weight: 700; */
}

.info-item a:hover {
    color: var(--light-blue);
    text-decoration: underline;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.social-media a {
    width: 50px;
    height: 50px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--royal-blue);
    font-size: 1.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-media a:hover {
    background-color: var(--royal-blue);
    color: var(--white);
    transform: translateY(-5px);
}

.contato-form {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-blue);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--royal-blue);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 80px;
    border-radius: 8px;
    background-color: var(--white);
    padding: 5px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-newsletter h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: 'Nunito', sans-serif;
}

.footer-newsletter button {
    background-color: var(--yellow);
    color: var(--dark-gray);
    border: none;
    padding: 0 1.5rem;
    font-weight: 700;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.developer-credits {
    position: static;
    right: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        /* margin-bottom: 3rem; */
    }

    .buttons {
        justify-content: center;
    }

    .contato-container {
        grid-template-columns: 1fr;
    }

    .contato-info {
        order: 2;
    }

    .contato-form {
        order: 1;
        margin-bottom: 3rem;
    }
    
    .sobre-content {
        flex-direction: column;
    }
    
    .sobre-ilustracao {
        margin-top: 2rem;
    }
}

.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 71px; /* Era 80px */
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        transition: var(--transition);
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
    }

    nav ul li {
        margin: 1rem 0;
    }

    .valores {
        flex-direction: column;
        gap: 2rem;
    }
    
    .categorias {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .balloon {
        width: 25px;
        height: 35px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
    }
    .hero-image img {
        animation: none;
        transform: translateX(-10px);
    }
    .mobile-break {
        display: inline;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .footer-newsletter form {
        flex-direction: column;
    }

    .footer-newsletter input {
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }

    .footer-newsletter button {
        border-radius: var(--border-radius);
        padding: 0.8rem;
    }
    
    .categorias {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .destaque-items {
        grid-template-columns: 1fr;
    }
    
    .hero-image img {
        animation: none;
        transform: translateX(-12px);
    }
    .whatsapp-btn {
        padding: 10px 15px;
        font-size: 14px;
        width: auto;
    }
    
    .contato-info p {
        word-break: break-word;
        text-align: center;
        font-size: 14px;
    }
    
    .contato-info .info-item {
        display: flex;
        flex-direction: column;
        /* align-items: center; */
        text-align: center;
        margin-bottom: 15px;
        margin-left: 8%;
    }
    
    .contato-info .info-item i {
        /* margin-bottom: 8px; //Isso estava desalinhando icones do texto ao lado, em contatos, na visão mobile*/
        font-size: 24px;
    }    
    
    .contato-info .info-group {
        margin-bottom: 25px;
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .contato-info .info-title {
        margin-bottom: 15px;
        font-size: 16px;
        text-align: center;
    }
    
    .contato-info a.contact-highlight {
        /* display: inline-block;
        padding: 5px 0;
        font-size: 14px; */
    }
    
    .social-media {
        justify-content: center;
        margin-top: 15px;
    }
    
    .mobile-break {
        display: inline;
    }
    
    .developer-credits {
        position: static;
        display: block;
        margin-top: 10px;
        text-align: center;
        width: 100%;
    }
    
    .footer-bottom p {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contato-info {
        padding: 0.25rem; /* ou 16px, 20px, etc. */
    }
}

.hero {
    /* padding-top: 10rem; */
}
    
.logo img {
    height: 90px;
}

@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
}

/* Elementos Lúdicos */
.balloon {
    position: absolute;
    width: 30px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    animation: float-balloon 15s ease-in-out infinite;
    z-index: 1;
}

.balloon:before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 3px 3px;
}

.star {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--yellow);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: twinkle 3s ease-in-out infinite;
    z-index: 1;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-balloon {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(20deg);
        opacity: 0;
    }
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* Elementos infantis adicionais */
.cloud {
    position: absolute;
    background-color: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow);
    opacity: 0.9;
}

.cloud:before,
.cloud:after {
    content: '';
    position: absolute;
    background-color: var(--white);
    border-radius: 50%;
}

.cloud:before {
    width: 50%;
    height: 100%;
    top: -50%;
    left: 25%;
}

.cloud:after {
    width: 30%;
    height: 60%;
    top: -30%;
    right: 25%;
}

/* Efeitos de confete/estrelinhas */
.hero::before,
.produtos::before,
.sobre::before,
.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(26, 86, 219, 0.1) 5px, transparent 6px),
        radial-gradient(circle at 40% 70%, rgba(251, 191, 36, 0.1) 4px, transparent 5px),
        radial-gradient(circle at 70% 20%, rgba(26, 86, 219, 0.1) 6px, transparent 7px),
        radial-gradient(circle at 90% 40%, rgba(251, 191, 36, 0.1) 3px, transparent 4px),
        radial-gradient(circle at 30% 80%, rgba(26, 86, 219, 0.1) 5px, transparent 6px),
        radial-gradient(circle at 60% 10%, rgba(251, 191, 36, 0.1) 4px, transparent 5px);
    background-size: 300px 300px;
    animation: confetti-animation 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes confetti-animation {
    0% { background-position: 0 0; }
    100% { background-position: 300px 300px; }
}

.info-group .info-item a {
    text-decoration: none;
    align-items: center;
}

/* Estilo do "botão" unificado de rede social */
.elegant-social-button {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
    width: fit-content;
    margin: 0; /* centraliza dentro do .info-item # Não está mais centrlizado*/
}

.elegant-social-button:hover {
    transform: translateY(-3px);
}

/* Estilo do texto abaixo do ícone */
.elegant-social-button p {
    transition: color 0.2s ease;
    font-weight: 700;
    font-size: 1.1rem;
    padding-inline: 5px;
    margin-left: -5px;
}

/* Herdar o estilo do ícone do seu CSS existente, mas garantir alinhamento */
.info-item .social-media {
    margin: 0;
    justify-content: left;
}

/* Hover harmônico: aplicar efeito no ícone E no texto */
.elegant-social-button:hover .social-media a,
.elegant-social-button:hover .social-media i {
    transform: none; /* evita conflito com seu transform */
}

/* Hover harmônico: aplicar efeito no ícone E no texto */
.elegant-social-button[href*="instagram"]:hover .social-media a,
.elegant-social-button[href*="instagram"]:hover .social-media i {
    transform: none; /* evita conflito com seu transform */
    color: #ffffff;
    background-color: #e1306c;
}

/* Hover harmônico: aplicar efeito no ícone E no texto */
.elegant-social-button[href*="wa.me"]:hover .social-media a,
.elegant-social-button[href*="wa.me"]:hover .social-media i {
    transform: none; /* evita conflito com seu transform */
    color: #ffffff;
    background-color: #25D366;
}

/* Hover harmônico: aplicar efeito no ícone E no texto */
.elegant-social-button[href*="facebook"]:hover .social-media a,
.elegant-social-button[href*="facebook"]:hover .social-media i {
    transform: none; /* evita conflito com seu transform */
    color: #ffffff;
    background-color: #0866ff;
}

/* Cores específicas no hover (opcional, mas elegante) */
.elegant-social-button[href*="instagram"]:hover p {
    color: #ffffff;
    background-color: #e1306c;
    border-radius: 12px;
}

.elegant-social-button[href*="wa.me"]:hover p {
    color: #ffffff;
    background-color: #25D366;
    border-radius: 12px;

}

.elegant-social-button[href*="facebook"]:hover p {
    color: #ffffff;
    background-color: #0866ff;
    border-radius: 12px;

}

/* Se quiser que o texto também "suba" levemente junto com o ícone */
.elegant-social-button:hover p {
    transform: translateY(-3px);
    color: #ffffff;
    background-color: #8ca8e6; /*royal: #1a56db*/
    border-radius: 12px;
}
.hero::before,
.hero::after {
    display: none; /* remove faixas decorativas da seção hero */
}

.endereco-completo {
    width: 100%;
    /* margin-top: 1.25rem; */
    display: flex;
}

.endereco-part1 {
    width: 100%;
    padding-right: 15px;
    border-right-style: solid;
    border-width: 0.0005rem;
}

.endereco-part2 {
    width: 100%;
    padding-left: 15px;
    border-left-style: solid;
    border-width: 0.0005rem;
}

.titulo-endereco {
    font-size: 1.05em !important;
    font-weight: 900;
}

.observacao-endereco {
    margin-left: 56px;
    justify-items: center;
}

@media(max-width: 576px) {
    .endereco-completo {
        margin-top: 0px;/*0.5rem;*/
    }

    /* .endereco-part1, .endereco-part2 {
        border: none;
        padding: 0;
    } */

    .observacao-endereco {
        margin-left: 0;
    }
}

@media(max-width: 768px) {
    /* .endereco-completo {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    } */

    .endereco-part1, .endereco-part2 {
        justify-items: center;
    }

    /* .observacao-endereco {
        margin-left: 0;
    } */
}

.container-section-1 {
    display: flex;
    flex-direction: row;
    column-gap: 2%;
    align-items: center;
    width: 100%;
    min-height: 60vh;
    height: auto;
    margin-top: 70px;
    overflow: visible;
    padding: 1.2%;
    position: relative;
    background:
        radial-gradient(1200px 600px at -10% -15%, rgba(153,183,239,0.28), rgba(153,183,239,0) 62%),
        radial-gradient(1000px 700px at 110% 10%, rgba(26,86,219,0.12), rgba(26,86,219,0) 60%),
        radial-gradient(600px 800px at 50% 100%, rgba(134,169,230,0.22), rgba(134,169,230,0) 64%),
        linear-gradient(180deg, rgba(245,248,252,1), rgba(245,248,252,1));
}

.container-section-1::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        repeating-linear-gradient(135deg, rgba(26,86,219,0.08) 0px, rgba(26,86,219,0.08) 2px, transparent 2px, transparent 48px),
        linear-gradient(180deg, rgba(153,183,239,0.10), rgba(134,169,230,0.08));
    background-blend-mode: soft-light;
    pointer-events: none;
}

.container-section-1 > * {
    position: relative;
    z-index: 1;
}

.sub-container-titulo {
    background: linear-gradient(180deg, rgba(155,189,245,0.22), rgba(111,149,232,0.18));
    border-radius: 18px;
    align-items: center;
    width: 37%;
    padding: 16px;
    box-shadow: 0 6px 18px rgba(26,86,219,0.10);
    backdrop-filter: blur(2px);
}

.sub-container-fotos {
     display: flex;
     flex-direction: row;
     width: 60%;
     justify-content: center;
     align-items: center;
     border-radius: 18px;
     overflow: hidden;
     background: linear-gradient(180deg, #9bbdf5 0%, #86a9e6 100%);
     box-shadow: 0 10px 30px rgba(0,0,0,0.10);
     aspect-ratio: 4 / 3;
     max-height: 70vh;
     position: relative;
 }
  .sub-container-fotos #hero-slideshow {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     display: block;
 }
  .sub-container-fotos img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
      border-radius: 12px;
  }
  /* Foco especial para a imagem da fachada: recorte para destacar porta de vidro e logo */
  .sub-container-fotos img.focus-fachada {
      object-fit: cover;
      /* Ajuste horizontal privilegiando área da porta e logo */
      object-position: 86% center;
  }
  .sheet-anim {
     animation: sheetSlideUp 1100ms ease-in-out forwards;
     filter: drop-shadow(0 12px 18px rgba(0,0,0,0.18));
 }
  @keyframes sheetSlideUp {
     0% { transform: translateY(0); opacity: 1; }
     70% { transform: translateY(-95%); opacity: 0.95; }
     100% { transform: translateY(-110%); opacity: 0; }
 }

@media(max-width: 768px) {
    .container-section-1 {
        margin-top: 65px;    
    }  
}

@media(max-width: 750px) {
    .container-section-1 {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        min-height: auto;
        height: auto;
    }

    .sub-container-fotos {
        width: 100%;
        aspect-ratio: 4 / 3;
        max-height: 70vh;
        height: auto;
        overflow: hidden;
        border-radius: 18px;
        padding: 0; /* remove a moldura excessiva para a foto ocupar mais */
        background: linear-gradient(180deg, #9bbdf5 0%, #86a9e6 100%);
        box-shadow: 0 8px 18px rgba(26,86,219,0.12);
    }

    .sub-container-fotos #hero-slideshow {
        width: 100%;
        height: auto;
        max-height: 92vh;
        object-fit: cover;
        object-position: center;
    }

    .sub-container-fotos img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: 0;
        border-radius: 12px;
    }
    /* Ajuste fino para mobile: leve deslocamento extra no foco da fachada */
    .sub-container-fotos img.focus-fachada {
        object-fit: cover;
        object-position: 88% center;
    }

    /* Menos zoom para a foto de mamadeira: preservar composição sem distorcer */
    .sub-container-fotos img.focus-mamadeira {
        object-fit: cover;
        object-position: center;
    }

    .sub-container-titulo {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 10px;
        background: transparent;
        box-shadow: none;
    }

    .sub-container-titulo .container .hero-content {
        display: flex;
        align-items: center;
    }
}

.container-section-1 .hero-content {
    padding-right: 0;
}