/* ========== RESET E BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 200vh;
    background: #f5f5f5;
    overflow-x: hidden;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* ========== LOGO ========== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* ========== NAV DESKTOP ========== */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 42px;
    list-style: none;
}

.nav-desktop a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.2s ease;
    padding: 4px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2.5px;
    background: #000;
    transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 4px;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.nav-desktop a:hover {
    color: #111;
}

/* ========== BOTÃO ORÇAMENTO ========== */
.btn-orcamento {
    background: #000;
    color: #fff !important;
    padding: 12px 32px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-orcamento i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-orcamento:hover {
    background: #1a1a1a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.btn-orcamento:hover i {
    transform: translateX(4px);
}

.header.scrolled .btn-orcamento {
    background: #0a0a0a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ========== HAMBURGUER ========== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s ease;
    background: transparent;
    border: none;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: #000;
    border-radius: 4px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   OVERLAY MOBILE REVOLUCIONÁRIO
   ======================================== */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* ===== PARTÍCULAS ANIMADAS ===== */
.overlay-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 50px 160px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 200px 120px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 250px 50px, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 300px 90px, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 350px 40px, rgba(255,255,255,0.2), transparent);
    background-size: 400px 200px;
    animation: particlesMove 20s linear infinite;
    opacity: 0.6;
}

@keyframes particlesMove {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-200px) rotate(360deg); }
}

/* ===== CÍRCULOS DECORATIVOS ===== */
.overlay-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: circlePulse 4s ease-in-out infinite;
}

.overlay-circle:first-of-type {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -150px;
    border-color: rgba(255, 255, 255, 0.03);
    animation-delay: 0s;
}

.overlay-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    border-color: rgba(255, 255, 255, 0.05);
    animation-delay: 2s;
}

@keyframes circlePulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

/* ===== LINHAS DECORATIVAS ===== */
.overlay-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    height: 1px;
    animation: lineSlide 8s linear infinite;
}

.overlay-line-1 {
    width: 60%;
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.overlay-line-2 {
    width: 40%;
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes lineSlide {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

/* ===== BOTÃO FECHAR ===== */
.mobile-overlay-close-area {
    position: absolute;
    top: 28px;
    right: 32px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.mobile-overlay-close-area:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== CONTEÚDO DO OVERLAY ===== */
.overlay-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

/* Logo no overlay */
.overlay-logo {
    margin-bottom: 10px;
}

.overlay-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    animation: logoFloat 3s ease-in-out infinite;
}

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

/* ===== NAV MOBILE ===== */
.nav-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    list-style: none;
    width: 100%;
}

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

.nav-mobile a {
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho ao passar o mouse */
.nav-mobile a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: left 0.5s ease;
}

.nav-mobile a:hover::before {
    left: 100%;
}

.nav-mobile a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-mobile a .nav-icon {
    font-size: 20px;
    width: 40px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.nav-mobile a:hover .nav-icon {
    color: #fff;
}

.nav-mobile a .nav-text {
    flex: 1;
    text-align: left;
    margin-left: 10px;
}

.nav-mobile a .nav-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
}

.nav-mobile a:hover .nav-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #fff;
}

/* ===== BOTÃO ORÇAMENTO MOBILE ===== */
.btn-orcamento-mobile {
    background: linear-gradient(135deg, #fff, #e0e0e0);
    color: #000 !important;
    padding: 18px 48px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.btn-orcamento-mobile .btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: glowRotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-orcamento-mobile:hover .btn-glow {
    opacity: 1;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-orcamento-mobile:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 50px rgba(255, 255, 255, 0.25);
}

.btn-orcamento-mobile i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-orcamento-mobile:hover i {
    transform: translateX(6px);
}

/* ===== REDES SOCIAIS ===== */
.overlay-social {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.overlay-social a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.overlay-social a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ========== HERO FAKE ========== */
.hero-fake {
    height: 100vh;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #222;
    letter-spacing: -1px;
    padding: 0 24px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.hero-fake span {
    font-weight: 700;
    background: linear-gradient(135deg, #000, #444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== RESPONSIVO ========== */
@media (max-width: 968px) {
    .header {
        padding: 16px 24px;
    }

    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .btn-orcamento {
        display: none;
    }

    .logo-img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 14px 18px;
    }

    .logo-img {
        width: 80px;
        height: 80px;
    }

    .nav-mobile a {
        font-size: 18px;
        padding: 16px 20px;
    }

    .btn-orcamento-mobile {
        font-size: 16px;
        padding: 16px 36px;
    }

    .hero-fake {
        font-size: 1.8rem;
    }

    .overlay-circle:first-of-type {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
    }

    .overlay-circle-2 {
        width: 200px;
        height: 200px;
        bottom: -70px;
        left: -70px;
    }
}

/*hero*/

/* ========================================
   HERO REVOLUCIONÁRIO
   ======================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('img/capa-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    padding-top: 100px; /* Espaço para o header */
    padding-bottom: 60px;
}

/* Overlay com gradiente sofisticado */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.7) 60%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 1;
}

/* ===== LINHAS DECORATIVAS ===== */
.hero-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.05), transparent);
    height: 1px;
    animation: lineSlide 8s linear infinite;
}

