/* ==========================================================================
   IDE UNIFORMES ESPORTIVOS - SISTEMA DE DESIGN & ESTILOS (style.css)
   Localização: Matinhos-PR
   Cores Oficiais: Azul Marinho, Amarelo e Branco (Sem verde, rosa, roxo e lilás)
   Estilo: Esportivo, moderno, criativo e premium.
   Tipografia: Outfit (Títulos) & Inter (Corpo) - Balanceamento de pesos leve
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS DE DESIGN (VARIÁVEIS CSS)
   -------------------------------------------------------------------------- */
:root {
    /* Cores Primárias e Secundárias */
    --navy-blue-deep: #060b18;      /* Fundo principal super escuro */
    --navy-blue-medium: #0c152c;    /* Fundo de seções e headers */
    --navy-blue-light: #162447;     /* Elementos secundários, bordas, inputs */
    --navy-blue-accent: #1f3263;    /* Hover de elementos marinho */
    
    --yellow-accent: #ffd700;       /* Amarelo esportivo vibrante */
    --yellow-hover: #e6c200;        /* Amarelo para hover/foco */
    
    --white-pure: #ffffff;
    --white-soft: #f8fafc;          /* Cinza claro para contraste de seções */
    --white-muted: #e2e8f0;         /* Texto e bordas cinza claro */
    
    --gray-text-dark: #334155;      /* Texto principal em fundo claro (mais suave que preto puro) */
    --gray-text-muted: #64748b;     /* Texto secundário em fundo claro */
    --gray-text-light: #94a3b8;     /* Texto de suporte em fundo escuro */

    /* Fontes */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Espaçamentos e Layout */
    --container-max-width: 1200px;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-yellow: 0 4px 15px rgba(255, 215, 0, 0.25);

    /* Transições */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.15s ease-out;
}

/* --------------------------------------------------------------------------
   2. RESET & REGRAS GERAIS
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;               /* Peso padrão do corpo: Leve para melhor leitura */
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-text-dark);
    background-color: var(--white-pure);
    overflow-x: hidden;
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
}

strong {
    font-weight: 600;               /* Strong sem peso exagerado */
}

/* --------------------------------------------------------------------------
   3. ESTRUTURAS DE LAYOUT E UTILITÁRIOS
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--white-soft);
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2-cols {
    grid-template-columns: 1fr;
}

.grid-3-cols {
    grid-template-columns: 1fr;
}

.grid-4-cols {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .grid-3-cols {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-4-cols {
        grid-template-columns: repeat(4, 1fr);
    }
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.text-white {
    color: var(--white-pure);
}

.text-navy {
    color: var(--navy-blue-medium);
}

.margin-top-sm { margin-top: 15px; }
.margin-top-md { margin-top: 30px; }
.margin-top-lg { margin-top: 50px; }
.padding-md { padding: 30px; }
.align-center { align-items: center; }
.gap-lg { gap: 40px; }
.font-bold { font-weight: 600; }

/* --------------------------------------------------------------------------
   4. COMPONENTES: BOTÕES E EMBLEMAS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    font-family: var(--font-headings);
    font-weight: 600;               /* Botões com peso equilibrado */
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    gap: 10px;
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.78rem;
}

.btn-lg {
    padding: 15px 32px;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
}

.btn-yellow {
    background-color: var(--yellow-accent);
    color: var(--navy-blue-deep);
    box-shadow: var(--shadow-sm);
}

.btn-yellow:hover {
    background-color: var(--yellow-hover);
    box-shadow: var(--shadow-yellow);
    transform: translateY(-2px);
}

.btn-navy {
    background-color: var(--navy-blue-medium);
    color: var(--white-pure);
}

.btn-navy:hover {
    background-color: var(--navy-blue-accent);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white-pure);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background-color: var(--white-pure);
    color: var(--navy-blue-deep);
    border-color: var(--white-pure);
    transform: translateY(-2px);
}

.btn-outline-navy {
    background-color: transparent;
    color: var(--navy-blue-medium);
    border: 2px solid rgba(12, 21, 44, 0.3);
}

.btn-outline-navy:hover {
    background-color: var(--navy-blue-medium);
    color: var(--white-pure);
    border-color: var(--navy-blue-medium);
    transform: translateY(-2px);
}

.btn-grow {
    position: relative;
    overflow: hidden;
}

.btn-grow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
}

.btn-grow:hover::after {
    width: 300px;
    height: 300px;
}

.btn-icon-fa {
    font-size: 1.05rem;
}

