html, body, :root {
    background-color: #000000 !important;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

a, a:hover, a:focus, a:active {
    text-decoration: none !important;
    outline: none !important;
    transition: all 0.3s ease;
}

.text-storm-yellow { 
    color: #f2c300; 
}

.text-storm-black { 
    color: #000; 
}

.bg-storm-yellow { 
    background-color: #f2c300; 
}

.border-storm-yellow { 
    border-color: #f2c300; 
}

.gradient-overlay {
    background: radial-gradient(circle at 50% 0%, rgba(242, 195, 0, 0.08) 0%, rgba(0, 0, 0, 1) 70%);
}

.btn-hover:hover {
    box-shadow: 0 0 20px rgba(242, 195, 0, 0.3);
    transform: scale(1.02);
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    border-color: rgba(242, 195, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(242, 195, 0, 0.15);
}

/* Formulário de Contato */
.form-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
}
.form-input:focus {
    border-color: #f2c300;
    background-color: rgba(255, 255, 255, 0.08);
}
select.form-input option {
    background-color: #111;
    color: #fff;
}

details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }

.prose h1, .prose h2, .prose h3 { color: #ffffff; font-weight: 800; }
.prose p { margin-bottom: 1.5rem; line-height: 1.75; }
.prose ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; }

/* Variáveis e Containers Gerais */
:root {
    --text-muted: #9ca3af;
    --storm-yellow: #f2c300;
    --storm-yellow-hover: #d1a800;
    --border-color: rgba(255, 255, 255, 0.1);
}

* { box-sizing: border-box; }

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

/* Botões Novos (Para a Home) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--storm-yellow);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--storm-yellow-hover);
    box-shadow: 0 0 20px rgba(242, 195, 0, 0.3);
    transform: scale(1.02);
}

.btn-outline {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: #ffffff;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-sm { padding: 10px 20px; font-size: 14px; border-radius: 50px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    color: #d1d5db;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

/* Cabeçalho */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width:1600px;
    padding: 0 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 60px;
    height: 90px;
    background-color: var(--storm-yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: #ffffff;
}

.logo-text span {
    color: var(--storm-yellow);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu a:not(.btn) {
    color: #ffffff; 
}

.nav-menu a:not(.btn):hover {
    color: var(--storm-yellow);
}
.menu-mobile-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

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

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content-right { order: 1; }
    .hero-animation { order: 2; }
}

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

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    z-index: 3;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--storm-yellow);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #d1d5db;
}

.icon-accent {
    color: var(--storm-yellow);
    width: 20px;
    height: 20px;
}