.hero-line-1 {
    width: 70%;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.hero-line-2 {
    width: 50%;
    top: 50%;
    right: 10%;
    animation-delay: 3s;
}

.hero-line-3 {
    width: 60%;
    bottom: 25%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes lineSlide {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

/* ===== CÍRCULOS LUMINOSOS ===== */
.hero-glow-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    animation: glowPulse 6s ease-in-out infinite;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.04) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: 3s;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* ===== CONTAINER ===== */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 950px;
    padding: 40px 24px;
    text-align: center;
    animation: heroFadeIn 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ===== BADGE ===== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.hero-badge i {
    color: #ff1a1a;
    font-size: 16px;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 26, 26, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ===== TÍTULO ===== */
.hero-title-wrapper {
    margin-bottom: 25px;
}

.hero-subtitle-top {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.hero-title-line {
    display: block;
}

.hero-title-highlight {
    background: linear-gradient(135deg, #ff1a1a, #ff4444, #ff1a1a);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: none;
    position: relative;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff1a1a, transparent);
    border-radius: 4px;
    opacity: 0.3;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Decoração do título */
.hero-title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.3));
    border-radius: 4px;
}

.decoration-line:last-child {
    background: linear-gradient(90deg, rgba(255, 26, 26, 0.3), transparent);
}

.hero-title-decoration i {
    color: #ff1a1a;
    font-size: 20px;
    animation: firePulse 2s ease-in-out infinite;
}

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

/* ===== SUBTÍTULO ===== */
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 45px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-subtitle i {
    color: #ff1a1a;
    font-size: 18px;
    opacity: 0.7;
}

/* ===== BOTÕES ===== */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 14px 30px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    font-size: 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.btn-text-main {
    font-size: 16px;
    font-weight: 700;
}

.btn-text-sub {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

/* Botão WhatsApp */
.hero-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.25);
}

.hero-btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.35);
}

.hero-btn-whatsapp:hover .btn-icon-wrapper {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(-10deg);
}

/* Botão Telefone */
.hero-btn-phone {
    background: linear-gradient(135deg, #ff1a1a, #cc0000);
    color: #fff;
    box-shadow: 0 8px 30px rgba(255, 26, 26, 0.25);
}

.hero-btn-phone:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 45px rgba(255, 26, 26, 0.35);
}

.hero-btn-phone:hover .btn-icon-wrapper {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(-10deg);
}

/* Efeito de brilho nos botões */
.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

/* ===== SELOS DE CONFIANÇA ===== */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-item i {
    color: #ff1a1a;
    font-size: 18px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.trust-item:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.trust-item:hover i {
    opacity: 1;
    transform: scale(1.2);
}

/* ===== RESPONSIVO ===== */

/* Tablet */
@media (max-width: 968px) {
    .hero {
        padding-top: 90px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 380px;
        margin: 0 auto 40px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-glow-1 {
        width: 350px;
        height: 350px;
        top: -50px;
        right: -50px;
    }

    .hero-glow-2 {
        width: 300px;
        height: 300px;
        bottom: -50px;
        left: -50px;
    }

    .hero-trust {
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        background-image: url('img/capa-hero-celular.png'); /* Imagem específica para mobile */
        background-attachment: scroll;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title-highlight::after {
        height: 2px;
    }

    .hero-subtitle {
        font-size: 1rem;
        flex-direction: column;
        gap: 6px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 18px;
        margin-bottom: 25px;
    }

    .hero-badge i {
        font-size: 14px;
    }

    .hero-subtitle-top {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .hero-btn {
        font-size: 15px;
        padding: 12px 20px;
    }

    .btn-icon-wrapper {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .btn-text-main {
        font-size: 15px;
    }

    .btn-text-sub {
        font-size: 11px;
    }

    .hero-glow-1 {
        width: 250px;
        height: 250px;
        top: -30px;
        right: -30px;
    }

    .hero-glow-2 {
        width: 200px;
        height: 200px;
        bottom: -30px;
        left: -30px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 15px;
        padding-top: 15px;
    }

    .trust-item {
        font-size: 12px;
    }

    .hero-title-decoration {
        gap: 15px;
    }

    .decoration-line {
        width: 40px;
    }

    .hero-title-decoration i {
        font-size: 16px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .hero {
        padding-top: 75px;
        padding-bottom: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .hero-btn {
        font-size: 14px;
        padding: 10px 16px;
        gap: 12px;
    }

    .btn-icon-wrapper {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .btn-text-main {
        font-size: 14px;
    }

    .btn-text-sub {
        font-size: 10px;
    }

    .hero-glow-1 {
        width: 180px;
        height: 180px;
    }

    .hero-glow-2 {
        width: 150px;
        height: 150px;
    }

    .hero-container {
        padding: 20px 16px;
    }
}

/*sobre*/

/* ========================================
   SOBRE A HARMAN
   ======================================== */
.sobre {
    position: relative;
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #e8e8e8 0%, #e0e0e0 50%, #e8e8e8 100%);
    overflow: hidden;
}

.sobre-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ===== DECORAÇÕES DE FUNDO ===== */
.sobre-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.sobre-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.04) 0%, transparent 70%);
}

.sobre-circle:first-of-type {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    animation: circleFloat 8s ease-in-out infinite;
}

.sobre-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -50px;
    animation: circleFloat 10s ease-in-out infinite reverse;
}

.sobre-circle-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.06) 0%, transparent 70%);
    animation: circleFloat 6s ease-in-out infinite;
}

@keyframes circleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 10px) scale(0.95); }
}