.btn-arrow-fa {
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.btn:hover .btn-arrow-fa {
    transform: translateX(4px);
}

/* Títulos de Seções */
.section-title-area {
    margin-bottom: 40px;
}

.section-subtitle {
    font-family: var(--font-headings);
    color: var(--yellow-accent);
    font-weight: 600;               /* Subtítulo marcante mas não exageradamente pesado */
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: var(--yellow-accent);
    border-radius: 50%;
}

.section-title {
    font-family: var(--font-headings);
    font-weight: 700;               /* Títulos principais em 700 (bold clássico) em vez de 900 */
    font-size: 2.1rem;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-title-desc {
    color: var(--gray-text-muted);
    font-weight: 300;               /* Descrições com peso mais leve */
    font-size: 1rem;
    max-width: 600px;
    margin: 15px auto 0;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* --------------------------------------------------------------------------
   5. CABEÇALHO & MENU DE NAVEGAÇÃO (HEADER)
   -------------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(6, 11, 24, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(6, 11, 24, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 60px;
}

/* Logo */
.logo-img-header {
    height: 46px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-img-header {
    height: 36px;
}

.footer-logo .logo-img-header {
    height: 52px;
}

.logo-icon-fa {
    font-size: 1.5rem;
    color: var(--yellow-accent);
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-brand {
    font-family: var(--font-headings);
    font-weight: 700;               /* Peso do logo reduzido de 900 para 700 */
    font-size: 1.4rem;
    color: var(--white-pure);
    letter-spacing: 1.5px;
}

.logo-sub {
    font-family: var(--font-headings);
    font-weight: 500;               /* Peso do sub-logo reduzido de 700 para 500 */
    font-size: 0.6rem;
    color: var(--yellow-accent);
    letter-spacing: 2px;
}

/* Desktop Nav */
.desktop-nav {
    display: none;
}

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

.nav-link {
    font-family: var(--font-headings);
    font-weight: 500;               /* Peso de navegação em 500 (Medium) em vez de Bold */
    font-size: 0.9rem;
    color: var(--white-muted);
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--yellow-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--yellow-accent);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-cta {
    display: block;
}

/* Hamburger */
/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1010;
    transition: var(--transition-smooth);
    padding: 0;
    cursor: pointer;
}

.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--yellow-accent);
}

.mobile-menu-toggle.open {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--yellow-accent);
}

.hamburger-bar {
    width: 18px;
    height: 2px;
    background-color: var(--white-pure);
    transition: var(--transition-smooth);
    display: block;
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(6, 11, 24, 0.95), rgba(12, 21, 44, 0.98));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1005;
    padding: 100px 30px 40px;
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    align-items: center;
    text-align: center;
}

.mobile-nav-link {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--white-pure);
    text-transform: uppercase;
    display: block;
    padding: 6px 0;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    position: relative;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--yellow-accent);
    transform: scale(1.05);
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--yellow-accent);
    transition: var(--transition-smooth);
}

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

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.mobile-cta-li {
    width: 100%;
}

.mobile-cta-li .btn {
    text-align: center;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.25);
    border: 1px solid rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, var(--yellow-accent) 0%, #ffc400 100%);
    animation: pulseButton 2.5s infinite;
}

@keyframes pulseButton {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.25);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 215, 0, 0.5);
        transform: scale(1.02);
    }
}

.mobile-menu-socials {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

/* Mobile Nav Overlay Backdrop */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(6, 11, 24, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Open State Animations */
.mobile-menu-toggle.open .hamburger-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 992px) {
    .desktop-nav {
        display: block;
    }
    .mobile-menu-toggle {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-cta {
        display: none; /* Oculta o botão flutuante/header secundário em mobile para evitar excesso */
    }
}

/* --------------------------------------------------------------------------
   6. SEÇÃO HERO (DYNAMISMO E MOVIMENTO)
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    background: linear-gradient(180deg, rgba(6, 11, 24, 0.88) 0%, rgba(6, 11, 24, 0.95) 100%), url('images/stadium_bg.png') no-repeat center center / cover;
    padding: 120px 0 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Shapes de Fundo Diagonais */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape-diagonal {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), transparent);
    transform: skewY(-12deg);
    width: 120%;
    left: -10%;
}

.shape-1 {
    top: -10%;
    height: 40%;
}

.shape-2 {
    bottom: -15%;
    height: 50%;
    background: linear-gradient(135deg, transparent, rgba(15, 26, 54, 0.5));
}

.shape-thunder-glow {
    position: absolute;
    right: 5%;
    top: 10%;
    width: 40%;
    height: 80%;
    opacity: 0.3;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: thunderPulse 6s ease-in-out infinite;
}

@keyframes thunderPulse {
    0%, 100% {
        opacity: 0.25;
        transform: scale(1);
    }
    50% {
        opacity: 0.45;
        transform: scale(1.05);
    }
}

