:root {
    /* Light Mode Colors - Premium Palette */
    --clr-bg: #fdfdfd;
    --clr-bg-alt: #ffffff;
    --clr-surface: rgba(0, 50, 100, 0.04);
    --clr-border: rgba(0, 50, 100, 0.1);
    
    /* Neon Logo Blue Palette */
    --clr-primary: #004dff;         /* Azul vibrante (base neon) */
    --clr-primary-dark: #003E7E;    /* Azul Safira da Logo */
    --clr-primary-hover: #0036b3;
    
    --clr-gold: #D4AF37;            /* Premium Gold */
    --clr-gold-hover: #B8860B;
    
    --clr-text: #0a0a10;
    --clr-text-muted: #4a5062;
    
    /* Premium Gradients */
    --grad-primary: linear-gradient(135deg, #0056b3 0%, #003E7E 100%);
    --grad-primary-neon: linear-gradient(135deg, #1e90ff 0%, #003E7E 100%);
    --grad-gold: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
    
    /* Shadows & Glows */
    --shadow-glass: 0 8px 32px rgba(0, 62, 126, 0.08);
    --shadow-glow: 0 0 25px rgba(0, 62, 126, 0.45);
    --shadow-glow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
    
    /* Typography */
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Sizes */
    --radius-md: 16px;
    --radius-lg: 24px;
    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--clr-bg);
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background-color: var(--clr-bg);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Base Elements */
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
p { color: var(--clr-text-muted); }

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Background blobs - mais sutis no light mode */
.blob-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.18;
    pointer-events: none;
}
.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,153,204,0.5) 0%, rgba(0,0,0,0) 70%);
    top: -100px;
    left: -200px;
}
.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,81,255,0.4) 0%, rgba(0,0,0,0) 70%);
    bottom: 20%;
    right: -100px;
}

/* Glassmorphism - Light Mode */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.glass-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.05) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
}

.glass-card:hover::before {
    left: 150%;
}

/* Buttons */
.btn-primary {
    background: var(--grad-primary-neon);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px; /* Pill-style */
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-glow);
    border: none;
    display: inline-block;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 62, 126, 0.6);
    filter: brightness(1.15);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--clr-primary);
    font-weight: 700;
    font-family: var(--font-head);
    border-radius: 50px; /* Pill-style */
    border: 2px solid var(--clr-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-secondary:hover {
    background: var(--clr-primary);
    color: #ffffff;
    box-shadow: var(--shadow-glow);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}
.header.scrolled {
    background: rgba(248, 249, 252, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    padding: 12px 0;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    height: 42px;
    width: 42px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--clr-primary);
    box-shadow: 0 0 15px rgba(0, 62, 126, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
}

.logo-text {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: var(--grad-primary); /* Tom sólido da logo */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a:hover {
    color: var(--clr-primary);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--clr-primary);
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    transition: 0.3s;
}

/* Hero Section - Layout Split (Texto + Vídeo) */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

/* Logo + Nome da Marca no Hero */
.hero-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-brand-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 153, 204, 0.25));
}

.hero-brand-name {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 153, 204, 0.10);
    border: 1px solid rgba(0, 153, 204, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-text h1 {
    font-size: clamp(2.6rem, 4vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text h1 span, h2 span {
    background: var(--grad-primary-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(0, 77, 255, 0.2));
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Stats na coluna esquerda */
.hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stat-glass {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
}

.stat-number {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--clr-primary); /* Volta para azul neon */
    line-height: 1;
}

.stat-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    color: var(--clr-text-muted);
}

/* Card do vídeo à direita */
.hero-video-card {
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    background: #000;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 30px 80px rgba(0, 153, 204, 0.12);
    height: 520px;
}

.hero-video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--clr-bg-alt);
}
.section-title {
    text-align: center;
    margin-bottom: 64px;
}
.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.section-title p {
    max-width: 600px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.service-card {
    padding: 0;
    height: 320px;
    background-image: var(--card-bg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: default;
}

/* Overlay escuro sobre a imagem para legibilidade */
.card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(9, 9, 11, 0.85) 0%,
        rgba(9, 9, 11, 0.30) 60%,
        rgba(9, 9, 11, 0.10) 100%
    );
    transition: background 0.4s ease;
    z-index: 0;
}

.service-card:hover .card-img-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 100, 180, 0.80) 0%,
        rgba(0, 50, 120, 0.40) 60%,
        rgba(0, 30, 80, 0.15) 100%
    );
}

/* Conteúdo dentro do card (sobre o overlay) */
.card-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 1;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 153, 204, 0.20);
}