/* ===== LINHAS DECORATIVAS ===== */
.sobre-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.sobre-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.05), transparent);
    height: 1px;
    animation: lineSlide 10s linear infinite;
}

.sobre-line:first-of-type {
    width: 50%;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.sobre-line-2 {
    width: 40%;
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

@keyframes lineSlide {
    0% { transform: translateX(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

/* ===== CONTEÚDO ===== */
.sobre-content {
    position: relative;
    z-index: 2;
}

/* ===== TÍTULO DA SEÇÃO ===== */
.sobre-header {
    text-align: center;
    margin-bottom: 60px;
}

.sobre-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 15px;
}

.sobre-title-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(-3deg); }
}

.sobre-title {
    font-size: 3rem;
    font-weight: 800;
    color: #222;
    letter-spacing: -1px;
}

.sobre-title-highlight {
    background: linear-gradient(135deg, #ff1a1a, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.sobre-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff1a1a, transparent);
    border-radius: 4px;
    opacity: 0.3;
}

.sobre-title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sobre-title-decoration .decoration-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.3));
    border-radius: 4px;
}

.sobre-title-decoration .decoration-line:last-child {
    background: linear-gradient(90deg, rgba(255, 26, 26, 0.3), transparent);
}

.decoration-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff1a1a;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

/* ===== GRID ===== */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ===== IMAGEM ===== */
.sobre-image-wrapper {
    position: relative;
}



.sobre-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.sobre-image-container:hover .sobre-image {
    transform: scale(1.05);
}

/* Overlay da imagem (apenas efeito visual) */
.sobre-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    transition: all 0.5s ease;
    pointer-events: none;
}



/* ===== TEXTO ===== */
.sobre-text-wrapper {
    padding: 20px 0;
}

.sobre-text-content {
    position: relative;
}

.sobre-text-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 26, 26, 0.06);
    padding: 8px 18px;
    border-radius: 60px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 26, 26, 0.08);
}

.sobre-text-badge i {
    color: #ff1a1a;
    font-size: 14px;
}

.sobre-text-badge span {
    color: #555;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.sobre-text-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 25px;
}

.sobre-text-highlight {
    background: linear-gradient(135deg, #ff1a1a, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sobre-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.sobre-text strong {
    color: #222;
    font-weight: 700;
}

/* ===== DIFERENCIAIS ===== */
.sobre-diferenciais {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 30px 0 35px;
}

.diferencial-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
    border-color: rgba(255, 26, 26, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.diferencial-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.08), rgba(255, 26, 26, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.diferencial-item:hover .diferencial-icon {
    background: linear-gradient(135deg, #ff1a1a, #cc0000);
    transform: scale(1.05);
}

.diferencial-item:hover .diferencial-icon i {
    color: #fff;
}

.diferencial-icon i {
    color: #ff1a1a;
    font-size: 18px;
    transition: all 0.3s ease;
}

.diferencial-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

.diferencial-text p {
    font-size: 12px;
    color: #888;
    font-weight: 400;
}

/* ===== BOTÃO ORÇAMENTO ===== */
.sobre-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #ff1a1a, #cc0000);
    color: #fff;
    padding: 16px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 26, 26, 0.2);
    border: none;
    cursor: pointer;
}

.sobre-btn .btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: glowRotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sobre-btn:hover .btn-glow {
    opacity: 1;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.sobre-btn i {
    font-size: 28px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sobre-btn:hover i {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255, 255, 255, 0.25);
}

.sobre-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.sobre-btn .btn-text-main {
    font-size: 16px;
    font-weight: 700;
}

.sobre-btn .btn-text-sub {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

.sobre-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 26, 26, 0.3);
}

.sobre-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.sobre-btn:hover::before {
    left: 100%;
}

/* ===== RESPONSIVO ===== */

/* Tablet */
@media (max-width: 992px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* No tablet e mobile: texto primeiro, imagem depois */
    .sobre-grid {
        grid-template-areas: 
            "text"
            "image";
    }

    .sobre-text-wrapper {
        grid-area: text;
        padding: 0;
    }

    .sobre-image-wrapper {
        grid-area: image;
    }

    .sobre-image {
        height: 100%;
    }

    .sobre-title {
        font-size: 2.5rem;
    }

    .sobre-text-title {
        font-size: 1.8rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .sobre {
        padding: 60px 0 70px;
        background: linear-gradient(135deg, #e5e5e5 0%, #ddd 50%, #e5e5e5 100%);
    }

    .sobre-title {
        font-size: 2rem;
    }

    .sobre-title-wrapper {
        gap: 12px;
    }

    .sobre-title-icon {
        width: 32px;
        height: 32px;
    }

    .sobre-image {
        height: 100%;
    }

    .sobre-text-title {
        font-size: 1.5rem;
    }

    .sobre-text {
        font-size: 0.95rem;
    }

    .sobre-diferenciais {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sobre-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .sobre-btn .btn-text-main {
        font-size: 15px;
    }

    .sobre-title-decoration .decoration-line {
        width: 30px;
    }

    .sobre-circle:first-of-type {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -50px;
    }

    .sobre-circle-2 {
        width: 200px;
        height: 200px;
        bottom: -80px;
        left: -30px;
    }

    .sobre-circle-3 {
        width: 120px;
        height: 120px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .sobre {
        padding: 40px 0 50px;
        background: linear-gradient(135deg, #e2e2e2 0%, #dadada 50%, #e2e2e2 100%);
    }

    .sobre-title {
        font-size: 1.6rem;
    }

    .sobre-title-icon {
        width: 40px;
        height: 40px;
    }

    .sobre-text-title {
        font-size: 1.3rem;
    }

    .sobre-text {
        font-size: 0.9rem;
    }

    .sobre-image {
        height: 100%;
    }

    .sobre-btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .sobre-btn i {
        font-size: 22px;
        padding: 6px;
    }

    .sobre-btn .btn-text-main {
        font-size: 14px;
    }

    .sobre-btn .btn-text-sub {
        font-size: 11px;
    }

    .sobre-text-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .sobre-text-badge i {
        font-size: 12px;
    }
}

/*serviços*/

/* ========================================
   SERVIÇOS
   ======================================== */
.servicos {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #d5d5d5 0%, #c8c8c8 50%, #d5d5d5 100%);
    overflow: hidden;
}

.servicos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ===== DECORAÇÕES DE FUNDO ===== */
.servicos-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.servicos-bg-shape {
    position: absolute;
    border-radius: 50%;
}

.servicos-bg-shape-1 {
    width: 700px;
    height: 700px;
    top: -250px;
    right: -200px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.05) 0%, transparent 70%);
    animation: shapeFloat1 12s ease-in-out infinite;
}

.servicos-bg-shape-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.04) 0%, transparent 70%);
    animation: shapeFloat2 15s ease-in-out infinite;
}

.servicos-bg-shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 30%;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.06) 0%, transparent 70%);
    animation: shapeFloat3 10s ease-in-out infinite;
}