.thunder-glow-icon {
    font-size: 20rem;
    color: rgba(255, 215, 0, 0.04);
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    color: var(--yellow-accent);
    font-family: var(--font-headings);
    font-weight: 500;               /* Selos com peso leve/médio */
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.badge-icon-fa {
    font-size: 0.8rem;
}

.hero-title {
    font-family: var(--font-headings);
    font-weight: 700;               /* Reduzido de 900 para 700 */
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--white-pure);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 25px;
}

.highlight-text {
    color: var(--yellow-accent);
    position: relative;
    display: inline-block;
}

.hero-lead {
    font-size: 1.05rem;
    font-weight: 300;               /* Corpo de texto em 300 (Leve) */
    color: var(--white-muted);
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.7;
}

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

@media (max-width: 576px) {
    .hero-actions .btn {
        width: 100%;
    }
}

/* Visual Mockup no Hero */
.hero-visual {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.visual-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(145deg, var(--navy-blue-medium), var(--navy-blue-deep));
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.mesh-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: radial-gradient(var(--white-pure) 1px, transparent 0);
    background-size: 8px 8px;
    pointer-events: none;
}

.hero-thunder-fa {
    position: absolute;
    right: -10px;
    bottom: -15px;
    font-size: 10rem;
    color: rgba(255, 215, 0, 0.08);
    pointer-events: none;
}

