/* ==========================================================================
   CSS Variables & Resets
   ========================================================================== */
:root {
    /* Colors - Yellow replaced with light/electric blue as requested */
    --primary: #00a2ff; /* Was Yellow, now Electric Blue */
    --primary-dark: #0f598b; /* Novo tom de azul solicitado */
    --primary-hover: #0c4a75; /* Tom um pouco mais escuro para o hover */
    --accent: #0088ff; /* Replaces yellow hover/wave colors */
    --bg-dark: #0a1128; /* Dark navy for footers and dark sections */
    --bg-light: #f5f8fc; /* Light grayish-blue for section backgrounds */
    
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #ffffff;
    
    --border-color: #e5e7eb;
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    
    /* Transition */
    --transition: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
}

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

ul {
    list-style: none;
}

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

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

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

.subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn i {
    margin-left: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-light);
    color: var(--text-light);
}

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

.btn-outline-dark {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-dark);
}

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

/* ==========================================================================
   Topbar
   ========================================================================== */
.topbar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 10px 0;
    position: relative;
    z-index: 1001; /* Para sobrepor a navbar */
}

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

.topbar-left span {
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
}

.topbar-left i {
    margin-right: 5px;
    color: var(--primary);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: -10px;
}

.language-selector span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-selector i {
    font-size: 11px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 130px;
    box-shadow: var(--shadow-md);
    border-radius: 5px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown li {
    border-bottom: 1px solid var(--border-color);
}

.language-dropdown li:last-child {
    border-bottom: none;
}

.language-dropdown a {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    font-size: 13px;
    transition: var(--transition);
}

.language-dropdown a:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

/* Hide Google Translate Bar and UI */
.goog-te-banner-frame.skiptranslate, 
.goog-te-gadget-icon,
.goog-te-gadget-simple img,
.goog-te-menu-value span {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

#google_translate_element {
    display: none !important;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
}

.social-links a:hover {
    color: var(--primary);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    background-color: rgba(10, 17, 40, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 25px 0; /* Aumentado para dar mais altura ao cabeçalho */
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 60px; /* Logotipo maior para ficar mais evidente */
}

.logo a {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.logo a::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -150%;
    width: 60px;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(30deg);
    animation: logo-shine 6s infinite;
}

@keyframes logo-shine {
    0% { left: -150%; }
    15% { left: 150%; }
    100% { left: 150%; }
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a i {
    font-size: 10px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.nav-dropdown-wrapper {
    position: relative;
    padding: 10px 0;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px; /* Aumentado para garantir espaço */
    width: max-content; /* Se ajusta ao texto mais longo */
    box-shadow: var(--shadow-lg);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
}

.nav-dropdown-wrapper:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    border-bottom: 1px solid var(--border-color);
}

.nav-dropdown li:last-child {
    border-bottom: none;
}

.nav-dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 13px; /* Fonte reduzida */
    font-weight: 500;
    white-space: nowrap; /* Garante que fique em uma linha só */
}

.nav-dropdown a:hover {
    color: var(--primary);
    background-color: var(--bg-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-actions a {
    color: var(--text-light);
    font-size: 18px;
    position: relative;
}

.nav-actions a:hover {
    color: var(--primary);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--primary);
    color: var(--text-light);
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sticky Info Bar */
.sticky-info-bar {
    position: fixed;
    top: -50px;
    left: 0;
    background-color: rgba(15, 89, 139, 0.85); /* Azul escuro transparente (#0f598b com 85% opacidade) */
    backdrop-filter: blur(8px); /* Efeito de desfoque no fundo */
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-light);
    font-size: 13px;
    height: 35px;
    opacity: 0;
    transition: top 0.3s ease, opacity 0.3s ease;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sticky-info-bar.active {
    opacity: 1;
}

.sticky-info-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-info-left i {
    color: var(--text-light);
    font-size: 14px;
}

.sticky-info-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-info-right span {
    font-weight: 500;
}

.sticky-social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-social-links a {
    color: var(--text-light);
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-social-links a:hover {
    color: #ffffff;
    transform: scale(1.2);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
/* ==========================================================================
   Hero Section with Slider
   ========================================================================== */
.hero {
    position: relative;
    padding: 0;
    min-height: 700px;
    overflow: visible; /* Para os cards inferiores */
}

/* Camada de Colmeia (Honeycomb) Dinâmica */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='56' height='100' viewBox='0 0 56 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%2300f2ff' stroke-width='1.5' /%3E%3C/svg%3E");
    background-size: 150px 260px; /* Colmeia maior */
    opacity: 0.25;
    pointer-events: none;
    z-index: 2; /* Atrás de tudo */
    animation: honeycombBreathing 5s ease-in-out infinite;
}

/* Efeito de Varredura Luminosa (Scanning Line) */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 242, 255, 0) 45%,
        rgba(0, 242, 255, 0.4) 50%,
        rgba(0, 242, 255, 0) 55%,
        transparent 100%
    );
    background-size: 100% 200%;
    animation: honeycombScan 6s linear infinite;
    pointer-events: none;
    z-index: 3; /* Logo acima da colmeia */
}

/* Camada extra de brilho pulsante */
.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    animation: lightPulse 4s ease-in-out infinite;
}

@keyframes honeycombBreathing {
    0%, 45%, 55%, 100% { opacity: 0; filter: drop-shadow(0 0 0px rgba(0, 242, 255, 0)); }
    46% { opacity: 0.2; filter: drop-shadow(0 0 5px rgba(0, 242, 255, 0.4)); }
    47% { opacity: 0.05; }
    48% { opacity: 0.35; filter: drop-shadow(0 0 12px rgba(0, 242, 255, 0.7)); }
    50% { opacity: 0.25; }
    52% { opacity: 0.4; filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.8)); }
    54% { opacity: 0.1; }
}