@keyframes shapeFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, 30px) scale(1.05); }
}

@keyframes shapeFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.08); }
}

@keyframes shapeFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(0.9); }
}

/* ===== HEADER ===== */
.servicos-header {
    text-align: center;
    margin-bottom: 60px;
}

.servicos-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.servicos-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ff1a1a;
    background: rgba(255, 26, 26, 0.1);
    padding: 8px 24px;
    border-radius: 60px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 26, 26, 0.15);
}

.servicos-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.servicos-title-highlight {
    background: linear-gradient(135deg, #ff1a1a, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.servicos-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff1a1a, transparent);
    border-radius: 4px;
    opacity: 0.3;
}

.servicos-subtitle {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 25px;
}

.servicos-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.servicos-divider .divider-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 26, 26, 0.2));
    border-radius: 4px;
}

.servicos-divider .divider-line:last-child {
    background: linear-gradient(90deg, rgba(255, 26, 26, 0.2), transparent);
}

.servicos-divider i {
    color: #ff1a1a;
    font-size: 18px;
    animation: firePulse 2s ease-in-out infinite;
}

@keyframes firePulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* ===== GRID DE SERVIÇOS ===== */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* ===== CARD DE SERVIÇO ===== */
.servico-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.servico-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 26, 26, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.servico-card:nth-child(1) { animation-delay: 0.1s; }
.servico-card:nth-child(2) { animation-delay: 0.2s; }
.servico-card:nth-child(3) { animation-delay: 0.3s; }
.servico-card:nth-child(4) { animation-delay: 0.4s; }
.servico-card:nth-child(5) { animation-delay: 0.5s; }
.servico-card:nth-child(6) { animation-delay: 0.6s; }
.servico-card:nth-child(7) { animation-delay: 0.7s; }
.servico-card:nth-child(8) { animation-delay: 0.8s; }

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glow do card */
.servico-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.servico-card:hover .servico-card-glow {
    opacity: 1;
}

/* Ícone do card */
.servico-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.08), rgba(255, 26, 26, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.servico-card-icon i {
    font-size: 28px;
    color: #ff1a1a;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.servico-card:hover .servico-card-icon {
    background: linear-gradient(135deg, #ff1a1a, #cc0000);
    transform: scale(1.05) rotate(-5deg);
}

.servico-card:hover .servico-card-icon i {
    color: #fff;
    transform: scale(1.1);
}

/* Conteúdo do card */
.servico-card-content {
    position: relative;
    z-index: 2;
}

.servico-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.servico-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

.servico-card-number {
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    line-height: 1;
    transition: all 0.4s ease;
}

.servico-card:hover .servico-card-number {
    color: rgba(255, 26, 26, 0.04);
    transform: scale(1.1);
}

/* ===== CTA ===== */
.servicos-cta {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: 24px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.servicos-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.05), transparent);
    pointer-events: none;
}

.servicos-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.servicos-cta-text {
    flex: 1;
}