.mockup-card {
    border-radius: var(--border-radius-md);
    background-color: var(--navy-blue-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.mockup-card:hover {
    transform: scale(1.02);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 14px;
    background-color: rgba(6, 11, 24, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.category-badge {
    color: var(--yellow-accent);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.tech-badge {
    color: var(--white-pure);
    font-size: 0.65rem;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
}

.mockup-img {
    width: 100%;
    height: 300px;
    object-position: center top;
}

.mockup-info {
    padding: 14px;
    background-color: var(--navy-blue-medium);
}

.mockup-info h4 {
    font-family: var(--font-headings);
    font-weight: 600;               /* Peso 600 para títulos internos */
    color: var(--white-pure);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.mockup-info p {
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--gray-text-light);
}

/* Faixa Hero com estatísticas */
.hero-bar {
    background-color: var(--navy-blue-medium);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.hero-bar-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

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

.bar-num {
    display: block;
    font-family: var(--font-headings);
    font-weight: 700;               /* Reduzido de 900 para 700 */
    font-size: 1.6rem;
    color: var(--yellow-accent);
    line-height: 1.1;
}

.bar-label {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.bar-divider {
    width: 40px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-lead {
        font-size: 1.1rem;
    }
    .hero-bar-container {
        flex-direction: row;
        justify-content: space-between;
    }
    .bar-divider {
        width: 1px;
        height: 40px;
    }
    .bar-item {
        text-align: left;
        flex: 1;
        padding-left: 20px;
    }
    .bar-item:first-child {
        padding-left: 0;
    }
}

/* Estilos para o novo layout de Banner Esportivo (Textos Selecionáveis) */
.hero-title.banner-style {
    font-size: clamp(2.3rem, 6vw, 3.8rem);
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--white-pure);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.highlight-text-banner {
    color: var(--yellow-accent);
}

.hero-lead-banner {
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 500;
    color: var(--white-pure);
    margin-bottom: 25px;
    border-left: 3px solid var(--yellow-accent);
    padding-left: 12px;
    line-height: 1.35;
}

.hero-phones {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-phones .phone-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--white-pure);
}

.phone-whatsapp-icon {
    color: #25d366;
    font-size: 1.35rem;
}

.hero-differentials-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 20px;
}

.diff-banner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    color: var(--white-pure);
}

.diff-banner-item i {
    font-size: 1.4rem;
    color: var(--yellow-accent);
}

.diff-banner-item span {
    font-family: var(--font-headings);
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.hero-visual-uniform {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-uniform-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.7));
    animation: floatUniform 6s ease-in-out infinite;
}

@keyframes floatUniform {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 991px) {
    .hero-uniform-img {
        max-height: 380px;
    }
    .hero-title.banner-style {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}

@media (max-width: 576px) {
    .hero-uniform-img {
        max-height: 280px;
    }
    .hero-differentials-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}


/* --------------------------------------------------------------------------
   7. SEÇÃO SOBRE A IDE UNIFORMES
   -------------------------------------------------------------------------- */
.about-section {
    background-color: var(--navy-blue-deep);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-visual {
    position: relative;
    padding-right: 15px;
}

.about-img-box {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 450px;
    transition: var(--transition-smooth);
}

.about-img-box:hover .about-img {
    transform: scale(1.02);
}

.years-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--yellow-accent);
    color: var(--navy-blue-deep);
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.years-num {
    font-family: var(--font-headings);
    font-weight: 700;               /* Reduzido de 900 para 700 */
    font-size: 2.4rem;
    line-height: 0.9;
}

.years-text {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.about-content {
    padding-left: 0;
}

@media (min-width: 992px) {
    .about-content {
        padding-left: 40px;
    }
}

.about-description {
    color: var(--white-muted);
    font-size: 1rem;
    font-weight: 300;               /* Peso leve */
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.75;
}

.about-cta-container {
    margin-top: 35px;
}

/* Cards de Diferenciais */
.diff-card {
    background-color: var(--navy-blue-medium);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    padding: 24px;
    transition: var(--transition-smooth);
}

.diff-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.diff-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.diff-icon-ti {
    font-size: 1.5rem;
    color: var(--yellow-accent);
    transition: var(--transition-smooth);
}

/* Efeito Premium de Hover nos ícones */
.diff-card:hover .diff-icon-box {
    background: var(--yellow-accent);
    border-color: var(--yellow-accent);
    box-shadow: var(--shadow-yellow);
    transform: scale(1.08) rotate(5deg);
}

.diff-card:hover .diff-icon-ti {
    color: var(--navy-blue-deep);
}

.diff-card h3 {
    font-family: var(--font-headings);
    font-weight: 600;               /* Reduzido de 700 para 600 */
    color: var(--white-pure);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.diff-card p {
    color: var(--gray-text-light);
    font-size: 0.88rem;
    font-weight: 300;               /* Lighter weight */
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. SEÇÃO SERVIÇOS (CATÁLOGO MODERNO)
   -------------------------------------------------------------------------- */
.services-section {
    background-color: var(--white-pure);
}

.service-card {
    background-color: var(--white-pure);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--white-muted);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(12, 21, 44, 0.08);
}

.service-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img {
    transform: scale(1.03);
}

.service-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--yellow-accent);
    color: var(--navy-blue-deep);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.bg-navy-accent {
    background: linear-gradient(135deg, var(--navy-blue-medium), var(--navy-blue-deep));
}

.accessory-service-icon-box {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessory-main-icon {
    font-size: 3.5rem;
    color: var(--yellow-accent);
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.2));
    transition: var(--transition-smooth);
}

.accessory-sub-icon {
    font-size: 1.8rem;
    color: var(--white-pure);
    position: absolute;
    bottom: 5px;
    right: 5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: var(--transition-smooth);
}

.service-card:hover .accessory-main-icon {
    transform: scale(1.08) rotate(5deg);
}

.service-card:hover .accessory-sub-icon {
    transform: scale(1.08) rotate(-5deg);
}

.service-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-family: var(--font-headings);
    font-weight: 600;               /* Reduzido de 700 para 600 */
    color: var(--navy-blue-medium);
    font-size: 1.25rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-content p {
    color: var(--gray-text-muted);
    font-size: 0.9rem;
    font-weight: 300;               /* Leve */
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-features-list {
    list-style: none;
    margin-bottom: 20px;
    border-top: 1px solid rgba(0,0,0,0.04);
    padding-top: 15px;
}

.service-features-list li {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--gray-text-dark);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yellow-accent);
    font-weight: 900;
    background-color: var(--navy-blue-deep);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    top: 2px;
}

.service-btn {
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    padding: 11px 18px;
}

/* --------------------------------------------------------------------------
   9. SEÇÃO PROCESSO DE ATENDIMENTO
   -------------------------------------------------------------------------- */
.process-section {
    position: relative;
}

.timeline-wrapper {
    position: relative;
    width: 100%;
}

.timeline-line {
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    height: 3px;
    background-color: var(--navy-blue-light);
    display: none;
}

@media (min-width: 992px) {
    .timeline-line {
        display: block;
    }
}

.timeline-item {
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.timeline-step {
    position: absolute;
    top: -15px;
    right: 10px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(6, 11, 24, 0.03);
    pointer-events: none;
}

.timeline-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--navy-blue-medium);
    color: var(--yellow-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--white-pure);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-icon-box {
    transform: scale(1.08);
    background-color: var(--yellow-accent);
    color: var(--navy-blue-deep);
    border-color: var(--navy-blue-deep);
}

.timeline-icon-box i {
    font-size: 1.45rem;
}

.timeline-item h3 {
    font-family: var(--font-headings);
    font-weight: 600;               /* Reduzido de 700 para 600 */
    color: var(--navy-blue-medium);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.timeline-item p {
    color: var(--gray-text-muted);
    font-size: 0.82rem;
    font-weight: 300;               /* Leve */
    line-height: 1.5;
}

@media (max-width: 991px) {
    .timeline-grid {
        gap: 40px;
    }
    .timeline-item {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* --------------------------------------------------------------------------
   10. SEÇÃO PORTFÓLIO / GALERIA DE MODELOS
   -------------------------------------------------------------------------- */
.portfolio-filters {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.filter-btn {
    font-family: var(--font-headings);
    font-weight: 600;               /* Botões de filtro em 600 */
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--navy-blue-medium);
    border: 2px solid rgba(12, 21, 44, 0.08);
    background-color: transparent;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--navy-blue-medium);
    color: var(--yellow-accent);
    border-color: var(--navy-blue-medium);
}

.portfolio-grid {
    transition: all 0.5s ease-out;
}

.portfolio-item-card {
    background-color: var(--white-pure);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--white-muted);
    transition: var(--transition-smooth);
}

.portfolio-item-card.hide {
    display: none;
}

.portfolio-img-box {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 11, 24, 0.92);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
    transform: translateY(8px);
}

.portfolio-item-card:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.portfolio-item-card:hover .portfolio-img {
    transform: scale(1.03);
}

.portfolio-tag {
    color: var(--yellow-accent);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.portfolio-overlay h4 {
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--white-pure);
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.portfolio-overlay p {
    color: var(--gray-text-light);
    font-weight: 300;
    font-size: 0.82rem;
    margin-bottom: 18px;
}

.portfolio-btn {
    padding: 8px 16px;
    font-size: 0.72rem;
}

.portfolio-icon-fa-box {
    display: flex;
    gap: 10px;
}

.portfolio-icon-fa {
    font-size: 3rem;
    color: var(--yellow-accent);
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.2));
}

.portfolio-icon-fa-thunder {
    font-size: 4rem;
    color: var(--yellow-accent);
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.2));
}