@keyframes honeycombScan {
    0% { background-position: 0% -100%; }
    100% { background-position: 0% 100%; }
}

@keyframes lightPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}


.hero-slider {
    position: relative;
    height: 850px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 60, 232, 0.9) 0%, rgba(10, 17, 40, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 5;
}

.hero-text-area {
    max-width: 650px;
    color: var(--text-light);
    position: relative;
}

.hero-decoration {
    position: absolute;
    top: -50px;
    left: -100px;
    width: 300px;
    height: 300px;
    border: 3px solid var(--primary);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite alternate;
    opacity: 0.3;
    z-index: -1;
}

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 50% 40% 50%; transform: rotate(15deg); }
}

.hero h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

/* Novo layout dividido */
.hero-content.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-top: 50px;
}

.hero-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 30; /* Sempre no topo dos efeitos */
}

/* Jarvis HUD Target Effect */
.hero-hud-target {
    position: absolute;
    top: 42%; /* Subiu o círculo para melhor enquadramento */
    left: 50%;
    width: 950px; /* Aumentado 30% de 750px */
    height: 950px; /* Aumentado 30% de 750px */
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 50;
}

/* Anel Externo - Rotação Lenta */
.hero-hud-target::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(0, 242, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
    animation: rotateHUD 25s linear infinite;
}

/* Anel Médio - Rotação Rápida Inversa */
.hero-hud-target::after {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 2px solid rgba(0, 242, 255, 0.1);
    border-top: 6px solid rgba(0, 242, 255, 0.6);
    border-bottom: 6px solid rgba(0, 242, 255, 0.6);
    animation: rotateHUDReverse 10s linear infinite;
}

/* Anel Interno */
.hud-inner-ring {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    border: 1px dashed rgba(0, 242, 255, 0.5);
    animation: rotateHUD 15s linear infinite;
}

/* Novo Alvo Central (Crosshair) */
.hud-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35%;
    height: 35%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 50%;
    z-index: 2;
}

.hud-crosshair::before, .hud-crosshair::after {
    content: '';
    position: absolute;
    background: rgba(0, 242, 255, 0.4);
}

.hud-crosshair::before {
    top: 50%;
    left: -20%;
    width: 140%;
    height: 1px;
}

.hud-crosshair::after {
    left: 50%;
    top: -20%;
    width: 1px;
    height: 140%;
}