.cta-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff1a1a;
    margin-bottom: 12px;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 10px;
}

.cta-highlight {
    background: linear-gradient(135deg, #ff1a1a, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Botão CTA */
.servicos-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #ff1a1a, #cc0000);
    color: #fff;
    padding: 16px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 26, 26, 0.25);
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}

.servicos-cta-btn .btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    animation: glowRotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.servicos-cta-btn:hover .btn-glow {
    opacity: 1;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.servicos-cta-btn i:first-child {
    font-size: 28px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.servicos-cta-btn:hover i:first-child {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255, 255, 255, 0.25);
}

.servicos-cta-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.servicos-cta-btn .btn-text-main {
    font-size: 16px;
    font-weight: 700;
}

.servicos-cta-btn .btn-text-sub {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

.servicos-cta-btn .btn-arrow {
    margin-left: 4px;
    transition: all 0.3s ease;
}

.servicos-cta-btn .btn-arrow i {
    font-size: 18px;
    background: none;
    padding: 0;
    border-radius: 0;
}

.servicos-cta-btn:hover .btn-arrow {
    transform: translateX(6px);
}

.servicos-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.6s ease;
}

.servicos-cta-btn:hover::before {
    left: 100%;
}

.servicos-cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 26, 26, 0.35);
}

/* ===== RESPONSIVO ===== */

/* Tablet */
@media (max-width: 992px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .servicos-title {
        font-size: 2.8rem;
    }

    .servicos-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .servicos-cta {
        padding: 40px 30px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .servicos-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .servicos {
        padding: 60px 0;
        background: linear-gradient(135deg, #d0d0d0 0%, #c2c2c2 50%, #d0d0d0 100%);
    }

    .servicos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .servicos-title {
        font-size: 2.2rem;
    }

    .servicos-subtitle {
        font-size: 1rem;
    }

    .servico-card {
        padding: 20px 16px;
    }

    .servico-card-icon {
        width: 56px;
        height: 56px;
    }

    .servico-card-icon i {
        font-size: 22px;
    }

    .servico-card-content h3 {
        font-size: 15px;
    }

    .servico-card-content p {
        font-size: 12px;
    }

    .servico-card-number {
        font-size: 40px;
    }

    .servicos-cta {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 0.95rem;
    }

    .servicos-cta-btn {
        padding: 14px 24px;
        font-size: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .servicos-cta-btn i:first-child {
        font-size: 24px;
        padding: 6px;
    }

    .servicos-cta-btn .btn-text-main {
        font-size: 15px;
    }

    .servicos-cta-btn .btn-text-sub {
        font-size: 11px;
    }

    .servicos-divider .divider-line {
        width: 30px;
    }

    .servicos-tag {
        font-size: 11px;
        padding: 6px 16px;
    }

    .servicos-bg-shape-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
    }

    .servicos-bg-shape-2 {
        width: 200px;
        height: 200px;
        bottom: -80px;
        left: -50px;
    }

    .servicos-bg-shape-3 {
        width: 150px;
        height: 150px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .servicos {
        padding: 40px 0;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .servicos-title {
        font-size: 1.8rem;
    }

    .servico-card {
        padding: 18px 14px;
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .servico-card-icon {
        width: 50px;
        height: 50px;
        margin: 0;
        flex-shrink: 0;
    }

    .servico-card-icon i {
        font-size: 20px;
    }

    .servico-card-content {
        flex: 1;
    }

    .servico-card-content h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .servico-card-content p {
        font-size: 12px;
    }

    .servico-card-number {
        font-size: 30px;
        top: -5px;
        right: 0;
    }

    .servicos-cta {
        padding: 24px 16px;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .servicos-cta-btn {
        padding: 12px 18px;
        font-size: 14px;
        gap: 12px;
    }

    .servicos-cta-btn i:first-child {
        font-size: 20px;
        padding: 4px;
    }

    .servicos-cta-btn .btn-text-main {
        font-size: 14px;
    }

    .servicos-cta-btn .btn-text-sub {
        font-size: 10px;
    }

    .servicos-cta-btn .btn-arrow i {
        font-size: 14px;
    }
}

/* ========================================
   APLICAÇÕES
   ======================================== */
.aplicacoes {
    position: relative;
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 50%, #f0f0f0 100%);
    overflow: hidden;
}

.aplicacoes-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ===== DECORAÇÕES DE FUNDO ===== */
.aplicacoes::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.aplicacoes::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== HEADER ===== */
.aplicacoes-header {
    text-align: center;
    margin-bottom: 45px;
}

.aplicacoes-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff1a1a;
    background: rgba(255, 26, 26, 0.06);
    padding: 6px 20px;
    border-radius: 60px;
    margin-bottom: 14px;
}

.aplicacoes-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 12px;
}

.aplicacoes-title-highlight {
    background: linear-gradient(135deg, #ff1a1a, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aplicacoes-subtitle {
    font-size: 1.05rem;
    color: #777;
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
}

/* ===== GRID DE APLICAÇÕES ===== */
.aplicacoes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 50px;
}

/* ===== ITEM DE APLICAÇÃO ===== */
.aplicacao-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.aplicacao-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff1a1a, #cc0000);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.aplicacao-item:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: #ff1a1a;
    box-shadow: 0 12px 40px rgba(255, 26, 26, 0.08);
}

.aplicacao-item:hover::before {
    opacity: 0.04;
}

/* Ícone */
.aplicacao-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 26, 26, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.aplicacao-icon i {
    font-size: 22px;
    color: #ff1a1a;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.aplicacao-item:hover .aplicacao-icon {
    background: #ff1a1a;
    transform: scale(1.05) rotate(-5deg);
}

.aplicacao-item:hover .aplicacao-icon i {
    color: #fff;
    transform: scale(1.05);
}

/* Nome */
.aplicacao-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s ease;
    display: block;
}

.aplicacao-item:hover .aplicacao-name {
    color: #ff1a1a;
}

/* Efeito de brilho */
.aplicacao-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.aplicacao-item:hover::after {
    opacity: 1;
}

/* ===== BANNER COM IMAGEM ===== */
.aplicacoes-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Imagem */
.banner-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 340px;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.aplicacoes-banner:hover .banner-image {
    transform: scale(1.03);
}

.banner-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 26, 26, 0.08), rgba(0, 0, 0, 0.2));
    pointer-events: none;
}

