/* ==========================================================================
   VARIÁVEIS DE IDENTIDADE CORPORATIVA E CONFIGURAÇÕES GERAIS
   ========================================================================== */
:root {
    --primary-blue: #0077c5;
    --accent-green: #9ad144;
    --text-dark: #2d2d2d;
    --text-grey: #707275;
    --light-grey: #f4f5f6;
    --white: #ffffff;
    --navy-bg: #0f172a;

    /* Cores adicionais da seção de produtos */
    --orange-line: #d97706;
    --cream-bg: #fffbeb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.5;
}

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

/* Utilitários Globais de Cores */
.text-green { color: var(--accent-green); }
.text-blue { color: var(--primary-blue); }
.text-white { color: var(--white); }
.text-dark { color: var(--text-dark); }
.text-center { text-align: center; }

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.navbar {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

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

.logo img {
    height: 55px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding-bottom: 5px;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
}

.btn-nav-cta {
    background-color: var(--navy-bg);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 13px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, background-color 0.3s;
}

.btn-nav-cta:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    padding: 70px 0;
    background-color: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}

.hero-text h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.btn {
    text-decoration: none;
    padding: 16px 30px;
    font-weight: 700;
    font-size: 13px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-green {
    background-color: var(--accent-green);
    color: var(--white);
}

.btn-green:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

.hero-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 8px;
}

/* ==========================================================================
   HERO BADGES
   ========================================================================== */
.hero-badges {
    background-color: var(--light-grey);
    padding: 30px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

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

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.icon-blue { background-color: var(--primary-blue); }
.icon-green { background-color: var(--accent-green); }
.icon-dark { background-color: var(--text-dark); }

.badge-info h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 3px;
}

.badge-info p {
    font-size: 12px;
    color: var(--text-grey);
}

/* ==========================================================================
   COMPONENTE: SECTIONS HEADER
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 15px;
    color: var(--text-grey);
}

/* ==========================================================================
   NOSSOS SERVIÇOS
   ========================================================================== */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: visible;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.card-img-wrap {
    position: relative;
    height: 150px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-floating-icon {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 3px solid var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.card-floating-icon.icon-green { background-color: var(--accent-green); }
.card-floating-icon.icon-dark { background-color: var(--text-dark); }
.card-floating-icon.icon-grey { background-color: var(--text-grey); }
.card-floating-icon.icon-blue-light { background-color: #38bdf8; }

.card-body {
    padding: 35px 20px 25px 20px;
}

.card-body h3 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    min-height: 34px;
}

.card-body p {
    font-size: 12px;
    color: var(--text-grey);
    line-height: 1.5;
}

/* ==========================================================================
   LINHAS DE PRODUTOS
   ========================================================================== */
.products-line-section {
    padding: 60px 0 80px 0;
    background-color: #fafafa;
}

.product-lines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.line-card {
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    min-height: 340px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.line-content {
    padding: 30px;
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.line-img {
    flex: 0.8;
}

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

.line-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
    line-height: 1.2;
}

.line-card .subtitle {
    font-size: 12px;
    color: var(--text-grey);
    margin-bottom: 25px;
}

.line-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: auto;
}

.line-list li {
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-line-more {
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    border-bottom: 2px solid;
    align-self: flex-start;
    padding-bottom: 2px;
    margin-top: 20px;
}

/* Variações de Temas dos Cards de Linhas */
.card-dark-theme {
    background-color: var(--text-dark);
    color: var(--white);
}
.card-dark-theme .subtitle { color: #a1a1aa; }

.card-light-theme { background-color: var(--white); }
.border-green { border: 2px solid var(--accent-green); }
.bg-cream { background-color: var(--cream-bg); }
.text-orange-dark { color: var(--orange-line); }
.text-orange { color: #f59e0b; }
.border-orange { border-bottom-color: var(--orange-line); }

/* ==========================================================================
   CRIE SUA MARCA PRÓPRIA
   ========================================================================== */
.brand-creation-section {
    padding: 90px 0;
    background-color: var(--white);
}

.brand-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
}

.brand-left h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.brand-left p {
    font-size: 15px;
    color: var(--text-grey);
    margin-bottom: 35px;
}

.btn-whatsapp-cta {
    background-color: var(--accent-green);
    color: var(--white);
    text-decoration: none;
    padding: 16px 28px;
    font-weight: 700;
    font-size: 13px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, filter 0.2s;
}

.btn-whatsapp-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

.brand-center-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
}

.benefit-row {
    display: flex;
    gap: 15px;
}

.benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-info h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.benefit-info p {
    font-size: 12px;
    color: var(--text-grey);
    line-height: 1.4;
}

.brand-right-image img {
    width: 100%;
    border-radius: 8px;
}

/* ==========================================================================
   NOSSOS DIFERENCIAIS
   ========================================================================== */
.differentials-section {
    background-color: var(--navy-bg);
    padding: 70px 0;
}

.differentials-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.diff-item {
    text-align: center;
    color: var(--white);
    flex: 1;
    padding: 0 10px;
}

.diff-item i {
    font-size: 32px;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.diff-item h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.diff-item p {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.4;
}

/* ==========================================================================
   BOTTOM CTA BANNER
   ========================================================================== */
.bottom-cta-section {
    padding: 80px 0;
    background-color: var(--white);
}

.cta-banner-grid {
    background-color: var(--light-grey);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    overflow: hidden;
    align-items: center;
}

.cta-banner-left img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: cover;
}

.cta-banner-right {
    padding: 40px 60px;
}

.cta-banner-right h3 {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-banner-right p {
    font-size: 15px;
    color: var(--text-grey);
    margin-bottom: 25px;
}

.btn-consultant-cta {
    background-color: var(--accent-green);
    color: var(--white);
    text-decoration: none;
    padding: 16px 30px;
    font-weight: 700;
    font-size: 13px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.btn-consultant-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(154, 209, 68, 0.3);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--white);
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 70px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 0.7fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-grey);
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--text-grey);
    color: var(--text-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-grey);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary-blue);
}

.contact-list li {
    font-size: 13px;
    color: var(--text-grey);
    display: flex;
    gap: 10px;
    line-height: 1.4;
}

.contact-list li i {
    color: var(--primary-blue);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 25px 0;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-grey);
}

.footer-policies a {
    color: var(--text-grey);
    text-decoration: none;
}

/* Botão Flutuante do WhatsApp */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.2s;
}

.whatsapp-floating:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVIDADE)
   ========================================================================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .product-lines-grid { grid-template-columns: 1fr; }
    .brand-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    .badges-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .differentials-grid { grid-template-columns: 1fr; gap: 35px; }
    .cta-banner-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ADICIONAL COMPLEMENTAR PARA EXTREMA CORREÇÃO EM DISPOSITIVOS MÓVEIS (CELULARES)
   ========================================================================== */
@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .line-card {
        flex-direction: column !important;
    }
    .line-img {
        height: 200px;
    }
    .cta-banner-right {
        padding: 30px 20px !important;
    }
    .cta-banner-right h3 {
        font-size: 20px !important;
    }
    .bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .footer-policies {
        margin-top: 10px;
    }
}