.portfolio-card-info {
    padding: 16px;
}

.portfolio-card-info h3 {
    font-family: var(--font-headings);
    font-weight: 600;               /* Reduzido de 700 para 600 */
    color: var(--navy-blue-medium);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.portfolio-card-info span {
    font-size: 0.72rem;
    color: var(--gray-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* --- GALERIA DE MINIATURAS DO PORTFÓLIO (NOVO) --- */
.gallery-thumbs-grid {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery-thumb-item {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: #f7f9fc;
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-thumb-item.active {
    border-color: var(--yellow-accent);
    background: #fff;
}

/* Cursor de zoom na imagem principal */
.portfolio-img-box {
    position: relative;
    cursor: zoom-in;
}

.img-zoom-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(14, 27, 49, 0.85);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

.portfolio-img-box:hover .img-zoom-overlay {
    opacity: 1;
}

/* --- LIGHTBOX MODAL (NOVO) --- */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 38, 0.95);
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    line-height: 1;
    z-index: 10100;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 850px;
    flex-grow: 1;
    position: relative;
}

.lightbox-img-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 85vh;
    padding: 10px;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: opacity 0.2s ease;
}

.lightbox-caption {
    color: #fff;
    margin-top: 15px;
    font-family: var(--font-headings);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

.lightbox-prev, .lightbox-next {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.2s;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--yellow-accent);
    color: var(--navy-blue-dark);
}

.lightbox-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
}

.lightbox-thumb {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all 0.2s;
    background: rgba(255,255,255,0.05);
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-thumb.active {
    border-color: var(--yellow-accent);
    opacity: 1;
}

@media (max-width: 768px) {
    .lightbox-prev {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(10, 20, 38, 0.6);
    }
    .lightbox-next {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(10, 20, 38, 0.6);
    }
    .lightbox-img-container {
        padding: 0 40px;
    }
}

/* --------------------------------------------------------------------------
   11. SEÇÃO DEPOIMENTOS (FUTURO)
   -------------------------------------------------------------------------- */
.testimonial-card {
    background-color: var(--white-pure);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--white-muted);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stars-fa {
    color: var(--yellow-accent);
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
}

.testimonial-text {
    font-style: italic;
    font-weight: 300;               /* Peso leve */
    color: var(--gray-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0,0,0,0.04);
    padding-top: 15px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--navy-blue-light);
    color: var(--yellow-accent);
}

.client-avatar i {
    font-size: 1.05rem;
}

.client-details h4 {
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--navy-blue-medium);
    font-size: 0.9rem;
}

.client-details span {
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--gray-text-muted);
}

.cta-testimonial-desc {
    color: var(--gray-text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 5px;
}

/* --------------------------------------------------------------------------
   12. SEÇÃO PERGUNTAS FREQUENTES (FAQ)
   -------------------------------------------------------------------------- */
.faq-container {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--white-soft);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(12, 21, 44, 0.04);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(12, 21, 44, 0.1);
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-headings);
    font-weight: 600;               /* Reduzido de 700 para 600 */
    font-size: 1rem;
    color: var(--navy-blue-medium);
    text-align: left;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--yellow-hover);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--navy-blue-medium);
    transition: var(--transition-smooth);
}