/* Conteúdo do Banner */
.banner-content {
    padding: 40px 48px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    position: relative;
    overflow: hidden;
}

.banner-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.banner-text {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ff1a1a;
    margin-bottom: 12px;
}

.banner-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}

.banner-highlight {
    background: linear-gradient(135deg, #ff1a1a, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 90%;
}

/* Stats */
.banner-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 28px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-number::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #ff1a1a;
    margin: 4px 0 2px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

/* Botão */
.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 14px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.banner-btn i:first-child {
    font-size: 22px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.banner-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.banner-btn .btn-text-main {
    font-size: 15px;
    font-weight: 700;
}

.banner-btn .btn-text-sub {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
}

.banner-btn .btn-arrow {
    margin-left: 4px;
    transition: all 0.3s ease;
}

.banner-btn .btn-arrow i {
    font-size: 16px;
    background: none;
    padding: 0;
    border-radius: 0;
}

.banner-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.6s ease;
}

.banner-btn:hover::before {
    left: 100%;
}

.banner-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.banner-btn:hover i:first-child {
    transform: scale(1.08) rotate(-5deg);
    background: rgba(255, 255, 255, 0.25);
}

.banner-btn:hover .btn-arrow {
    transform: translateX(6px);
}

/* ===== RESPONSIVO ===== */

/* Tablet */
@media (max-width: 992px) {
    .aplicacoes-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .aplicacoes-title {
        font-size: 2.2rem;
    }

    .aplicacoes-banner {
        grid-template-columns: 1fr;
    }

    .banner-image-wrapper {
        min-height: 240px;
        order: 1;
    }

    .banner-content {
        padding: 32px 36px;
        order: 2;
    }

    .banner-title {
        font-size: 1.8rem;
    }

    .banner-description {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .aplicacoes {
        padding: 50px 0 60px;
    }

    .aplicacoes-header {
        margin-bottom: 32px;
    }

    .aplicacoes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 36px;
    }

    .aplicacoes-title {
        font-size: 1.8rem;
    }

    .aplicacoes-subtitle {
        font-size: 0.95rem;
    }

    .aplicacao-item {
        padding: 16px 12px;
        border-radius: 12px;
    }

    .aplicacao-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        margin-bottom: 8px;
    }

    .aplicacao-icon i {
        font-size: 18px;
    }

    .aplicacao-name {
        font-size: 13px;
    }

    .banner-content {
        padding: 24px 20px;
    }

    .banner-title {
        font-size: 1.4rem;
    }

    .banner-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .banner-stats {
        gap: 20px;
        margin-bottom: 22px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 11px;
    }

    .banner-btn {
        font-size: 14px;
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
    }

    .banner-btn i:first-child {
        font-size: 18px;
        padding: 4px;
    }

    .banner-btn .btn-text-main {
        font-size: 14px;
    }

    .banner-btn .btn-text-sub {
        font-size: 10px;
    }

    .banner-image-wrapper {
        min-height: 180px;
    }

    .aplicacoes-tag {
        font-size: 11px;
        padding: 4px 16px;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .aplicacoes {
        padding: 40px 0 50px;
    }

    .aplicacoes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .aplicacoes-title {
        font-size: 1.5rem;
    }

    .aplicacao-item {
        padding: 14px 10px;
        border-radius: 10px;
    }

    .aplicacao-icon {
        width: 38px;
        height: 38px;
        border-radius: 8px;
        margin-bottom: 6px;
    }

    .aplicacao-icon i {
        font-size: 16px;
    }

    .aplicacao-name {
        font-size: 12px;
    }

    .banner-content {
        padding: 20px 16px;
    }

    .banner-title {
        font-size: 1.2rem;
    }

    .banner-description {
        font-size: 0.85rem;
    }

    .banner-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .banner-btn {
        font-size: 13px;
        padding: 10px 16px;
        gap: 10px;
    }

    .banner-btn i:first-child {
        font-size: 16px;
        padding: 4px;
    }

    .banner-btn .btn-text-main {
        font-size: 13px;
    }

    .banner-btn .btn-arrow i {
        font-size: 14px;
    }

    .banner-image-wrapper {
        min-height: 150px;
    }

    .aplicacoes-tag {
        font-size: 10px;
        padding: 4px 12px;
    }
}

/*form*/

/* ========================================
   CONTATO
   ======================================== */
.contato {
    position: relative;
    padding: 70px 0 80px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 50%, #f5f5f5 100%);
    overflow: hidden;
}

.contato-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ===== DECORAÇÕES DE FUNDO ===== */
.contato-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.contato-bg-circle {
    position: absolute;
    border-radius: 50%;
}

.contato-bg-circle-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.04) 0%, transparent 70%);
    animation: bgFloat1 12s ease-in-out infinite;
}