.hud-honeycomb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 55%;
    height: 55%;
    transform: translate(-50%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='50' viewBox='0 0 28 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 33L0 25L0 8L14 0L28 8L28 25L14 33L14 50' fill='none' stroke='%2300f2ff' stroke-width='0.5' /%3E%3C/svg%3E");
    background-size: 30px 54px;
    border-radius: 50%;
    opacity: 0;
    mask-image: radial-gradient(circle, black 50%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 50%, transparent 70%);
    animation: hudCorePulse 12s infinite;
}

@keyframes hudCorePulse {
    0%, 40%, 65%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
    45%, 60% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    47%, 50%, 53% { opacity: 0.1; }
}

@keyframes rotateHUD {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateHUDReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.floating-img {
    max-width: 780px; /* Aumentado em 30% (de 600px para 780px) */
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 162, 255, 0.3)) drop-shadow(0 30px 50px rgba(0,0,0,0.5));
    animation: floating 4s ease-in-out infinite;
    z-index: 10;
}

/* Efeito de brilho que passa pela imagem */
.hero-image-area::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        to right, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.4) 50%, 
        rgba(255,255,255,0) 100%
    );
    transform: rotate(25deg);
    animation: shine 8s infinite;
    pointer-events: none;
    z-index: 15;
}

@keyframes shine {
    0% { left: -150%; }
    15% { left: 250%; }
    100% { left: 250%; }
}

@keyframes floating {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@media (max-width: 991px) {
    .hero-content.hero-split {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    .hero-image-area {
        order: -1;
        margin-bottom: 40px;
    }
    .floating-img {
        max-width: 280px;
    }
    .hero-text-area {
        max-width: 100%;
    }
}

/* Slide Content Animations */
.hero-slide.active h1 { animation: fadeInUp 0.8s both 0.3s; }
.hero-slide.active .hero-badges { animation: fadeInUp 0.8s both 0.5s; }
.hero-slide.active p { animation: fadeInUp 0.8s both 0.7s; }
.hero-slide.active .hero-buttons { animation: fadeInUp 0.8s both 0.9s; }

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

.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.hero-badges i {
    color: var(--primary);
    font-size: 18px;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 550px;
}

/* Slider Controls */
.hero-nav-wrapper {
    position: absolute;
    bottom: 80px; /* Descido drasticamente para sair de cima dos botões */
    left: 0;
    right: 0;
    z-index: 30;
    pointer-events: none;
}

.hero-slider-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    pointer-events: auto;
}

.hero-nav-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-pagination {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: baseline;
}

#hero-current {
    font-size: 32px;
}

.total {
    color: rgba(255, 255, 255, 0.5);
    margin-left: 5px;
}

/* Hero Bottom Cards */
.hero-bottom-cards {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(50%);
    z-index: 20;
}

.cards-wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.bottom-card {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 35px;
    display: flex;
    gap: 25px;
    width: 400px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.bottom-card:hover {
    transform: translateY(-5px);
}

.bottom-card .icon {
    font-size: 40px;
    color: var(--primary);
}

.bottom-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.bottom-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.bottom-card a {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bottom-card a:hover {
    color: var(--primary);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: 200px 0 100px; /* Top padding to account for overlapping cards */
    background-color: #ffffff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--bg-light);
    padding: 15px 25px;
    border-radius: 5px;
    flex: 1;
}

.about-features i {
    font-size: 24px;
    color: var(--primary);
}

.about-features span {
    font-weight: 600;
    font-size: 15px;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 162, 255, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.phone-info span {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
}

.phone-info strong {
    font-size: 18px;
    color: var(--text-dark);
}

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

.image-wrapper {
    position: relative;
    z-index: 1;
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    width: 80%;
    height: 90%;
    background-color: var(--primary); /* Replaced light blue/yellow with primary blue */
    background-image: radial-gradient(rgba(255,255,255,0.2) 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: -1;
    border-radius: 10px;
}

.image-wrapper img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.contact-bubble {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

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

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: #ffffff;
    border-top-left-radius: 50% 100%;
    border-bottom-left-radius: 50% 100%;
    z-index: 0;
}

.services-content {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Coluna da esquerda é o dobro da direita */
    gap: 30px;
    align-items: start;
    position: relative;
    z-index: 1;
}

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

.service-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 162, 255, 0.1); /* Primary blue tint */
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--text-light);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

.services-text {
    padding-left: 0; /* Removido padding para alinhamento puro via grid */
}

.services-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 60px 0;
    text-align: center;
}

.stat-item i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-gray);
    font-weight: 500;
}

