/* static/style_replica.css */
:root {
    --background: hsl(240 10% 3.9%);
    --foreground: hsl(0 0% 98%);
    --card: hsl(240 10% 6%);
    --card-foreground: hsl(0 0% 98%);
    --popover: hsl(240 10% 8%);
    --popover-foreground: hsl(0 0% 98%);
    --primary: hsl(262 83% 58%); /* Roxo principal */
    --primary-foreground: hsl(0 0% 100%);
    --primary-glow: hsl(262 83% 68%);
    --secondary: hsl(240 5% 15%);
    --secondary-foreground: hsl(0 0% 98%);
    --muted: hsl(240 5% 20%);
    --muted-foreground: hsl(240 5% 64.9%);
    --accent: hsl(262 83% 58%);
    --accent-foreground: hsl(0 0% 100%);
    --border: hsl(240 10% 15%);
    --input: hsl(240 10% 15%);
    --ring: hsl(262 83% 58%);
    --radius: 0.75rem; /* 12px */

    /* Gradientes e Sombras */
    --gradient-primary: linear-gradient(135deg, hsl(262 83% 58%), hsl(280 83% 48%));
    --gradient-dark: linear-gradient(180deg, hsl(240 10% 3.9%), hsl(240 10% 8%));
    --gradient-glow: radial-gradient(circle at center, hsla(262, 83%, 58%, 0.15), transparent 70%);
    --shadow-glow: 0 0 40px hsla(262, 83%, 58%, 0.3);
    --shadow-glow-lg: 0 0 80px hsla(262, 83%, 58%, 0.4);
    --shadow-card: 0 8px 32px hsla(240, 10%, 0%, 0.4);

    /* Efeito Glass */
    --glass-bg: hsla(240, 10%, 8%, 0.6);
    --glass-border: hsla(240, 10%, 20%, 0.3);
    --glass-blur: blur(12px);

    /* Transições */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Fonte */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset Básico e Configurações Globais */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-width: 0;
    border-style: solid;
    border-color: var(--border);
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--font-primary);
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    background-color: var(--background);
    color: var(--foreground);
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
}

a {
    color: inherit;
    text-decoration: inherit;
}

img, svg, video {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
    background-color: transparent;
    background-image: none;
    cursor: pointer;
    text-transform: none;
    -webkit-appearance: button;
}

input, textarea, select {
     font-family: inherit;
     font-size: 100%;
     line-height: inherit;
     color: inherit;
     margin: 0;
}

ul {
     list-style: none;
}

/* Container Atualizado - Mais Largo */
.container {
    width: 100%;
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

/* Efeito Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}
.glass-card-inner {
     background: hsla(240, 10%, 12%, 0.5);
     backdrop-filter: var(--glass-blur);
     -webkit-backdrop-filter: var(--glass-blur);
     border: 1px solid hsla(240, 10%, 25%, 0.4);
     border-radius: calc(var(--radius) - 4px);
}

/* Gradientes e Efeitos */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.glow-primary {
    box-shadow: var(--shadow-glow);
}
.group:hover .glow-primary,
*:hover > .glow-primary {
     box-shadow: var(--shadow-glow-lg);
}

/* Animações */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-subtle {
     0%, 100% { opacity: 0.5; }
     50% { opacity: 1; }
}
.animate-pulse-subtle {
     animation: pulse-subtle 4s infinite alternate;
}

@keyframes pulse {
    50% { opacity: .5; }
}
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Botões */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
    outline: none;
    border: 1px solid transparent;
}
.button:focus-visible {
     box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--ring);
}
.button:disabled {
     pointer-events: none;
     opacity: 0.5;
}

/* Tamanhos de Botão */
.button.size-default { height: 2.5rem; padding: 0 1rem; }
.button.size-lg { height: 2.75rem; padding: 0 2rem; }
.button.size-icon { height: 2.5rem; width: 2.5rem; }
.button.size-sm { height: 2.25rem; padding: 0 0.75rem; }