.contato-bg-circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -50px;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.03) 0%, transparent 70%);
    animation: bgFloat2 15s ease-in-out infinite;
}

.contato-bg-circle-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 25%;
    background: radial-gradient(circle, rgba(255, 26, 26, 0.05) 0%, transparent 70%);
    animation: bgFloat3 10s ease-in-out infinite;
}

@keyframes bgFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.05); }
}

@keyframes bgFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -20px) scale(1.08); }
}

@keyframes bgFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(0.9); }
}

/* ===== WRAPPER ===== */
.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

/* ===== COLUNA ESQUERDA - INFORMAÇÕES ===== */
.contato-info {
    display: flex;
    align-items: center;
}

.contato-info-content {
    width: 100%;
}

.contato-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff1a1a;
    background: rgba(255, 26, 26, 0.06);
    padding: 6px 20px;
    border-radius: 60px;
    margin-bottom: 16px;
}

.contato-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 12px;
}

.contato-title-highlight {
    background: linear-gradient(135deg, #ff1a1a, #cc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contato-subtitle {
    font-size: 1.05rem;
    color: #888;
    margin-bottom: 35px;
}

/* Detalhes de contato */
.contato-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 35px;
}

.contato-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.contato-detail-item:hover {
    transform: translateX(6px);
    border-color: rgba(255, 26, 26, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 26, 26, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 18px;
    color: #ff1a1a;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Redes Sociais */
.contato-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background: #ff1a1a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 26, 26, 0.2);
    border-color: #ff1a1a;
}

/* ===== COLUNA DIREITA - FORMULÁRIO ===== */
.contato-form-wrapper {
    display: flex;
    align-items: center;
}

.contato-form-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 36px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.contato-form-container:hover {
    box-shadow: 0 30px 80px rgba(255, 26, 26, 0.06);
}

/* Header do Form */
.form-header {
    margin-bottom: 30px;
}

.form-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #888;
}

/* Campos do Form */
.contato-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.form-label i {
    color: #ff1a1a;
    font-size: 14px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    color: #1a1a1a;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #ff1a1a;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 26, 26, 0.04);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #bbb;
}

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

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-top: 4px;
}

.form-checkbox-input {
    display: none;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 6px;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 1px;
    background: #fff;
}

.checkbox-custom i {
    font-size: 12px;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.form-checkbox-input:checked + .form-checkbox-label .checkbox-custom {
    background: #ff1a1a;
    border-color: #ff1a1a;
}

.form-checkbox-input:checked + .form-checkbox-label .checkbox-custom i {
    opacity: 1;
    transform: scale(1);
}

.form-checkbox-input:checked + .form-checkbox-label .checkbox-text {
    color: #1a1a1a;
}

/* Erros */
.form-error {
    display: none;
    font-size: 12px;
    color: #ff1a1a;
    margin-top: 6px;
    font-weight: 500;
}

.form-group.error .form-input,
.form-group.error .form-textarea {
    border-color: #ff1a1a;
    background: rgba(255, 26, 26, 0.02);
}

.form-group.error .form-error {
    display: block;
}

/* Botão */
.form-btn {
    position: relative;
    width: 100%;
    padding: 16px 28px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.2);
    margin-top: 4px;
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 2;
}