.service-card .icon-wrap {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    position: relative;
    /* Imagem de fundo: vidraçaria / instalação de vidros em obra */
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

/* Overlay escuro sobre a imagem para garantir legibilidade */
.benefits-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 15, 40, 0.82) 0%, rgba(0, 50, 100, 0.75) 100%);
    z-index: 0;
}

/* Garante que o conteúdo fique acima do overlay */
.container-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tall-card {
    height: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-content {
    padding: 40px;
    z-index: 2;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: #ffffff;
}

.check-list li {
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* Textos da coluna direita ficam brancos no fundo escuro */
.benefits-text h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffffff;
}

.benefit-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.b-icon {
    font-size: 2rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-primary); /* Deep Blue Background */
    border: 1px solid var(--clr-gold);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    color: #ffffff;
}

.b-info h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.b-info p {
    color: rgba(255, 255, 255, 0.75);
}


/* CTA Section */
.cta-section {
    padding: 100px 0;
}
.cta-box {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

/* Imagem de fundo do card CTA */
.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 80, 160, 0.85) 0%, rgba(0, 40, 90, 0.75) 100%);
    backdrop-filter: blur(2px);
}

/* Conteúdo acima da imagem */
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 64px 24px;
}
.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #ffffff;
}
.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.85);
}
.large-btn {
    font-size: 1.1rem;
    padding: 18px 48px;
    background: var(--grad-primary-neon);
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px; /* Pill-style */
}

.large-btn:hover {
    background: var(--grad-primary-neon);
    filter: brightness(1.1);
    box-shadow: 0 10px 30px rgba(0, 62, 126, 0.4);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f8f9fc;
}

.testimonials-slider-wrap {
    position: relative;
    padding: 20px 0;
}

.testimonials-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.testimonial-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.slider-hint {
    text-align: center;
    margin-top: 32px;
    color: var(--clr-text-muted);
    font-weight: 600;
    animation: pulse 2s infinite;
}

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

@media (min-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: var(--clr-bg);
}

.location-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.location-info {
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Fundo da info da loja */
.loc-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1516455590571-18256e5bb9ff?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.loc-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 80, 160, 0.9) 0%, rgba(0, 30, 70, 0.8) 100%);
}

.loc-content {
    position: relative;
    z-index: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #ffffff;
}

.loc-content p {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.15rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.location-section .section-title h2 span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.loc-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.loc-icon {
    font-size: 1.5rem;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

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

@media (max-width: 768px) {
    .location-card {
        grid-template-columns: 1fr;
    }
    .location-info {
        padding: 32px;
        order: 2;
    }
    .map-container {
        height: 300px;
        order: 1;
    }
}

/* Footer */
footer {
    border-top: 1px solid var(--clr-border);
    padding: 64px 0 24px;
    background: #f0f2f7;
}
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}
.footer-logo {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--clr-primary);
    margin-bottom: 20px;
}
.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
}
.footer-col a, .footer-col p {
    display: block;
    margin-bottom: 16px;
    color: var(--clr-text-muted);
}
.footer-col a:hover {
    color: var(--clr-primary);
}
.social-link {
    font-weight: 600;
    color: var(--clr-text) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.insta-icon {
    transition: transform 0.3s ease;
}

.social-link:hover .insta-icon {
    transform: scale(1.1);
    color: var(--clr-primary);
}
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive tweaks */
@media (max-width: 991px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-video-card { height: 360px; }
    .container-benefits { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2.8rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .desktop-btn { display: none; }
    .mobile-toggle { display: flex; z-index: 1001; }
    
    .navbar {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: rgba(248, 249, 252, 0.97);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
    }
    .navbar.active { right: 0; }
    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    .nav-links a { font-size: 1.5rem; }
    
    .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

    .hero-buttons { flex-direction: column; }
    .hero-buttons a { text-align: center; }
    .footer-content { grid-template-columns: 1fr; gap: 32px; }
}

/* Developer Credit Styling */
.dev-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dev-link:hover {
    color: var(--clr-primary);
}

.footer-bottom span {
    margin: 0 10px;
    opacity: 0.3;
}

/* --- NOVAS ADIÇÕES: WhatsApp Flutuante & Formulário --- */

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Seção do Formulário de Orçamento */
.budget-form-section {
    padding: 100px 0;
    background: var(--clr-bg);
}

.budget-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.budget-info h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.budget-info p {
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.budget-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--clr-primary);
}

.budget-form-container {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--clr-text);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 4px rgba(0, 77, 255, 0.1);
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--clr-primary);
    font-style: italic;
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@media (max-width: 992px) {
    .budget-form-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}