/* Variantes de Botão */
.button.variant-hero { background: var(--gradient-primary); color: var(--primary-foreground); box-shadow: var(--shadow-glow); border-color: transparent;}
.button.variant-hero:hover { opacity: 0.9; box-shadow: var(--shadow-glow-lg); transform: translateY(-2px); }
.button.variant-glass { background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border-color: var(--glass-border); color: var(--foreground); }
.button.variant-glass:hover { background: hsla(262, 83%, 58%, 0.2); border-color: hsla(262, 83%, 58%, 0.3); }
.button.variant-ghost { background: transparent; border-color: transparent; }
.button.variant-ghost:hover { background: var(--muted); }
.button.variant-outline { border-color: var(--border); background: transparent; }
.button.variant-outline:hover { background: var(--muted); border-color: var(--muted-foreground); }
.button.variant-secondary { background: var(--secondary); color: var(--secondary-foreground); border-color: var(--secondary); }
.button.variant-secondary:hover { background: hsl(240 5% 20%); border-color: hsl(240 5% 20%); }

/* Ícones dentro dos botões */
.button svg {
     pointer-events: none;
     width: 1rem;
     height: 1rem;
     flex-shrink: 0;
     vertical-align: middle;
}
.button.size-lg svg, .button.size-icon svg { width: 1.25rem; height: 1.25rem; }
.button.size-sm svg { width: 0.875rem; height: 0.875rem; }
.button .button-icon-right { margin-left: 0.5rem; transition: transform 0.2s ease; }
.button.group:hover .button-icon-right { transform: translateX(0.25rem); }
.button .button-icon-sm { width: 1rem; height: 1rem; }
.button .button-icon-left { margin-right: 0.5rem; }

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 0;
}
.background-effects { position: absolute; inset: 0; z-index: 0; }
.gradient-glow { position: absolute; inset: 0; background: var(--gradient-glow); opacity: 0.5; animation: pulse-subtle 4s infinite alternate; }
.grid-pattern { position: absolute; inset: 0; background-image: linear-gradient(hsla(262, 83%, 58%, 0.03) 1px, transparent 1px), linear-gradient(90deg, hsla(262, 83%, 58%, 0.03) 1px, transparent 1px); background-size: 64px 64px; }
.float-blob { position: absolute; border-radius: 50%; filter: blur(64px); opacity: 0.7; }
.blob1 { width: 16rem; height: 16rem; left: 2.5rem; top: 5rem; background-color: hsla(262, 83%, 58%, 0.1); animation: float 6s ease-in-out infinite; }
.blob2 { width: 24rem; height: 24rem; bottom: 5rem; right: 2.5rem; background-color: hsla(262, 83%, 58%, 0.05); animation: float 6s ease-in-out infinite 2s; }

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
}

