/* --- RESET E VARIÁVEIS --- */
:root {
    --primary: #dc2626;
    --primary-hover: #b91c1c;
    --secondary: #fca5a5;
    --dark: #1e293b;
    --text: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --green-whatsapp: #25d366;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

body {
    padding-top: 0;
}

/* --- UTILITÁRIOS --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    overflow: hidden;
}

.hidden {
    display: none !important;
}

/* CLASSE NOVA: Impede quebra de linha (Para o CNPJ) */
.no-wrap {
    white-space: nowrap;
    display: inline-block;
    /* Garante que o bloco se comporte bem */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.section-padding {
    padding: 5rem 0;
}

.bg-white {
    background-color: var(--white);
}

.bg-light {
    background-color: var(--bg-light);
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #002786;
    padding: 0.75rem 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 3rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    flex-direction: column;
    line-height: 1.1;
}

.logo-text span {
    color: var(--primary);
}

/* --- TOP BAR --- */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.875rem;
    display: none;
    position: relative;
    z-index: 999;
}

.address-link:hover {
    text-decoration: underline;
    opacity: 0.9;
    cursor: pointer;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-group,
.social-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.info-group span,
.info-group a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Desktop Menu */
.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
    color: var(--bg-light);
}

.desktop-menu a:hover {
    color: var(--primary);
}

.btn-zap-nav {
    background-color: var(--green-whatsapp);
    color: white !important;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-zap-nav:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
}

.btn-zap-nav i,
.zap-link i {
    font-size: 1.2rem;
    vertical-align: middle;
}

/* BOTÃO MOBILE */
.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: block;
    color: white;
    width: 2rem;
    height: 2rem;
    position: relative;
}

.icon-close {
    display: none;
}

.mobile-menu-btn.open .icon-menu {
    display: none;
}

.mobile-menu-btn.open .icon-close {
    display: block;
    animation: rotateIn 0.3s ease-out;
}

@keyframes rotateIn {
    from {
        transform: rotate(-90deg);
        opacity: 0;
    }

    to {
        transform: rotate(0);
        opacity: 1;
    }
}