.faq-icon i {
    font-size: 0.85rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
}

.faq-answer-content {
    padding: 0 20px 16px;
    color: var(--gray-text-muted);
    font-size: 0.9rem;
    font-weight: 300;               /* Lighter weight */
    border-top: 1px solid rgba(0, 0, 0, 0.02);
    padding-top: 12px;
}

.faq-answer-content p {
    margin-bottom: 0;
}

/* Estado Ativo do FAQ */
.faq-item.active {
    background-color: var(--white-pure);
    border-color: var(--navy-blue-medium);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--yellow-accent);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* --------------------------------------------------------------------------
   13. SEÇÃO BLOG / ARTIGOS
   -------------------------------------------------------------------------- */
.blog-card {
    background-color: var(--white-pure);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--white-muted);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-card-img-box {
    position: relative;
    height: 180px;
}

.blog-card-img {
    width: 100%;
    height: 100%;
}

.blog-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: var(--navy-blue-deep);
    color: var(--yellow-accent);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
}

.blog-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--gray-text-muted);
    margin-bottom: 10px;
}

.blog-meta .separator {
    color: var(--white-muted);
}

.blog-card-content h3 {
    font-family: var(--font-headings);
    font-weight: 600;               /* Reduzido de 700 para 600 */
    color: var(--navy-blue-medium);
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.35;
}

.blog-card-content p {
    color: var(--gray-text-muted);
    font-size: 0.85rem;
    font-weight: 300;               /* Leve */
    line-height: 1.5;
    margin-bottom: 18px;
    flex-grow: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy-blue-medium);
}

.blog-read-more i {
    font-size: 0.75rem;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-read-more {
    color: var(--yellow-hover);
}

.blog-card:hover .blog-read-more i {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   14. SEÇÃO LOCALIZAÇÃO & HORÁRIOS
   -------------------------------------------------------------------------- */
.details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.details-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.details-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow-accent);
    flex-shrink: 0;
}

.details-icon i {
    font-size: 1.25rem;
}

.details-text h3 {
    font-family: var(--font-headings);
    font-weight: 600;               /* Reduzido de 700 para 600 */
    color: var(--navy-blue-medium);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.details-text p {
    color: var(--gray-text-muted);
    font-size: 0.92rem;
    font-weight: 300;               /* Leve */
    line-height: 1.45;
}

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

.location-map {
    width: 100%;
}

.map-box {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(12, 21, 44, 0.05);
    box-shadow: var(--shadow-md);
    height: 380px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* --------------------------------------------------------------------------
   15. SEÇÃO DE CONTATO E FORMULÁRIO (CONVERSÃO)
   -------------------------------------------------------------------------- */
.contact-section {
    background-color: var(--navy-blue-deep);
    position: relative;
    overflow: hidden;
}

.contact-shapes-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape-diagonal-bg {
    position: absolute;
    width: 130%;
    height: 60%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.04), transparent);
    transform: rotate(-6deg);
    top: -10%;
    left: -15%;
}

.shape-lightning-bg {
    position: absolute;
    right: 5%;
    bottom: -10%;
    width: 35%;
    height: 70%;
    opacity: 0.15;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightning-bg-icon {
    font-size: 20rem;
    color: rgba(255, 215, 0, 0.02);
}

.contact-container {
    position: relative;
    z-index: 2;
}

.tag-accent {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--yellow-accent);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.contact-form-title {
    font-family: var(--font-headings);
    font-weight: 700;               /* Reduzido de 800 para 700 */
    font-size: 2.1rem;
    line-height: 1.25;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-form-desc {
    color: var(--white-muted);
    font-size: 1rem;
    font-weight: 300;               /* Leve */
    margin-bottom: 30px;
    line-height: 1.6;
}

.direct-phone-box {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.phone-label {
    font-size: 0.72rem;
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--gray-text-light);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white-pure);
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.8rem;
}

.phone-link:hover {
    color: var(--yellow-accent);
}

.phone-icon-fa {
    font-size: 2rem;
    color: var(--yellow-accent);
}

/* Formulário Card */
.contact-form-box {
    background-color: var(--navy-blue-medium);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-headings);
    font-weight: 600;               /* Reduzido de 700 para 600 */
    color: var(--white-pure);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, .form-group select, .form-group textarea {
    background-color: var(--navy-blue-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    color: var(--white-pure);
    padding: 11px 15px;
    font-size: 0.92rem;
    font-weight: 300;               /* Inputs leves */
    transition: var(--transition-smooth);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--yellow-accent);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.15);
}