.form-btn i:first-child {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.form-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.form-btn .btn-text-main {
    font-size: 16px;
    font-weight: 700;
}

.form-btn .btn-text-sub {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
}

.form-btn .btn-arrow {
    transition: all 0.3s ease;
}

.form-btn .btn-arrow i {
    font-size: 18px;
    background: none;
    padding: 0;
    border-radius: 0;
}

.form-btn .btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    animation: glowRotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.form-btn:hover .btn-glow {
    opacity: 1;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.6s ease;
}

.form-btn:hover::before {
    left: 100%;
}

.form-btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.form-btn:hover i:first-child {
    transform: scale(1.08) rotate(-5deg);
    background: rgba(255, 255, 255, 0.25);
}

.form-btn:hover .btn-arrow {
    transform: translateX(6px);
}

/* Sucesso */
.form-success {
    display: none;
    text-align: center;
    padding: 30px 20px;
    animation: successFadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-success.active {
    display: block;
}

.contato-form.hidden {
    display: none;
}

@keyframes successFadeIn {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon i {
    font-size: 36px;
    color: #25D366;
}

.success-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.success-text {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 24px;
}

.success-btn {
    padding: 12px 32px;
    background: rgba(255, 26, 26, 0.06);
    color: #ff1a1a;
    border: 1px solid rgba(255, 26, 26, 0.1);
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-btn:hover {
    background: rgba(255, 26, 26, 0.1);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVO
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Tablet: informações primeiro, formulário depois */
    .contato-info {
        order: 1;
    }

    .contato-form-wrapper {
        order: 2;
    }

    .contato-title {
        font-size: 2.3rem;
    }

    .contato-form-container {
        padding: 32px 28px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contato {
        padding: 50px 0 60px;
    }

    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Mobile: informações primeiro, formulário depois */
    .contato-info {
        order: 1;
    }

    .contato-form-wrapper {
        order: 2;
    }

    .contato-title {
        font-size: 1.8rem;
    }

    .contato-subtitle {
        font-size: 0.95rem;
    }

    .contato-form-container {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .form-title {
        font-size: 1.3rem;
    }

    .form-subtitle {
        font-size: 0.9rem;
    }

    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 12px 16px;
    }

    .contato-detail-item {
        padding: 12px 14px;
    }

    .detail-value {
        font-size: 14px;
    }

    .form-btn {
        font-size: 15px;
        padding: 14px 20px;
    }

    .form-btn .btn-text-main {
        font-size: 15px;
    }

    .form-btn i:first-child {
        font-size: 20px;
    }

    .contato-bg-circle-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -80px;
    }

    .contato-bg-circle-2 {
        width: 200px;
        height: 200px;
        bottom: -80px;
        left: -40px;
    }

    .contato-bg-circle-3 {
        width: 120px;
        height: 120px;
    }

    .contato-social {
        flex-wrap: wrap;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .contato {
        padding: 40px 0 50px;
    }

    .contato-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Mobile pequeno: informações primeiro, formulário depois */
    .contato-info {
        order: 1;
    }

    .contato-form-wrapper {
        order: 2;
    }

    .contato-title {
        font-size: 1.5rem;
    }

    .contato-form-container {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .form-title {
        font-size: 1.1rem;
    }

    .form-input,
    .form-textarea {
        font-size: 13px;
        padding: 10px 14px;
        border-radius: 10px;
    }

    .form-textarea {
        min-height: 100px;
    }

    .form-btn {
        font-size: 14px;
        padding: 12px 16px;
    }

    .form-btn .btn-text-main {
        font-size: 14px;
    }

    .form-btn .btn-text-sub {
        font-size: 10px;
    }

    .form-btn i:first-child {
        font-size: 18px;
        padding: 4px;
    }

    .form-checkbox-label {
        font-size: 13px;
    }

    .checkbox-custom {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }

    .contato-detail-item {
        padding: 10px 12px;
        border-radius: 10px;
    }

    .detail-icon {
        width: 36px;
        height: 36px;
    }

    .detail-icon i {
        font-size: 15px;
    }

    .detail-value {
        font-size: 13px;
    }

    .detail-label {
        font-size: 10px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
    }

    .success-icon i {
        font-size: 28px;
    }

    .success-title {
        font-size: 1.2rem;
    }

    .success-text {
        font-size: 0.85rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .contato-tag {
        font-size: 10px;
        padding: 4px 14px;
    }
}


.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-contato {
    flex: 1;
    min-width: 280px;
}

.footer-servicos {
    flex: 2;
    min-width: 280px;
}


.footer-logo {
    width: 90px;
    height: auto;
    margin-bottom: 15px;
    display: block;
}


.footer h3 {
    background: linear-gradient(90deg, #ffffff, #fd0423, #ffffff);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brilhoTexto 4s linear infinite;

    font-size: 16px;
    margin-bottom: 15px;
}

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


.footer-contato p {
    color: #ddd;
    font-size: 14px;
    line-height: 1.5;
}


.lista-servicos {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 3;
    column-gap: 40px;
}

.lista-servicos li {
    break-inside: avoid;
    margin-bottom: 6px;
    color: #ddd;
    font-size: 14px;
}


.toggle-servicos {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seta {
    display: none;
    transition: transform 0.3s ease;
}


@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
    }

    .lista-servicos {
        column-count: 1;
        display: none;
    }

    .lista-servicos.ativo {
        display: block;
    }

    .seta {
        display: inline-block;
    }

    .seta.rotacionar {
        transform: rotate(180deg);
    }

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

@media (max-width: 768px) {
    .espaco-mobile {
        height: 120px;
    }
}


.cumulus-whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 30px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
  animation: cumulusGlow 1.5s infinite alternate;
  z-index: 9999;
  transition: 0.3s;
}

.cumulus-whatsapp-float img {
  width: 32px;
  height: 32px;
}

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


@keyframes cumulusGlow {
  from {
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.6),
                0 0 20px rgba(37, 211, 102, 0.4);
  }
  to {
    box-shadow: 0 0 25px rgba(37, 211, 102, 1),
                0 0 45px rgba(37, 211, 102, 0.8);
  }
}

@media (max-width: 768px) {
  .cumulus-whatsapp-float {
    width: 55px;
    height: 55px;
    left: 15px;
    bottom: 20px;
  }

  .cumulus-whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}