/* Logo na Hero Section (do seu arquivo) */
.logo-hero-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}
.main-logo-hero {
    max-height: 5rem;
    max-width: 30rem;
    width: auto;
    transition: transform 0.3s ease;
}
.main-logo-hero:hover {
     transform: scale(1.05);
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}
.hero-content p {
    font-size: 1.2rem;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.hero-buttons { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }

/* Mini Cards Hero */
.hero-cards {
     margin-top: 5rem;
     display: grid;
     gap: 2rem;
}
.mini-card { border-radius: 1rem; padding: 1.5rem; transition: var(--transition-smooth); text-align: center; }
.mini-card:hover { transform: scale(1.05); box-shadow: var(--shadow-glow); }
.mini-card-icon { margin: 0 auto 1rem auto; width: 3rem; height: 3rem; color: var(--primary); transition: transform 0.3s ease; stroke-width: 1; }
.mini-card.group:hover .mini-card-icon { transform: scale(1.1); }
.mini-card h3 { margin-bottom: 0.5rem; font-size: 1.125rem; font-weight: 600; }
.mini-card p { font-size: 0.875rem; color: var(--muted-foreground); }

/* Layout Responsivo para Hero */
@media (min-width: 640px) {
    .hero-content h1 { font-size: 4.5rem; }
    .hero-content p { font-size: 1.25rem; max-width: 750px; }
    .hero-buttons { flex-direction: row; }
    .hero-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
    .hero-content h1 { font-size: 5.5rem; line-height: 1.1; }
}

/* Estilos Comuns de Seção */
.section-padding { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; color: var(--muted-foreground); max-width: 42rem; margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px; padding: 0.5rem 1rem; font-size: 0.875rem; margin-bottom: 1rem; }
.tag-pulse { width: 0.5rem; height: 0.5rem; border-radius: 50%; background-color: var(--primary); animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@media (min-width: 768px) { .section-header h2 { font-size: 3rem; } }
@media (min-width: 1024px) { .section-header h2 { font-size: 3.75rem; } }

/* ======================================== */
/* Seção Serviços (Layout Fixo)             */
/* ======================================== */
.services-container {
    max-width: 64rem; /* max-w-6xl */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* space-y-6 */
}
.service-item {
    border-radius: 1rem; /* rounded-2xl */
    overflow: hidden;
    border: 1px solid hsla(262, 83%, 58%, 0.2);
    transition: var(--transition-smooth);
    padding: 1.5rem; /* p-6 */
}
.service-item:hover {
     box-shadow: var(--shadow-glow);
     border-color: hsla(262, 83%, 58%, 0.4);
}
.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem; /* Separa o header do body */
}
.service-icon-wrapper {
     border-radius: 0.75rem;
     background-color: hsla(262, 83%, 58%, 0.1);
     padding: 0.75rem;
     flex-shrink: 0;
}
.service-header svg {
     width: 1.5rem;
     height: 1.5rem;
     color: var(--primary);
     stroke-width: 1.5;
}
.service-header h3 {
     font-size: 1.25rem;
     font-weight: 600;
}
.service-header p {
     font-size: 0.875rem;
     color: var(--muted-foreground);
}
.service-body {
     padding-left: calc(1.5rem + 1rem + 0.75rem); /* Alinha com texto do header em mobile */
}
.service-description {
     color: var(--muted-foreground);
     margin-bottom: 1.5rem;
     max-width: 75ch;
}
.service-details-grid {
     display: grid;
     gap: 1.5rem;
     align-items: center;
}
.features-grid-2col {
     display: grid;
     gap: 0.75rem 1.5rem;
}
.feature-item {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     font-size: 0.875rem;
}
.feature-dot {
     width: 0.375rem;
     height: 0.375rem;
     border-radius: 50%;
     background-color: var(--primary);
     flex-shrink: 0;
}
.service-image-container {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid hsla(262, 83%, 58%, 0.2);
    justify-self: center;
    align-self: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}
.service-image-container:hover {
     border-color: hsla(262, 83%, 58%, 0.5);
     transform: scale(1.03);
}
.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
@media (min-width: 768px) {
     .service-body {
          padding-left: 0;
     }
     .service-details-grid {
          grid-template-columns: 3fr 2fr; /* 60% texto / 40% imagem */
          align-items: start;
     }
     .features-grid-2col {
          grid-template-columns: 1fr 1fr;
     }
     .service-image-container {
          margin-top: 0;
          margin-right: 0;
          justify-self: center;
          align-self: center;
     }
}
@media (max-width: 767px) {
     .service-body {
          padding-left: 1rem;
     }
     .service-details-grid {
          grid-template-columns: 1fr;
     }
     .features-grid-2col {
          grid-template-columns: 1fr;
     }
     .service-image-container {
          margin-left: auto;
          margin-right: auto;
          width: 100%;
          max-width: 200px;
          height: auto;
     }
}

/* Carrossel UX Services */
.ux-carousel.swiper-container {
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--glass-border);
}
.ux-carousel .swiper-wrapper {}
.ux-carousel .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--card);
    display: flex;
    justify-content: center;
    align-items: center;
}
.ux-carousel .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ux-carousel .swiper-button-prev,
.ux-carousel .swiper-button-next {
    color: var(--primary);
    background-color: hsla(240, 10%, 8%, 0.5);
    backdrop-filter: blur(4px);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    transition: var(--transition-smooth);
    --swiper-navigation-size: 1.25rem;
}
.ux-carousel .swiper-button-prev:hover,
.ux-carousel .swiper-button-next:hover {
    background-color: hsla(262, 83%, 58%, 0.2);
    color: var(--primary-glow);
}
.ux-carousel .swiper-button-prev::after,
.ux-carousel .swiper-button-next::after {
    font-size: var(--swiper-navigation-size);
    font-weight: 900;
}
.ux-carousel .swiper-pagination-bullet {
    background: hsla(0, 0%, 98%, 0.5);
    opacity: 0.7;
    transition: var(--transition-smooth);
}
.ux-carousel .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    box-shadow: var(--shadow-glow);
    transform: scale(1.2);
}