.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 80px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partners-grid:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-logo {
    height: 35px;
    object-fit: contain;
}

.text-gray {
    color: #666;
}

/* ==========================================================================
   CTA Banner (Replaced Yellow with Blue)
   ========================================================================== */
.cta-banner {
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Here the yellow wave was replaced by a blue gradient overlay */
    background: linear-gradient(135deg, rgba(15, 60, 232, 0.9) 0%, rgba(0, 162, 255, 0.8) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
}

.cta-content h2 {
    color: var(--text-light);
    font-size: 42px;
    margin-bottom: 30px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content p:last-of-type {
    margin-bottom: 40px;
}

.cta-content .btn-primary {
    background-color: var(--text-light);
    color: var(--primary-dark);
}

.cta-content .btn-primary:hover {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.scroll-down-indicator {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--text-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

/* ==========================================================================
   Products Slider
   ========================================================================== */
.products-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    padding: 20px 0 80px; /* Aumentado padding inferior para os botões */
}

.products-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.product-slide {
    flex: 0 0 calc(33.333% - 20px); /* 3 items visible, accounting for gap */
    min-width: 0;
}

@media (max-width: 991px) {
    .product-slide { flex: 0 0 calc(50% - 15px); }
}

@media (max-width: 768px) {
    .product-slide { flex: 0 0 100%; }
}

.team-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-card img {
    width: 100%;
    height: auto;
    display: block;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-info p {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.team-socials {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.team-card:hover .team-socials {
    opacity: 1;
    visibility: visible;
    top: -20px;
}

.team-socials a {
    color: var(--text-dark);
    font-size: 14px;
}

.team-socials a:hover {
    color: var(--primary);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
}

.clutch-rating {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-top: 20px;
}

.clutch-rating strong {
    font-size: 20px;
}

.clutch-rating .stars i {
    color: #ff3d2e; /* Clutch brand color */
    font-size: 14px;
}

.clutch-rating span {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
}

.testimonials-slider-container {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    padding-bottom: 60px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 50%;
    padding: 0 15px;
    box-sizing: border-box;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--primary-dark);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.slider-btn:hover {
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.testimonial-card .rating {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-card .rating i {
    color: #ffb800; /* Standard star color, left yellow as it's a standard star */
    font-size: 14px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-card .author {
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-card .verified {
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.testimonial-card .verified i {
    color: #10b981; /* Green check */
}

/* ==========================================================================
   Treasure Section (Parallax)
   ========================================================================== */
.treasure-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    color: var(--text-light);
}

.treasure-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('images/bg1.png.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.treasure-parallax-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 17, 40, 0.9) 0%, rgba(15, 60, 232, 0.8) 100%);
    z-index: -1;
}

.treasure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.treasure-image img {
    transition: var(--transition);
    width: 100%;
    height: auto;
    display: block;
}

.treasure-image img:hover {
    transform: translateY(-10px) scale(1.03);
}

.treasure-text h2 {
    color: var(--text-light);
    font-size: 52px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.treasure-text p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
}

.treasure-text .subtitle {
    color: var(--primary);
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .treasure-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
}

/* ==========================================================================
   MVA Section (Mission, Vision, Values)
   ========================================================================== */
.mva-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.mva-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.mva-card:hover {
    background-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mva-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 25px;
}

.mva-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mva-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

.mva-card:hover .mva-icon,
.mva-card:hover h3,
.mva-card:hover p,
.mva-card:hover .values-list li {
    color: #ffffff;
}

.values-list {
    text-align: left;
    list-style: none;
    margin-top: 20px;
}

.values-list li {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    
}

.why-list {
    list-style: none;
    margin-top: 30px;
}

.why-list li {
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
}

.why-list i {
    color: var(--primary);
    font-size: 20px;
}

@media (max-width: 991px) {
    .mva-grid, .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.features-images-grid {
    display: flex;
    height: 400px;
}

.feature-item {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: var(--transition);
    overflow: hidden;
}

.feature-item:hover {
    flex: 1.5;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.9) 0%, rgba(10, 17, 40, 0.2) 100%);
    z-index: 1;
}

.feature-item h3 {
    color: var(--text-light);
    position: relative;
    z-index: 2;
    font-size: 20px;
    transform: translateY(20px);
    transition: var(--transition);
}

.feature-item:hover h3 {
    transform: translateY(0);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    margin-bottom: 40px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item strong {
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-gray);
}

.info-item span {
    font-size: 13px;
    display: block;
    margin-top: 5px;
}

.contact-form-block {
    flex: 2;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input, 
.contact-form-block textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 15px;
    background-color: var(--bg-light);
    transition: var(--transition);
}

.form-row input:focus, 
.contact-form-block textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #ffffff;
}

.form-disclaimer {
    font-size: 13px;
    color: var(--text-gray);
    margin: 20px 0;
}

.form-disclaimer a {
    color: var(--primary);
}

.float-right {
    float: right;
}

/* ==========================================================================
   Pre-Footer
   ========================================================================== */
.pre-footer {
    background-color: var(--primary-dark);
    padding: 60px 0;
    color: var(--text-light);
}

.pre-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pre-footer h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.pre-footer p {
    opacity: 0.8;
}

.pre-footer .btn-primary {
    background-color: var(--primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.brand-col {
    min-width: 350px; /* Garante que o widget do Facebook (340px) caiba sem quebras */
    max-width: 100%;
}

@media (max-width: 400px) {
    .brand-col {
        min-width: unset;
    }
}



.footer-logo {
    height: 40px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.brand-col p {
    margin-bottom: 25px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 25px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover,
.footer-links a:active {
    color: #00ffff;
}

.newsletter-form {
    display: flex;
    margin: 20px 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

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

.footer-socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

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

.hours strong {
    color: var(--text-light);
    display: block;
    margin-top: 20px;
    margin-bottom: 5px;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.footer-gallery img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.footer-gallery img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    background-color: #050a1a;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: var(--text-light);
    border-radius: 5px;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ==========================================================================
   Media Queries (Responsiveness)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 56px; }
    .about-content { flex-direction: column; }
    .services-content { flex-direction: column; }
    .services-section::after { width: 100%; height: 50%; top: 50%; border-radius: 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-content { flex-direction: column; }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .topbar { display: none; }
    
    .mobile-menu-btn {
        display: inline-block;
        font-size: 20px;
        color: var(--text-dark);
        cursor: pointer;
        transition: var(--transition);
    }
    
    .mobile-menu-btn:hover {
        color: var(--primary);
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(15, 60, 232, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        z-index: 1000;
        text-align: left;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        color: #ffffff;
    }
    
    .nav-links a:hover {
        color: #00ffff;
    }
    
    .nav-dropdown-wrapper {
        width: 100%;
    }
    
    .nav-dropdown {
        position: relative;
        top: 0;
        box-shadow: none;
        width: 100%;
        display: none;
        padding-left: 20px;
        background-color: rgba(0, 0, 0, 0.15);
        margin-top: 5px;
        border-radius: 5px;
    }
    
    .nav-dropdown-wrapper:hover .nav-dropdown,
    .nav-dropdown-wrapper:active .nav-dropdown,
    .nav-dropdown-wrapper.active .nav-dropdown {
        display: flex;
        flex-direction: column;
    }
    
    .hero { padding: 80px 0 150px; }
    .hero h1 { font-size: 42px; }
    .cards-wrapper { flex-direction: column; align-items: center; }
    .bottom-card { width: 100%; max-width: 400px; }
    
    .about-features { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .services-text { padding-left: 0; margin-top: 40px; }
    
    .team-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    
    .features-images-grid { flex-direction: column; height: auto; }
    .feature-item { height: 200px; }
    
    .form-row { flex-direction: column; }
    .pre-footer-content { flex-direction: column; text-align: center; gap: 20px; }
    .footer-content { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-section {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.blog-card {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.blog-info {
    padding: 30px;
}

.blog-date {
    display: block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: var(--transition);
    color: var(--text-dark);
}

.blog-card:hover h3 {
    color: var(--primary);
}

.blog-info p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   Internal Pages Header
   ========================================================================== */
.page-header {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb span {
    color: #ffffff;
}

.padding-top {
    padding-top: 100px;
}

.padding-bottom {
    padding-bottom: 100px;
}

.section-padding {
    padding: 100px 0;
}

/* ==========================================================================
   Search Overlay
   ========================================================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 60, 232, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-container {
    width: 90%;
    max-width: 800px;
    position: relative;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #ffffff;
    padding: 20px 60px 20px 0;
    font-size: 30px;
    color: #ffffff;
    outline: none;
}

.search-box i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #ffffff;
}

.close-search {
    position: absolute;
    top: -100px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
}

.search-results {
    margin-top: 40px;
    max-height: 400px;
    overflow-y: auto;
}

.result-item {
    display: block;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    border-radius: 5px;
    color: #ffffff;
    transition: var(--transition);
    text-decoration: none;
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.result-item h4 {
    margin-bottom: 5px;
}

.result-item p {
    font-size: 14px;
    opacity: 0.8;
}
/* Forms & Checkout */
.form-group label {
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group input {
    border: 1px solid #e1e1e1;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(15, 60, 232, 0.1);
}

.checkout-form h3 {
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

#location-status {
    font-size: 12px;
    font-weight: 500;
}

/* ==========================================================================
   Clients Slider Section
   ========================================================================== */
.clients-slider-section {
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.clients-slider {
    position: relative;
    width: 100%;
}

.clients-track {
    display: flex;
    width: calc(200px * 14);
    animation: scrollLogos 30s linear infinite;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 7)); }
}

.client-logo {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    flex-shrink: 0;
}

.client-logo img {
    max-width: 120px;
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: all 0.4s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #ccc;
    transition: all 0.4s ease;
    letter-spacing: 2px;
}

.client-logo:hover .logo-text {
    color: var(--primary);
    transform: scale(1.1);
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.pagination-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #fff;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pagination-btn:hover, .pagination-btn.active {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ==========================================================================
   Footer Tags / Keywords SEO
   ========================================================================== */
.footer-tags {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 18px 0 10px;
}

.footer-tags .container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: center;
}

.footer-tag {
    font-size: 7px;
    color: #4a4a4a;
    cursor: default;
    transition: color 0.25s ease;
    user-select: none;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.footer-tag:not(:last-child)::after {
    content: '·';
    margin-left: 10px;
    color: #333;
}

.footer-tag:hover {
    color: #00e5ff;
}

/* ==========================================================================
   Formulário de Contato — Sucesso & Erro
   ========================================================================== */
.kt-form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(0,200,100,0.12), rgba(0,162,255,0.12));
    border: 1px solid rgba(0,200,100,0.3);
    border-radius: 16px;
    animation: ktSuccessFade 0.5s ease forwards;
    margin-bottom: 20px;
}

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

.kt-success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #00c864, #00a2ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0,200,100,0.35);
    animation: ktPulse 1.5s ease-in-out infinite;
}

@keyframes ktPulse {
    0%   { box-shadow: 0 0 0 0 rgba(0,200,100,0.4); }
    70%  { box-shadow: 0 0 0 14px rgba(0,200,100,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,200,100,0); }
}

.kt-form-success h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.kt-form-success p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.kt-form-error {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: rgba(220,50,50,0.1);
    border: 1px solid rgba(220,50,50,0.3);
    border-radius: 10px;
    color: #c0392b;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    animation: ktSuccessFade 0.4s ease forwards;
}

/* ==========================================================================
   Guarantee Cards
   ========================================================================== */
.guarantee-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.guarantee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(15, 60, 232, 0.15), 0 0 20px rgba(15, 60, 232, 0.2);
    border-color: rgba(15, 60, 232, 0.3);
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.guarantee-card:hover::before {
    left: 200%;
}

.guarantee-card:hover::before {
    left: 200%;
}