@media (min-width: 640px) {
    .top-bar {
        display: block;
    }
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .logo-img {
        height: 3.5rem;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* --- OUTROS ESTILOS --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: 90%;
    max-width: 800px;
    background-color: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 20px 30px;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: 1px solid #eee;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease;
    opacity: 0;
    visibility: hidden;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.cookie-text h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-actions {
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* MENU MOBILE */
.mobile-menu {
    background-color: #002786;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1.5rem;
    position: absolute;
    width: 100%;
    left: 0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.open {
    max-height: 400px;
    opacity: 1;
    padding: 1.5rem 1.5rem;
}

.mobile-link {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.mobile-link:hover,
.mobile-link:active {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-zap-mobile {
    background-color: var(--green-whatsapp);
    color: white !important;
    padding: 0.8rem 1.25rem;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    border: none;
    text-align: center;
}

.btn-zap-mobile:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
    color: white !important;
}

.page-content {
    padding: 4rem 1rem;
    min-height: 60vh;
}

.text-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.text-container h1 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.text-container h2 {
    color: var(--dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.text-container p {
    margin-bottom: 1rem;
    color: var(--text);
    text-align: justify;
}

.text-container ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.text-container li {
    margin-bottom: 0.5rem;
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 45px;
    height: 45px;
    background-color: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.back-to-top:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- SEÇÃO SOBRE --- */
.section-header {
    text-align: center;
    max-width: 768px;
    margin: 0 auto 2rem auto;
}

.sub-title {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.main-title {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.about-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.about-cards-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.card-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: var(--transition);
}

.card-item:hover {
    border-color: var(--primary);
    transform: translateX(5px) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    background-color: var(--white);
}

/* --- IMAGEM --- */
.about-image-side {
    width: 100%;
    position: relative;
    z-index: 1;
    order: -1;
    margin-bottom: 2rem;
}

.about-image-container-inner {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.about-image-side:hover .about-image-container-inner {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.img-responsive {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 0.5rem;
}

.about-image-side::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background-color: #dbeafe;
    border-radius: 1.5rem;
    z-index: -1;
    opacity: 0.6;
    transition: var(--transition);
}

.about-image-side:hover::before {
    top: 25px;
    left: 25px;
}

.hero {
    position: relative;
    padding: 5rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('background-hero.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
   
}

.hero-content {
    text-align: left;
    margin-top: -50px;
}

/* --- MEDIA QUERY DESKTOP --- */
@media (min-width: 1024px) {
    .hero-container {
        flex-direction: row;
        align-items: center;
    }

    .about-content-wrapper {
        flex-direction: row;
        align-items: stretch;
        gap: 4rem;
    }

    .about-cards-column {
        flex: 1;
    }

    .about-image-side {
        flex: 1;
        min-height: 450px;
        order: 0;
        margin-bottom: 0;
    }

    .section-header {
        margin: 0 auto 4rem auto;
    }
}

.hero-content {
    max-width: 600px;
}

.badge {
    background-color: #ffffff;
    color: #000000;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid #fecaca;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--bg-light);
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--bg-light);
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--bg-light);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--dark);
    border: 1px solid #cbd5e1;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background-color: var(--white);
}

.cards-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cards-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-5px);
}

.icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.icon-box.red {
    background: #fee2e2;
    color: var(--primary);
}

.icon-box.orange {
    background: #ffedd5;
    color: #ea580c;
}

.icon-box.blue {
    background: #dbeafe;
    color: #2563eb;
}

.card:hover .icon-box.red {
    background: var(--primary);
    color: white;
}

.card:hover .icon-box.orange {
    background: #ea580c;
    color: white;
}

.card:hover .icon-box.blue {
    background: #2563eb;
    color: white;
}

.card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.legal-info {
    margin-top: 10px;
    padding-top: 10px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

.legal-info a {
    color: var(--text-light);
    text-decoration: underline;
}

.products-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 1rem;
}

@media (min-width: 768px) {
    .products-header {
        flex-direction: row;
    }
}

.link-arrow {
    color: var(--primary);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.link-arrow:hover {
    text-decoration: underline;
}

.cards-grid-auto {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    width: 100%;
}

@media (min-width: 768px) {
    .cards-grid-auto {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.product-card {
    background: var(--white);
    padding: 0;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-top-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    background-color: #f1f5f9;
}

.prod-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.bg-red-light {
    background: #fef2f2;
}

.text-red {
    color: #ef4444;
}

.bg-pink-light {
    background: #fdf2f8;
}

.text-pink {
    color: #ec4899;
}

.bg-blue-light {
    background: #eff6ff;
}

.text-blue {
    color: #3b82f6;
}

.bg-teal-light {
    background: #f0fdfa;
}

.text-teal {
    color: #14b8a6;
}

.bg-orange-light {
    background: #fff7ed;
}

.text-orange {
    color: #f97316;
}

.product-card:hover .prod-icon {
    transform: scale(1.1);
}

.card-text-area {
    padding: 0 0.5rem 1.25rem 0.5rem;
}

.product-card h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
    font-weight: 700;
}

.product-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    padding: 0 2px;
}

@media (min-width: 768px) {
    .card-top-img {
        height: 140px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .prod-icon {
        width: 3.5rem;
        height: 3.5rem;
        margin: -1.75rem auto 1rem auto;
        position: relative;
        z-index: 10;
        border: 4px solid var(--white);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .card-text-area {
        padding: 0 1rem 1.5rem 1rem;
    }

    .product-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mb-large {
    margin-bottom: 2rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    background-color: #fee2e2;
    color: var(--primary);
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: flex;
}

.info-item h4 {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.link-small {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

.text-red {
    color: var(--primary);
    font-weight: 500;
}

.small-text {
    font-size: 0.875rem;
    color: var(--text-light);
}

.social-networks {
    margin-top: 2rem;
}

.social-networks h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-btn.instagram:hover {
    background: #db2777;
    color: white;
}

.social-btn.facebook:hover {
    background: #2563eb;
    color: white;
}

.map-container {
    height: 450px;
    background: #f1f5f9;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.footer {
    background-color: var(--dark);
    color: #cbd5e1;
    padding: 2.5rem 0;
    border-top: 1px solid #334155;
}

/* AJUSTE MOBILE NO FOOTER: Espaço extra embaixo */
@media (max-width: 768px) {
    .footer {
        padding-bottom: 120px;
        /* Espaço para os botões não taparem o texto */
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.logo-text-footer {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--green-whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1ebc57;
}

.whatsapp-float i {
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

i[data-lucide] {
    width: 1.25em;
    height: 1.25em;
}

.prod-icon i[data-lucide] {
    width: 2rem;
    height: 2rem;
}