.form-group select option {
    background-color: var(--navy-blue-medium);
    color: var(--white-pure);
}

.form-submit-btn {
    margin-top: 8px;
}

.btn-whatsapp-icon-fa {
    font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   16. RODAPÉ (FOOTER)
   -------------------------------------------------------------------------- */
.main-footer {
    background-color: var(--navy-blue-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 0;
    color: var(--white-muted);
}

.footer-grid {
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 40px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 0.82rem;
    font-weight: 300;               /* Leve */
    line-height: 1.6;
    color: var(--gray-text-light);
    margin-bottom: 15px;
}

.footer-badge {
    display: inline-block;
    background-color: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.12);
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.65rem;
    color: var(--yellow-accent);
    text-transform: uppercase;
}

.footer-col h3 {
    font-family: var(--font-headings);
    font-weight: 600;               /* Reduzido de 700 para 600 */
    color: var(--white-pure);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--yellow-accent);
}

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

.footer-links-list a {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray-text-light);
}

.footer-links-list a:hover {
    color: var(--yellow-accent);
    padding-left: 4px;
}

.footer-contact-info {
    font-size: 0.82rem;
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-contact-info strong {
    color: var(--white-pure);
    font-weight: 500;
}

.social-links-grid {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-link-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--navy-blue-light);
    color: var(--white-pure);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.social-link-btn:hover {
    background-color: var(--yellow-accent);
    color: var(--navy-blue-deep);
    transform: translateY(-2px);
}

.social-link-btn i {
    font-size: 1rem;
}

.footer-bottom {
    padding: 24px 0;
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--gray-text-light);
}

.footer-bottom-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
}

.developer-info {
    font-size: 0.72rem;
    opacity: 0.6;
}

@media (min-width: 768px) {
    .footer-bottom-container {
        flex-direction: row;
    }
}

/* --------------------------------------------------------------------------
   17. BOTÃO FLUTUANTE DO WHATSAPP (CONVERSÃO MÁXIMA)
   -------------------------------------------------------------------------- */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 54px;
    height: 54px;
    background-color: #25d366;
    color: var(--white-pure);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.whatsapp-floating-btn i {
    font-size: 1.8rem;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.06);
    background-color: #20ba59;
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: whatsapp-pulse 2s infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Tooltip do WhatsApp Flutuante */
.whatsapp-tooltip {
    position: absolute;
    right: 65px;
    background-color: var(--navy-blue-medium);
    color: var(--yellow-accent);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 215, 0, 0.15);
    pointer-events: none;
    opacity: 0;
    transform: translateX(8px);
    transition: var(--transition-smooth);
}

.whatsapp-floating-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-floating-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-floating-btn i {
        font-size: 1.6rem;
    }
    .pulse-ring {
        width: 50px;
        height: 50px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   18. ANIMAÇÕES NO CARREGAMENTO E SCROLL (LEVES E PERFORMATICAS)
   -------------------------------------------------------------------------- */

/* Classes de Animação Entrada Hero */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.animate-slide-up-delayed {
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.15s forwards;
}

.animate-slide-up-delayed-more {
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s forwards;
}

.animate-fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s forwards;
}

/* Scroll Revelação JS */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   OPTIMIZATIONS FOR MOBILE VIEWPORTS (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
    /* General Section Alignment */
    .section-title-area {
        text-align: center;
    }
    
    .section-subtitle {
        display: block;
        margin: 0 auto 10px;
        width: max-content;
    }

    /* Header & Navbar Centering */
    .header-container {
        justify-content: space-between; /* Keep logo left, toggle right */
    }

    /* Hero Section Centering */
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        margin: 0 auto 20px;
    }

    .hero-title.banner-style {
        text-align: center;
    }

    .hero-lead-banner {
        text-align: center;
        border-left: none;
        border-bottom: 2px solid var(--yellow-accent);
        padding-left: 0;
        padding-bottom: 10px;
        margin: 0 auto 25px;
        display: inline-block;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
    }

    .hero-phones {
        justify-content: center;
        width: 100%;
    }

    .hero-differentials-banner {
        width: 100%;
        justify-content: center;
    }

    /* About Section Centering */
    .about-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .about-cta-container {
        text-align: center;
        width: 100%;
    }

    .years-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: 15px;
    }

    /* Services Section Centering */
    .service-content {
        text-align: center;
        align-items: center;
    }

    .service-features-list {
        display: inline-block;
        text-align: left;
        margin: 0 auto 20px;
    }

    /* Portfolio Section Centering */
    .portfolio-card-info {
        text-align: center;
    }

    /* Location Section Centering */
    .location-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .details-list {
        align-items: center;
        width: 100%;
    }

    .details-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .details-icon {
        margin: 0 auto;
    }

    .location-actions {
        justify-content: center;
        width: 100%;
    }

    /* Contact Section Centering */
    .contact-info-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info-content .tag-accent {
        margin: 0 auto 15px;
    }

    .direct-phone-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .phone-link {
        font-size: 1.5rem;
    }

    /* Footer Centering */
    .footer-grid {
        text-align: center;
        justify-items: center;
    }

    .footer-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-list {
        align-items: center;
    }

    .social-links-grid {
        justify-content: center;
    }
}