/* Features UX Grid */
.features-ux-grid { margin-bottom: 4rem; display: grid; gap: 1.5rem; }
.feature-ux-card { border-radius: 1rem; padding: 1.5rem; transition: var(--transition-smooth); }
.feature-ux-card:hover { transform: scale(1.05); box-shadow: var(--shadow-glow); }
.feature-ux-icon-wrapper { margin-bottom: 1rem; display: inline-flex; border-radius: 0.75rem; background-color: hsla(262, 83%, 58%, 0.1); padding: 0.75rem; }
.feature-ux-icon { width: 1.5rem; height: 1.5rem; color: var(--primary); stroke-width: 1.5; }
.feature-ux-card h3 { margin-bottom: 0.5rem; font-weight: 600; }
.feature-ux-card p { font-size: 0.875rem; color: var(--muted-foreground); }
@media (min-width: 768px) { .features-ux-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-ux-grid { grid-template-columns: repeat(4, 1fr); } }

/* Bloco Detalhado UX Services */
.ux-details-block { border-radius: 1.5rem; padding: 2rem; }
.ux-details-grid { display: grid; gap: 3rem; }
.ux-details-block h3 { margin-bottom: 1.5rem; font-size: 1.5rem; font-weight: 700; }
.ux-details-text { display: flex; flex-direction: column; gap: 1rem; color: var(--muted-foreground); }
.ux-checklist { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.checklist-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.checklist-icon { margin-top: 0.125rem; width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--primary); stroke-width: 1.5; }
.documentation-list { display: flex; flex-direction: column; gap: 1rem; }
.doc-item { border-radius: 0.75rem; border: 1px solid hsla(262, 83%, 58%, 0.2); padding: 1rem; transition: var(--transition-smooth); display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.doc-item:hover { border-color: hsla(262, 83%, 58%, 0.5); background-color: var(--card); }
.doc-info { flex: 1; }
.doc-header { margin-bottom: 0.25rem; display: flex; align-items: center; gap: 0.5rem; }
.doc-icon { width: 1.25rem; height: 1.25rem; color: var(--primary); stroke-width: 1.5; }
.doc-info h4 { font-weight: 600; }
.doc-info p { margin-bottom: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.doc-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 0.75rem; color: var(--muted-foreground); }
.doc-type { border-radius: 0.25rem; background-color: hsla(262, 83%, 58%, 0.1); padding: 0.125rem 0.5rem; color: var(--primary); }
.doc-button { flex-shrink: 0; }
.demo-request { margin-top: 2rem; border-radius: 0.75rem; background-color: hsla(262, 83%, 58%, 0.05); padding: 1.5rem; }
.demo-request h4 { margin-bottom: 0.5rem; font-weight: 600; }
.demo-request p { margin-bottom: 1rem; font-size: 0.875rem; color: var(--muted-foreground); }
.demo-request .button { width: 100%; }
@media (min-width: 1024px) { .ux-details-grid { grid-template-columns: repeat(2, 1fr); } }

/* Seção Parceiros e Certificações */
.partners-cert-grid { display: grid; gap: 5rem; max-width: 64rem; margin: 0 auto; }
.section-subsection .section-header { margin-bottom: 3rem; }
.section-subsection .section-header h2 { font-size: 1.875rem; }
.logos-grid { display: grid; gap: 2rem; grid-template-columns: repeat(2, 1fr); }
.logo-item { border-radius: 1rem; padding: 1.5rem; display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); font-size: 1.125rem; font-weight: 600; color: var(--muted-foreground); text-align: center; }
.logo-item:hover { transform: scale(1.05); box-shadow: var(--shadow-glow); color: var(--foreground); }
.certifications-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.certification-card { border-radius: 1rem; padding: 2rem; text-align: center; transition: var(--transition-smooth); }
.certification-card:hover { transform: scale(1.05); box-shadow: var(--shadow-glow); }
.certification-icon-wrapper { margin-bottom: 1rem; display: inline-flex; border-radius: 50%; background-color: hsla(262, 83%, 58%, 0.1); padding: 1rem; }
.certification-icon { width: 2rem; height: 2rem; color: var(--primary); transition: transform 0.3s ease; stroke-width: 1; }
.certification-card.group:hover .certification-icon { transform: scale(1.1); }
.certification-card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; font-weight: 600; }
.certification-card p { color: var(--muted-foreground); }
.satisfied-clients-block { margin-top: 5rem; border-radius: 1.5rem; background: var(--gradient-primary); padding: 2rem; text-align: center; color: var(--primary-foreground); }
.satisfied-clients-block h3 { margin-bottom: 1rem; font-size: 1.5rem; font-weight: 700; }
.satisfied-clients-block p { max-width: 42rem; margin: 0 auto 1.5rem auto; opacity: 0.9; }
.stats-container { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem; }
.stat-number { margin-bottom: 0.25rem; font-size: 2.25rem; font-weight: 700; }
.stat-label { font-size: 0.875rem; opacity: 0.8; }
.stat-divider { width: 1px; height: 4rem; background-color: hsla(0, 0%, 100%, 0.2); display: none; }
@media (min-width: 640px) { .logos-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) {
    .logos-grid { grid-template-columns: repeat(3, 1fr); }
    .certifications-grid { grid-template-columns: repeat(3, 1fr); }
    .satisfied-clients-block { padding: 3rem; }
    .satisfied-clients-block h3 { font-size: 1.875rem; }
    .stat-divider { display: block; }
}
@media (min-width: 1024px) { .logos-grid { grid-template-columns: repeat(6, 1fr); } }