/* Rodapé */
.footer {
    background-color: #000;
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

/* Mantido o seu ícone pequeno */
.logo-icon-sm {
    width: 24px;
    height: 24px;
    background-color: var(--storm-yellow);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.logo-icon-sm svg { width: 16px; height: 16px; }

/* Adicionado: Correção do ícone principal do footer (Raio) */
.logo-icon {
    background: transparent !important;
    display: inline-flex;
    align-items: center;
}

.logo-icon i, .logo-icon svg {
    width: 36px;
    height: 36px;
    stroke: #f2c300;
}

.footer-brand {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-brand span { color: var(--storm-yellow); }

.footer-copy {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-link {
    color: var(--text-muted);
    font-size: 12px;
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block;
}

.footer-link:hover { color: var(--storm-yellow); }

/* Utilitários Extras (WhatsApp e Cookie) */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background-color: #20b858;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #050505;
    border-top: 1px solid var(--border-color);
    z-index: 60;
    padding: 20px 0;
    transition: transform 0.5s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    display: block;
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    color: var(--text-muted);
    font-size: 14px;
}

.cookie-text a {
    color: var(--storm-yellow);
    font-weight: 700;
}

@media (max-width: 768px) {
    .menu-mobile-btn { display: block; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #000;
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active { 
        display: flex; 
    }

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

    .hero-features { 
        gap: 16px; 
    }
    .cookie-container { 
        flex-direction: column; text-align: center;
    }
}


.active-link { 
    color: var(--storm-yellow) !important; font-weight: 800; 
}

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

.bg-dark { 
    background-color: #050505; 
}

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

.text-storm-yellow { 
    color: var(--storm-yellow); 
}

.sites-hero {
    position: relative;
    padding-top: 130px;
    padding-bottom: 80px;
    overflow: hidden;
}

.sites-hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .sites-hero-container { grid-template-columns: 1fr 1fr; }
}

.page-title {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.page-title span { color: var(--storm-yellow); }

.page-description {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
}

.icon-transition {
    width: 20px; height: 20px;
    transition: transform 0.3s ease;
}
.group:hover .icon-transition { transform: translateY(4px); }

.sites-hero-video-wrapper {
    position: relative;
    display: none; 
    justify-content: center;
}

@media (min-width: 768px) {
    .sites-hero-video-wrapper { display: flex; }
}

.video-glow {
    position: absolute;
    inset: 0;
    background-color: rgba(242, 195, 0, 0.1);
    filter: blur(100px);
    border-radius: 50%;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 10;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(242, 195, 0, 0.15);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    transform: scale(1.05);
}

.sites-hero-container:hover .video-container video { transform: scale(1); }

.video-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .subtitle { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.section-header .title { font-size: clamp(1.875rem, 3vw, 2.25rem); font-weight: 800; }
.section-header .description { color: var(--text-muted); margin-top: 16px; font-size: 1.125rem; }

.grid-3-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

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

.package-card {
    padding: 32px;
    background-color: #050505;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card-bg-hover {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(242, 195, 0, 0.05), transparent);
    opacity: 0; transition: opacity 0.5s ease; z-index: 0;
}
.group:hover .card-bg-hover { opacity: 1; }

.card-corner-shape {
    position: absolute; top: 0; right: 0;
    width: 120px; height: 120px;
    background-color: rgba(242, 195, 0, 0.05);
    border-bottom-left-radius: 100%;
    transition: background-color 0.3s ease; z-index: 0;
}
.group:hover .card-corner-shape { background-color: rgba(242, 195, 0, 0.1); }

.card-content { position: relative; z-index: 10; flex-grow: 1; }

.card-icon {
    width: 56px; height: 56px;
    background-color: #111;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px; transition: all 0.3s ease;
}
.card-icon svg { 
    color: var(--storm-yellow); width: 28px; height: 28px; 
}

.group:hover .card-icon { 
    transform: scale(1.1); box-shadow: 0 0 15px rgba(242, 195, 0, 0.3); 
}

.package-title { 
    font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; 
}
.package-desc { 
    color: var(--text-muted); font-size: 0.875rem; margin-bottom: 24px; line-height: 1.6; 
}

.package-features { 
    list-style: none; 
    margin-bottom: 32px; 
}
.package-features li { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    color: #d1d5db; 
    font-size: 0.75rem; 
    margin-bottom: 12px; 
}

.check-icon { 
    width: 16px; 
    height: 16px; 
    background-color: rgba(242, 195, 0, 0.2); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.check-icon svg {
     width: 10px; 
     height: 10px; 
     color: var(--storm-yellow); 
    }

.package-footer { 
    position: relative; 
    z-index: 10; 
    border-top: 1px solid var(--border-color); 
    padding-top: 24px; 
    margin-top: auto; 
}

.price-box { 
    display: flex; 
    flex-direction: column; 
    gap: 4px; 
}

.price-label { font-size: 0.75rem; color: #6b7280; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.price-old { font-size: 0.875rem; color: var(--text-muted); text-decoration: line-through; }
.price-main-wrapper { display: flex; align-items: center; gap: 12px; margin: 4px 0; }
.price-main { font-size: 1.875rem; font-weight: 900; color: var(--storm-yellow); }
.discount-tag { font-size: 0.75rem; background-color: var(--storm-yellow); color: #000; padding: 4px 10px; border-radius: 4px; font-weight: 800; text-transform: uppercase; box-shadow: 0 0 15px rgba(242, 195, 0, 0.4); white-space: nowrap; }
.price-installments { font-size: 0.75rem; color: var(--text-muted); }

.btn-package { background-color: rgba(255, 255, 255, 0.05); color: #fff; padding: 12px; margin-top: 24px; width: 100%; border-radius: 8px; font-weight: 700; text-align: center; display: block; }
.btn-package:hover { background-color: var(--storm-yellow); color: #000; }

.process-wrapper { position: relative; max-width: 1000px; margin: 0 auto; display: grid; gap: 24px; }
@media (min-width: 768px) { .process-wrapper { grid-template-columns: repeat(3, 1fr); } }

.process-line { display: none; position: absolute; top: 50%; left: 0; width: 100%; height: 2px; background-color: var(--border-color); transform: translateY(-50%); z-index: 0; }
@media (min-width: 768px) { .process-line { display: block; } }

.process-step { background-color: #000; border: 1px solid var(--border-color); padding: 24px; border-radius: 16px; text-align: center; position: relative; z-index: 10; transition: all 0.3s ease; }
.process-step:hover { transform: translateY(-8px); border-color: var(--storm-yellow); box-shadow: 0 0 30px rgba(242, 195, 0, 0.15); }

.step-number { width: 48px; height: 48px; background-color: var(--storm-yellow); color: #000; font-size: 1.25rem; font-weight: 900; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px auto; transition: transform 0.3s ease; }
.process-step:hover .step-number { transform: scale(1.1); box-shadow: 0 0 15px rgba(242, 195, 0, 0.5); }
.step-title { font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.6; }

.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background-color: #000; border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; }
.faq-summary { display: flex; align-items: center; justify-content: space-between; padding: 24px; cursor: pointer; font-weight: 700; list-style: none; }
.faq-summary::-webkit-details-marker { display: none; }
.faq-icon { color: var(--storm-yellow); transition: transform 0.3s ease; }
details[open] .faq-icon { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 24px 24px; color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; border-top: 1px solid rgba(255, 255, 255, 0.05); margin-top: 8px; padding-top: 16px; }

.centered-hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
}

.centered-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0 !important; }
.mt-6 { margin-top: 24px; }

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

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

.combo-icon {
    background-color: var(--storm-yellow);
    color: #000;
}
.combo-icon svg { color: #000; }
.tag-highlight {
    font-size: 10px;
    background-color: var(--storm-yellow);
    color: #000;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
}

.about-glow {
    position: absolute;
    right: 0;
    top: 25%;
    width: 50%;
    height: 50%;
    background-color: rgba(242, 195, 0, 0.05);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.about-grid {
    align-items: center;
    gap: 64px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.5s ease;
    z-index: 10;
}

.group:hover .about-image-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.about-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.7s ease;
}

.group:hover .about-image {
    transform: scale(1);
}

.name-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 20;
    background-color: var(--storm-yellow);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 12px;
    border-radius: 4px;
}

.mb-6 { margin-bottom: 24px !important; }

.about-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.7;
}

.about-paragraphs strong {
    color: var(--text-color);
}

.quote-block {
    background-color: #050505;
    border-left: 4px solid var(--storm-yellow);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin-top: 32px;
}

.quote-block p {
    font-weight: 700;
    color: var(--text-color);
    font-style: italic;
    line-height: 1.6;
}

.pillar-card {
    background-color: #000;
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--storm-yellow);
    box-shadow: 0 0 30px rgba(242, 195, 0, 0.15);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(242, 195, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.pillar-icon svg {
    color: var(--storm-yellow);
    width: 28px;
    height: 28px;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(242, 195, 0, 0.5);
}

.pillar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 12px;
}

.pillar-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.contact-section {
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    background-color: #050505;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
}

@media (min-width: 768px) {
    .contact-card {
        grid-template-columns: 1fr 1fr;
        padding: 48px;
    }
    .contact-info {
        border-right: 1px solid var(--border-color);
        padding-right: 48px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.contact-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.contact-text {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.btn-whatsapp-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background-color: #25D366;
    color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
    margin-bottom: 32px;
}

.btn-whatsapp-large:hover {
    background-color: #20b858;
    transform: scale(1.02);
    color: #ffffff;
}

.btn-whatsapp-large svg {
    width: 24px;
    height: 24px;
}

.contact-details {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #d1d5db;
    font-size: 1rem;
}

.contact-detail-item svg {
    color: var(--storm-yellow);
    width: 20px;
    height: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    margin-left: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.custom-select {
    appearance: none;
    cursor: pointer;
}

.btn-submit-form {
    padding: 16px;
    font-size: 1rem;
    margin-top: 16px;
    letter-spacing: 2px;
}


.success-message {
    text-align: center;
    padding: 16px;
    background-color: rgba(20, 83, 45, 0.4);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    border-radius: 12px;
    margin-top: 16px;
    font-weight: 600;
    font-size: 0.875rem;
}

.success-message.hidden {
    display: none;
}

.stats-section { 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 30px; 
    text-align: center; 
}

.stat-box h3 { 
    font-size: 3.5rem; 
    font-weight: 800; 
    display: inline-block; 
    margin-bottom: 5px; 
}

.stat-box span { 
    font-size: 3.5rem; 
    font-weight: 800; 
}

.stat-box p { 
    color: #a1a1aa; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-size: 0.9rem; 
}

.bg-darker { 
    background-color: #0a0a0a; 
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.bg-whiter { 
    background-color: #ffffff; 
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    font-family: 'DM Sans', sans-serif;
}

.review-card {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 35px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    border-color: #f2c300;
    box-shadow: 0 10px 30px rgba(242, 195, 0, 0.08);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #333;
}

.review-author {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.review-stars {
    color: #f2c300;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-top: 5px;
}

.review-text {
    color: #a3a3a3;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

.review-card::after {
    content: "G";
    position: absolute;
    bottom: -15px;
    right: 15px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    font-family: Arial, sans-serif;
    pointer-events: none;
}

.fill-storm-yellow { 
    fill: #f2c300; 
}

.footer-extended { 
    background-color: #000; 
    padding: 60px 0 20px 0; 
    border-top: 1px solid #27272a; 
}

.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
    text-align: left;
 }

.footer-title { 
    color: #fff; 
    font-size: 1.1rem; 
    font-weight: 700; 
    margin-bottom: 20px; 
    text-transform: uppercase; 
}

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

.footer-links li { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    color: #a1a1aa; 
    font-size: 0.95rem; 
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #111;
    border: 1px solid #27272a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f2c300;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a svg {
    display: block;
    width: 20px !important;
    height: 20px !important;
    color: inherit;
    flex-shrink: 0;
}

.social-icons a svg rect,
.social-icons a svg circle,
.social-icons a svg path,
.social-icons a svg line {
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.social-icons a svg path[fill="currentColor"] {
    fill: currentColor;
    stroke: none;
}

.social-icons a:hover {
    background: #f2c300;
    color: #000;
    border-color: #f2c300;
    transform: translateY(-3px);
}

.hover-storm-yellow:hover { color: #f2c300; }

.mb-3 { margin-bottom: 1rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.pt-4 { padding-top: 1.5rem; }
.text-sm { font-size: 0.85rem; }
.text-muted { color: #a1a1aa; }
.border-top-dark { border-top: 1px solid rgba(255, 255, 255, 0.05); }

@media (max-width: 768px) {
    .footer-grid { text-align: center; }
    .footer-links li { justify-content: center; }
    .social-icons { justify-content: center; }
    .footer-links li span { margin-left: 0 !important; }
}

#vanta-bg canvas {
    opacity: 0.25 !important;
    filter: brightness(0.8);
}

.hero-split {
    padding-top: 160px;
    padding-bottom: 80px;
}
.hero { 
    min-height: 80vh; 
    display: flex; 
    align-items: center; 
    position: relative; 
    padding-top: 80px; 
    overflow: hidden; 
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2850&q=80'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.hero-content { 
    position: relative; 
    z-index: 2;
    max-width: 800px; 
    text-align: center; 
    margin: 0 auto;
}

.hub-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
}
.hub-card { 
    background: #000; 
    border: 1px solid #27272a; 
    padding: 40px 30px; 
    border-radius: 12px; 
    text-align: left; 
    display: flex; 
    flex-direction: column;
    transition: all 0.3s ease; 
    cursor: pointer;
}
.hub-card:hover {
    border-color: #f2c300;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(242, 195, 0, 0.05);
}
.hub-icon { 
    width: 50px; 
    height: 50px; 
    background: rgba(242, 195, 0, 0.1); 
    color: #f2c300; 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin-bottom: 20px; 
}
.hub-card h3 { font-size: 1.25rem; margin-bottom: 15px; color: #fff; }
.hub-card p { color: #a1a1aa; font-size: 0.9rem; flex-grow: 1; margin-bottom: 20px; }
.hub-link { 
    color: #f2c300; 
    font-weight: 700; 
    font-size: 0.9rem; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    text-transform: uppercase; 
}

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

.pillars-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}
.pillar-box { 
    background: #111; 
    border: 1px solid #27272a; 
    padding: 40px 30px; 
    border-radius: 12px; 
    transition: 0.3s;
}
.pillar-box:hover { 
    border-color: #f2c300; 
}
.pillar-icon { 
    color: #f2c300; 
    margin-bottom: 20px;   
    display: inline-flex;
    align-items: center;     
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #1a1a1a;
    border-radius: 12px;  
}

.pillar-icon i,
.pillar-icon svg { 
    width: 32px; 
    height: 32px; 
}
.pillar-box h3 { 
    font-size: 1.3rem; 
    margin-bottom: 15px; 
}
.pillar-box p { 
    color: #a1a1aa; 
    font-size: 0.95rem; 
}

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

.scroll-bounce {
    animation: bounce-scroll 2s infinite ease-in-out;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.hub-card:nth-child(1), .package-card:nth-child(1), .service-card:nth-child(1) { transition-delay: 0.1s; }
.hub-card:nth-child(2), .package-card:nth-child(2), .service-card:nth-child(2) { transition-delay: 0.2s; }
.hub-card:nth-child(3), .package-card:nth-child(3), .service-card:nth-child(3) { transition-delay: 0.3s; }
.hub-card:nth-child(4), .package-card:nth-child(4), .service-card:nth-child(4) { transition-delay: 0.4s; }

.cards-centered-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; 
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .cards-centered-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* SELO DE QUALIDADE PREMIUM */
.code-stamp {
    position: absolute;
    top: -180px; /* Subiu um pouco mais */
    left: -160px; /* Foi bem mais para a esquerda, flutuando no fundo escuro */
    width: 170px; /* Bem maior (era 130px) */
    height: 170px;
    background: linear-gradient(135deg, #ffe100 0%, #f2c300 50%, #cc9f00 100%); /* Gradiente para dar volume */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000000;
    transform: rotate(-12deg);
    z-index: 20;
    /* Sombras e bordas para criar o efeito de um selo físico/medalha */
    box-shadow: 
        0 15px 30px rgba(242, 195, 0, 0.3),
        inset 0 0 0 4px #0a0a0a, /* Borda interna escura */
        inset 0 0 0 6px #f2c300; /* Espaço amarelo */
    border: 4px solid #1a1a1a; /* Borda externa para mesclar com o fundo */
    animation: pulse-stamp-premium 3s infinite ease-in-out;
    pointer-events: none;
}

/* O detalhe tracejado que dá a cara de "Selo de Garantia" */
.code-stamp::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1.5px dashed rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    pointer-events: none;
}

/* Organização interna do texto e ícone */
.code-stamp .stamp-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    z-index: 2;
}

.code-stamp .stamp-icon {
    width: 26px;
    height: 26px;
    color: #000000;
    margin-bottom: -4px;
}

.code-stamp .stamp-percent {
    font-size: 2.3rem; /* Número 100% gigante */
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.code-stamp .stamp-text {
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animação Suave e Elegante */
@keyframes pulse-stamp-premium {
    0% { transform: rotate(-12deg) scale(1); }
    50% { transform: rotate(-12deg) scale(1.05); box-shadow: 0 20px 40px rgba(242, 195, 0, 0.5), inset 0 0 0 4px #0a0a0a; }
    100% { transform: rotate(-12deg) scale(1); }
}

/* Responsividade para não quebrar a tela do celular */
@media (max-width: 900px) {
    .code-stamp {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin: 0 auto 30px auto; /* Centraliza o selo perfeitamente acima dos cards no celular */
        width: 130px;
        height: 130px;
        transform: rotate(0deg); /* Deixa o selo reto no mobile para melhor leitura */
    }
    .code-stamp .stamp-percent { font-size: 1.7rem; }
    .code-stamp .stamp-text { font-size: 0.65rem; }
    .code-stamp .stamp-icon { width: 18px; height: 18px; }
}

/* =========================================
   SEÇÃO PORTFÓLIO - PROJETOS ENTREGUES
   ========================================= */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
}

/* Responsividade para Tablets e Desktops */
@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Estilo Individual de cada Projeto */
.portfolio-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #0a0a0a;
    overflow: hidden;
    min-height: 450px;
    transition: background-color 0.4s ease;
}

.portfolio-link:hover {
    background-color: #141414;
}

/* Mockup do Notebook */
.notebook-mockup-container {
    position: relative;
    width: 100%;
    max-width: 280px;
    z-index: 10;
    transition: transform 0.5s ease;
    margin-bottom: 1rem;
}

.portfolio-link:hover .notebook-mockup-container {
    transform: translateY(-15px) scale(1.03);
}

.notebook-frame {
    background-color: #1a1a1a;
    padding: 12px 12px 16px 12px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.site-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
    transition: object-position 4s ease-in-out;
}

/* Base e Dobradiça do Notebook */
.notebook-base {
    height: 12px;
    background: linear-gradient(to bottom, #d4d4d4, #737373);
    border-radius: 0 0 16px 16px;
    position: relative;
    width: 110%;
    left: -5%;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.3), 0 15px 20px rgba(0,0,0,0.8);
}

.notebook-hinge {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background-color: #404040;
    border-radius: 0 0 4px 4px;
}

/* Rótulo Lateral Vertical */
.vertical-label {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 4px;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.4s ease;
}

.portfolio-link:hover .vertical-label {
    color: #f2c300; /* Cor amarela da Agência Storm */
}

/* Overlay Escuro com o Botão */
.hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 20;
}

.portfolio-link:hover .hover-overlay {
    opacity: 1;
    backdrop-filter: blur(4px);
}

.btn-hover {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-link:hover .btn-hover {
    transform: translateY(0);
    opacity: 1;
}

/* Background Split Dinâmico (opcional para dar um efeito premium no fundo) */
.portfolio-bg-split {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.portfolio-link:hover .portfolio-bg-split {
    opacity: 0.05; /* Deixa uma textura sutil no fundo ao passar o mouse */
}

.bg-half {
    flex: 1;
    background-color: #f2c300; 
}