/* ==========================================================================
   UPDATED/NEW FINE-TUNING STYLES (TABLER ICONS, GRADIENTS, DROPDOWN & ANIMATIONS)
   ========================================================================== */

/* Universal Tabler Icons Spacing and Sizing Adjustments */
.ti {
    display: inline-block;
    line-height: 1;
    stroke-width: 1.8; /* Make icons look crisp and moderately bold */
    vertical-align: middle;
}

/* Button & Link Icons */
.btn-icon-ti {
    font-size: 1.2rem;
}

.btn-arrow-ti {
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.btn:hover .btn-arrow-ti {
    transform: translateX(4px);
}

.phone-whatsapp-icon {
    font-size: 1.4rem;
}

.diff-icon-ti {
    font-size: 1.7rem;
    color: var(--yellow-accent);
    transition: var(--transition-smooth);
}

.stars-ti {
    color: var(--yellow-accent);
    font-size: 0.9rem;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
}

.phone-icon-ti {
    font-size: 2rem;
    color: var(--yellow-accent);
}

.btn-whatsapp-icon-ti {
    font-size: 1.2rem;
}

/* Custom Animated Dropdown Styling */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--navy-blue-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    color: var(--white-pure);
    padding: 12px 16px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.custom-select-trigger:hover, .custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--yellow-accent);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2), inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.select-arrow {
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gray-text-light);
}

.custom-select-wrapper.open .select-arrow {
    transform: rotate(180deg);
    color: var(--yellow-accent);
}

.custom-options-container {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--navy-blue-medium) 0%, var(--navy-blue-deep) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg), 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.98);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    max-height: 250px;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.custom-select-wrapper.open .custom-options-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.custom-option {
    padding: 12px 18px;
    color: var(--white-muted);
    font-size: 0.92rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background-color: rgba(255, 215, 0, 0.08);
    color: var(--yellow-accent);
    padding-left: 24px;
}

.custom-option.selected {
    background: linear-gradient(135deg, var(--yellow-accent) 0%, #ffc400 100%);
    color: var(--navy-blue-deep);
    font-weight: 600;
}

/* Light Gradients & Animated Accents */
.highlight-text-banner {
    background: linear-gradient(135deg, var(--yellow-accent) 0%, #ffaa00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.15));
    padding-right: 0.12em; /* Previne corte do caractere itálico final (S) */
}

.main-header.scrolled {
    background: linear-gradient(180deg, rgba(6, 11, 24, 0.98) 0%, rgba(12, 21, 44, 0.95) 100%);
}

.about-section {
    background: linear-gradient(180deg, var(--navy-blue-deep) 0%, var(--navy-blue-medium) 100%);
}

.testimonials-section, .process-section {
    background: linear-gradient(180deg, var(--white-soft) 0%, #f1f5f9 100%);
}

.contact-section {
    background: linear-gradient(135deg, var(--navy-blue-deep) 0%, var(--navy-blue-medium) 100%);
}

.main-footer {
    background: linear-gradient(180deg, var(--navy-blue-deep) 0%, #03060d 100%);
}

/* Card Hover Accent Glows */
.diff-card:hover {
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 215, 0, 0.08);
}

.service-card:hover {
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 0 15px rgba(255, 215, 0, 0.06);
}

.blog-card:hover {
    border-color: rgba(255, 215, 0, 0.18);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12), 0 0 15px rgba(255, 215, 0, 0.04);
}

/* Float Animations for Cards */
.diff-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s, box-shadow 0.4s;
}

.service-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s, box-shadow 0.4s;
}

.blog-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.4s, box-shadow 0.4s;
}

.portfolio-item-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s;
}

.portfolio-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* Toggles & Interactive Accents */
.mobile-menu-toggle {
    transition: var(--transition-smooth);
}

.mobile-menu-toggle.open {
    border-color: var(--yellow-accent);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

/* Floating WhatsApp Ring Glow */
.whatsapp-floating-btn {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 15px rgba(37, 211, 102, 0.2);
}

.badge-icon-ti {
    font-size: 0.8rem;
}