/* Seção Orçamento Instantâneo */
#orcamento .section-header { margin-bottom: 4rem; }
.budget-grid { display: grid; gap: 2rem; }
.budget-products { display: flex; flex-direction: column; gap: 1rem; }
.product-item { display: flex; align-items: center; gap: 1rem; padding: 1rem; border-radius: 0.75rem; border: 1px solid hsla(262, 83%, 58%, 0.2); transition: var(--transition-smooth); }
.product-item:hover { border-color: hsla(262, 83%, 58%, 0.5); }
.product-icon-wrapper { background-color: hsla(262, 83%, 58%, 0.1); border-radius: 0.5rem; padding: 0.75rem; flex-shrink: 0; }
.product-icon-wrapper svg { width: 1.5rem; height: 1.5rem; color: var(--primary); stroke-width: 1.5; }
.product-info { flex-grow: 1; }
.product-info h3 { margin-bottom: 0.25rem; font-weight: 600; }
.product-pricing { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 0.875rem; color: var(--muted-foreground); }
.install-cost { font-size: 0.75rem; }
.quantity-control { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.quantity-btn { display: inline-flex; align-items: center; justify-content: center; border-radius: calc(var(--radius) - 2px); border: 1px solid var(--border); background: transparent; height: 2.5rem; width: 2.5rem; transition: background-color 0.2s ease, border-color 0.2s ease; color: var(--foreground); }
.quantity-btn:hover:not(:disabled) { background: var(--muted); border-color: var(--muted-foreground); }
.quantity-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.quantity-btn svg { width: 1rem; height: 1rem; }
.quantity-display { width: 3rem; text-align: center; font-weight: 600; }
.quantity-hidden-input { display: none; }
.budget-summary-wrapper { /* Container */ }
.sticky-summary { position: sticky; top: 2rem; }
.budget-summary { padding: 1.5rem; border-radius: 0.75rem; border: 1px solid hsla(262, 83%, 58%, 0.2); }
.budget-summary h3 { margin-bottom: 1.5rem; font-size: 1.25rem; font-weight: 700; }
.summary-items-list { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; min-height: 50px; }
.summary-item { display: flex; justify-content: space-between; font-size: 0.875rem; }
.summary-item .item-name { color: var(--muted-foreground); }
.summary-item .item-price { font-weight: 500; }
.empty-summary { list-style: none; font-size: 0.875rem; color: var(--muted-foreground); text-align: center; padding: 1rem 0; }
.summary-totals { margin-bottom: 1.5rem; padding-top: 1rem; border-top: 1px solid hsla(262, 83%, 58%, 0.2); display: flex; flex-direction: column; gap: 0.5rem; }
.total-line { display: flex; justify-content: space-between; font-size: 0.875rem; }
.total-line span:first-child { color: var(--muted-foreground); }
.grand-total { margin-bottom: 1.5rem; border-radius: 0.75rem; background-color: hsla(262, 83%, 58%, 0.05); padding: 1rem; display: flex; justify-content: space-between; align-items: center; }
.grand-total span:first-child { font-size: 1.125rem; font-weight: 700; }
.grand-total span:last-child { font-size: 1.5rem; font-weight: 700; }
.customer-info { margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.input-group { display: flex; flex-direction: column; gap: 0.25rem; }
.input-group label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.input-field { display: flex; height: 2.5rem; width: 100%; border-radius: calc(var(--radius) - 4px); border: 1px solid var(--glass-border); background: var(--glass-bg); padding: 0.5rem 0.75rem; font-size: 0.875rem; color: var(--foreground); outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease; backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); }
.input-field::placeholder { color: var(--muted-foreground); }
.input-field:focus-visible { border-color: var(--ring); box-shadow: 0 0 0 2px var(--ring); }
.submit-budget-btn { width: 100%; }
.budget-disclaimer { margin-top: 1rem; text-align: center; font-size: 0.75rem; color: var(--muted-foreground); }
.consultant-cta { margin-top: 3rem; border-radius: 1rem; padding: 2rem; text-align: center; }
.consultant-cta h3 { margin-bottom: 0.5rem; font-size: 1.25rem; font-weight: 600; }
.consultant-cta p { margin-bottom: 1rem; color: var(--muted-foreground); }
@media (min-width: 1024px) { .budget-grid { grid-template-columns: 2fr 1fr; } }

/* Footer */
.footer { position: relative; border-top: 1px solid hsla(262, 83%, 58%, 0.1); padding-top: 3rem; }
.footer-content { display: grid; gap: 2rem; margin-bottom: 3rem; }
.logo-footer {
    max-width: 180px;
    height: auto;
    /* filter: invert(1) brightness(1.5);  <-- REMOVIDO! */
    margin-bottom: 1rem;
}
.footer-col p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link { display: inline-flex; border-radius: 0.5rem; background-color: hsla(262, 83%, 58%, 0.1); padding: 0.5rem; transition: background-color 0.2s ease; }
.social-link:hover { background-color: hsla(262, 83%, 58%, 0.2); }
.social-link svg { width: 1.25rem; height: 1.25rem; color: var(--primary); stroke-width: 1.5; }
.footer-col h4 { margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.footer-col ul li { display: flex; align-items: center; gap: 0.5rem; }
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: var(--primary); }
.footer-icon { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; stroke-width: 1.5; }
.footer-link-flex { display: flex; align-items: center; gap: 0.5rem; } /* Adicionado para link Wpp */
.footer-bottom { margin-top: 3rem; border-top: 1px solid hsla(262, 83%, 58%, 0.1); padding: 2rem 0; text-align: center; font-size: 0.875rem; color: var(--muted-foreground); }
@media (min-width: 768px) { .footer-content { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-content { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* Ajustes Finais Ícones Feather */
i[data-feather] {
     display: inline-block;
     width: 1em;
     height: 1em;
     stroke-width: 1.5;
     vertical-align: -0.125em;
     stroke: currentColor;
     fill: none;
}
.logo-hero-icon { width: 2.5rem !important; height: 2.5rem !important; stroke-width: 1 !important; margin: 0 auto 1rem auto !important; }
.mini-card-icon { width: 3rem !important; height: 3rem !important; stroke-width: 1 !important; margin: 0 auto 1rem auto !important; }
.certification-icon { width: 2rem !important; height: 2rem !important; stroke-width: 1 !important; }
.service-header svg, .feature-ux-icon, .product-icon-wrapper svg { width: 1.5rem !important; height: 1.5rem !important; }
.checklist-icon, .doc-icon, .button .button-icon-right svg { width: 1.25rem !important; height: 1.25rem !important; }
.trigger-chevron, .footer-icon, .social-link svg, .button .button-icon-sm svg, .quantity-btn svg { width: 1rem !important; height: 1rem !important; }


/* ======================================== */
/* ADICIONADO: Estilos do Modal e Banner LGPD */
/* ======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: hsla(0, 0%, 0%, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
    
    /* Animação */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay:not([hidden]) {
    opacity: 1;
    visibility: visible;
}
.modal-content {
    width: 100%;
    max-width: 800px;
    max-height: 80vh;
    background-color: var(--card); /* Re-usa o --card */
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    
    /* Animação */
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
.modal-overlay:not([hidden]) .modal-content {
    transform: scale(1);
}
.modal-close-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: transparent;
    border: none;
    color: var(--muted-foreground);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem;
}
.modal-close-btn:hover {
    color: var(--foreground);
}
.modal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-right: 2rem; /* Espaço para o botão de fechar */
}
.modal-scroll-content {
    overflow-y: auto;
    padding-right: 1rem; /* Espaço para a scrollbar */
}
/* Estilo da Scrollbar */
.modal-scroll-content::-webkit-scrollbar {
    width: 8px;
}
.modal-scroll-content::-webkit-scrollbar-track {
    background: var(--secondary);
    border-radius: 4px;
}
.modal-scroll-content::-webkit-scrollbar-thumb {
    background: var(--muted-foreground);
    border-radius: 4px;
}
.modal-scroll-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.modal-scroll-content p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.modal-scroll-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.modal-scroll-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Estilos do Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: -100%; /* Começa escondido */
    left: 1rem;
    right: 1rem;
    max-width: 90%;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    z-index: 1900;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-card);
    transition: bottom 0.5s ease-in-out;
}
.cookie-banner:not([hidden]) {
    bottom: 1rem; /* Anima para a posição */
}
.cookie-banner p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}
.cookie-banner p a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}
.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        max-width: 1280px;
        left: 50%;
        transform: translateX(-50%);
    }
    .cookie-banner:not([hidden]) {
         transform: translateX(-50%) translateY(0);
         bottom: 1rem;
    }
    .cookie-banner p {
        margin-bottom: 0;
    }
}