:root {
    --white: #FFFFFF;
    --gray-bg: #F4F6F8;
    --dark: #050608;
    --muted: #666666;
    --blaze-orange: #F14F28;
    --blaze-hover: #D63D1B;
    --border-light: rgba(0,0,0,0.08);
    --success: #28a745;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Premium Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo a {
    color: #FFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(241, 79, 40, 0.4));
}

/* Premium Typography for Brand */
.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.brand-name {
    display: flex;
    align-items: center;
}

.brand-hacker {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    color: #FFF;
}

.brand-security {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--blaze-orange);
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.65rem;
    letter-spacing: 5px;
    color: #888;
    margin-top: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #DDD;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--blaze-orange);
}

.btn-cta {
    background: var(--blaze-orange);
    color: #FFF !important;
    padding: 0.6rem 1.2rem;
    border-radius: 3px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(241, 79, 40, 0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    box-shadow: 0 6px 20px rgba(241, 79, 40, 0.6);
    transform: translateY(-2px);
}

/* Breadcrumbs */
.breadcrumbs-nav {
    padding: 1rem 0;
    background: var(--gray-bg);
    border-bottom: 1px solid var(--border-light);
    font-size: 0.8rem;
    color: #888;
}

.breadcrumbs-nav a {
    color: #888;
    text-decoration: none;
}

.breadcrumbs-nav .sep {
    margin: 0 0.5rem;
}

.breadcrumbs-nav .current {
    color: var(--dark);
    font-weight: 600;
}

/* Hero Section with Premium Effects */
.hero-section {
    padding: 8rem 0;
    background: #000;
    color: #FFF;
    background-image: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('assets/hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(241, 79, 40, 0.15), transparent 60%);
    animation: pulse-glow 10s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.highlight {
    background: linear-gradient(90deg, #F14F28, #FF8C42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #BBB;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn-primary {
    background: var(--blaze-orange);
    color: #FFF;
    padding: 1.1rem 2.2rem;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(241, 79, 40, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--blaze-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(241, 79, 40, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #FFF;
    color: #FFF;
    padding: 1rem 2.2rem;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #FFF;
    color: #000;
}

/* SEO Rating Badge */
.seo-rating-badge {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1.5s ease-out;
}

.seo-rating-badge .stars {
    color: #FFB800; /* Google/Clutch Star Gold */
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 184, 0, 0.4);
}

.seo-rating-badge .rating-text {
    font-size: 0.95rem;
    color: #DDD;
}

.seo-rating-badge .rating-text strong {
    color: #FFF;
    font-weight: 800;
}

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

/* Trust Badges & Carousel */
.trust-badges {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges span {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollCarousel 25s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.cert-badge {
    height: 45px;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cert-badge:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

/* Images */
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.intro-image-container {
    margin-top: 3.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
}

.terminal-img {
    box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 40px rgba(241, 79, 40, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    max-width: 90%;
}

.method-img {
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(241, 79, 40, 0.15));
    transition: transform 0.5s ease;
}

.method-img:hover {
    transform: scale(1.02);
}

/* Stats Bar */
.stats-bar {
    background: var(--dark);
    padding: 4rem 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--blaze-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(241, 79, 40, 0.3);
}

.stat-desc {
    color: #AAA;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Intro block */
.intro-block {
    padding: 5rem 0;
}

.layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.check-list-v2 {
    list-style: none;
    margin-top: 2rem;
}

.check-list-v2 li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 600;
}

.check-list-v2 li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blaze-orange);
    font-weight: 900;
}

.sidebar-box {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-light);
    border-top: 5px solid var(--blaze-orange);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.box-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.btn-outline {
    display: block;
    margin-top: 1.5rem;
    padding: 0.8rem;
    border: 2px solid var(--blaze-orange);
    color: var(--blaze-orange);
    text-decoration: none;
    font-weight: 700;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--blaze-orange);
    color: #FFF;
    box-shadow: 0 5px 15px rgba(241, 79, 40, 0.3);
}

/* Comparison Table - Premium Dark */
.comparison-section {
    padding: 8rem 0;
    background: #000;
    color: #FFF;
}

.table-container {
    margin-top: 4rem;
    overflow-x: auto;
    border-radius: 16px;
    background: #0B0C10;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 40px rgba(241, 79, 40, 0.15);
    border: 1px solid #1A1A1A;
    -webkit-overflow-scrolling: touch;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    color: #EEE;
    background: #0B0C10;
}

.comp-table th, .comp-table td {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #1A1A1A;
}

.comp-table th {
    background: #111;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFF;
}

.comp-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.badge-recommended {
    background: var(--blaze-orange);
    color: #FFF;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    font-weight: 900;
}

.active-col {
    background: rgba(241, 79, 40, 0.03);
    border-left: 2px solid rgba(241, 79, 40, 0.3);
    border-right: 2px solid rgba(241, 79, 40, 0.3);
}

.check svg { color: var(--success); filter: drop-shadow(0 0 8px rgba(40, 167, 69, 0.6)); }
.cross svg { color: #dc3545; opacity: 0.4; }

/* Success Banner Alinhado */
.success-banner {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #0a0a0a, #111);
    border: 1px solid #222;
    border-top: 4px solid var(--success);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.success-text-box {
    flex: 1;
}

/* FAQ Section */
.testimonial-section {
    padding: 5rem 0;
    background: #000;
    color: #FFF;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 90%, rgba(241, 79, 40, 0.15), transparent 50%);
    pointer-events: none;
}

.testimonial-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-mark {
    font-family: 'Montserrat', sans-serif;
    font-size: 6rem;
    color: var(--blaze-orange);
    line-height: 0.5;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #EEE;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    font-size: 1.2rem;
    color: var(--blaze-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #888;
}

.title-center {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

/* Estilos de Tabela serão definidos abaixo para evitar duplicatas */

.comp-table th, .comp-table td {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #1A1A1A;
}

.comp-table th {
    background: #111;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFF;
}

.comp-table tr {
    transition: background 0.3s ease;
}

.comp-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.comp-table tr.last-row td {
    border-bottom: none;
}

.comp-table td strong {
    color: #FFF;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.comp-table td span {
    color: #888;
}

.badge-recommended {
    background: var(--blaze-orange);
    color: #FFF;
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
    font-weight: 900;
    box-shadow: 0 0 15px rgba(241, 79, 40, 0.5);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% { box-shadow: 0 0 0 0 rgba(241, 79, 40, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(241, 79, 40, 0); }
    100% { box-shadow: 0 0 0 0 rgba(241, 79, 40, 0); }
}

.active-col {
    background: linear-gradient(180deg, rgba(241, 79, 40, 0.08) 0%, rgba(241, 79, 40, 0.02) 100%);
    border-left: 2px solid rgba(241, 79, 40, 0.5);
    border-right: 2px solid rgba(241, 79, 40, 0.5);
    font-weight: 800;
    color: #FFF;
}

.comp-table th.active-col {
    background: linear-gradient(180deg, rgba(241, 79, 40, 0.15) 0%, rgba(241, 79, 40, 0.05) 100%);
    border-top: 4px solid var(--blaze-orange);
    border-bottom: 1px solid rgba(241, 79, 40, 0.5);
}

.check { color: var(--success); text-align: center; }
.cross { color: #dc3545; text-align: center; opacity: 0.5; }

.check svg { filter: drop-shadow(0 0 8px rgba(40, 167, 69, 0.6)); }
.cross svg { filter: drop-shadow(0 0 8px rgba(220, 53, 69, 0.4)); }

/* Premium Glassmorphism Cards */
.sectors-section {
    padding: 6rem 0;
    background: var(--gray-bg);
}

.sectors-grid, .focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.sector-card, .focus-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sector-card {
    text-align: center;
    border-bottom: 4px solid var(--blaze-orange);
}

.sector-card:hover, .focus-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(241, 79, 40, 0.12);
    border-color: rgba(241, 79, 40, 0.2);
}

.sector-card .icon, .focus-item .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.sector-card:hover .icon, .focus-item:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.sector-card h4, .focus-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--dark);
}

.sector-card p, .focus-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Services Focus */
.services-focus {
    padding: 6rem 0;
}

.focus-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Methodology Section */
.methodology-detailed {
    padding: 6rem 0;
    border-top: 1px solid var(--border-light);
    background: var(--white);
}

.method-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.method-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.method-text p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.method-list {
    list-style: none;
}

.method-list li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1.5rem;
    color: var(--muted);
    font-size: 1rem;
}

.method-list li strong {
    color: var(--dark);
}

.method-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blaze-orange);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Deliverables Section */
.deliverables-section {
    padding: 6rem 0;
    background: #000;
    color: #FFF;
    border-top: 1px solid #222;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.deliv-item {
    background: #111;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid #222;
    transition: transform 0.3s;
}

.deliv-item:hover {
    transform: translateY(-5px);
    border-color: var(--blaze-orange);
}

.deliv-item h3 {
    color: var(--blaze-orange);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.deliv-item p {
    font-size: 0.95rem;
    color: #888;
}

.highlight-item {
    background: rgba(241, 79, 40, 0.05);
    border-color: rgba(241, 79, 40, 0.3);
}

.success-item {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #111, #1a1a1a);
    border-top: 5px solid var(--success);
    display: flex;
    align-items: center;
    padding: 3rem;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.success-content .box-icon {
    font-size: 4.5rem;
    line-height: 1;
}

.success-box {
    background: #111;
    color: #FFF;
    border-top: 5px solid var(--success);
}

.success-box h3 {
    color: #FFF;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--gray-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.faq-item {
    background: #FFF;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--blaze-orange);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.faq-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: #000;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at bottom right, rgba(241, 79, 40, 0.1), transparent 50%);
    pointer-events: none;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #FFF;
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.lead-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--blaze-orange);
    background: #FFF;
    box-shadow: 0 0 0 4px rgba(241, 79, 40, 0.1);
    outline: none;
}

.full-width { 
    width: 100%; 
    font-size: 1.1rem; 
    padding: 1.2rem; 
    display: block; 
    box-sizing: border-box; 
    text-align: center;
}

/* Floating WhatsApp Button - Premium Animation */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-wa 2.5s infinite;
}

.whatsapp-float svg {
    width: 38px;
    height: 38px;
    fill: #FFF;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-8px);
    box-shadow: 0px 12px 35px rgba(37, 211, 102, 0.7);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    left: 80px;
    background: #FFF;
    color: #111;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    pointer-events: none;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 6px 6px 0;
    border-style: solid;
    border-color: transparent #FFF transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Footer Corporate */
.footer-corporate {
    background: #050608;
    color: #888;
    padding: 5rem 0 2rem;
    border-top: 1px solid #1A1A1A;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: #FFF;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.footer-desc {
    margin-top: 1.5rem;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blaze-orange);
}

.footer-contact {
    list-style: none;
    margin-bottom: 1.5rem;
}

.footer-contact li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact a {
    color: #888;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--blaze-orange);
}

.contact-icon {
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #111;
    color: #FFF;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid #222;
}

.social-links a:hover {
    background: var(--blaze-orange);
    border-color: var(--blaze-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #1A1A1A;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #FFF;
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section { padding: 5rem 0 3rem; }
    .intro-block, .comparison-section, .testimonial-section, .sectors-section, .services-focus, .methodology-detailed, .deliverables-section, .faq-section { padding: 3rem 0; }
    .contact-section { padding: 4rem 0; }
    .stats-bar { padding: 2rem 0; }
    
    .layout-grid, .faq-grid, .sectors-grid, .focus-grid, .method-split, .lead-form .form-row, .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .success-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .success-item {
        padding: 2rem 1.5rem;
    }
    
    .hero-content h1 { font-size: 2.3rem; }
    .title-center { font-size: 2rem; margin-bottom: 2rem; }
    .nav-links { display: none; }
    .hero-btns { flex-direction: column; gap: 1rem; width: 100%; }
    .hero-btns .btn-primary, .hero-btns .btn-secondary { width: 100%; text-align: center; display: block; }
    .contact-wrapper { padding: 2.5rem 1.5rem; }
    .sector-card, .focus-item, .deliv-item { padding: 2rem 1.5rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    /* Forçar Tabela em Blocos (Stack) para Mobile */
    .table-container {
        background: transparent;
        box-shadow: none;
        border: none;
        overflow: visible;
    }

    .comp-table, .comp-table thead, .comp-table tbody, .comp-table th, .comp-table td, .comp-table tr {
        display: block;
        width: 100% !important;
        min-width: 0 !important;
    }

    .comp-table thead {
        display: none;
    }

    .comp-table tr {
        background: #0B0C10;
        margin-bottom: 2rem;
        border-radius: 12px;
        border: 1px solid #1A1A1A;
        padding: 1.5rem;
    }

    .comp-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0 !important;
        border-bottom: 1px solid #1A1A1A;
    }

    .comp-table td:last-child {
        border-bottom: none;
        background: rgba(241, 79, 40, 0.05);
        margin: 1rem -1.5rem -1.5rem -1.5rem;
        padding: 1.5rem !important;
        border-radius: 0 0 12px 12px;
    }

    .comp-table td:nth-of-type(2):before {
        content: "Scanners:";
        font-size: 0.8rem;
        color: #666;
    }

    .comp-table td:nth-of-type(3):before {
        content: "HackerSecurity:";
        font-size: 0.9rem;
        color: var(--blaze-orange);
    }

    .whatsapp-float { bottom: 20px; left: 20px; width: 55px; height: 55px; }
    .whatsapp-float svg { width: 30px; height: 30px; }
    .whatsapp-tooltip { display: none; } /* Hide tooltip on mobile to avoid screen overflow */
}