/* Reset e Estilos Base */
:root {
    --primary-color: #1E3F4B;
    --primary-dark: #142a33;
    --primary-light: #2a5a6b;
    --secondary-color: #4ECDC4;
    --accent-color: #FF6B6B;
    --text-color: #f8f9fa;
    --text-dark: #343a40;
    --gray-light: #e9ecef;
    --gray-medium: #adb5bd;
    --gray-dark: #495057;
    --success-color: #40c057;
    --warning-color: #fcc419;
    --danger-color: #fa5252;
    --font-main: 'Roboto', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: #0a1920;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Loader */
.cyber-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.cyber-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
    margin-bottom: 2rem;
    letter-spacing: 0.5rem;
}

.loader-bar {
    width: 300px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-progress {
    height: 100%;
    width: 0%;
    background-color: var(--secondary-color);
    animation: loading 2s ease-in-out infinite;
}

.loader-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray-medium);
    letter-spacing: 2px;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

/* Header */
.cyber-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 63, 75, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(78, 205, 196, 0.1);
}

.cyber-header.scrolled {
    background-color: rgba(20, 42, 51, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.logo-container {
    display: flex;
    flex-direction: column;
}

.cyber-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.2rem;
    position: relative;
    text-transform: uppercase;
}

.cyber-logo::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: var(--secondary-color);
    overflow: hidden;
    transition: 1s;
}

.cyber-logo:hover::before {
    width: 100%;
    filter: drop-shadow(0 0 10px var(--secondary-color));
}

.logo-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.3rem;
    color: var(--gray-medium);
    margin-top: -5px;
}

.cyber-nav ul {
    display: flex;
    list-style: none;
}

.cyber-nav ul li {
    margin-left: 30px;
    position: relative;
}

.cyber-nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.cyber-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.cyber-nav ul li a:hover::after,
.cyber-nav ul li a.active::after {
    width: 100%;
}

.cyber-nav ul li a:hover {
    color: var(--secondary-color);
}

.cyber-nav ul li a.active {
    color: var(--secondary-color);
    font-weight: 400;
}

.cyber-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cyber-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.cyber-button:hover::before {
    left: 100%;
}

.cyber-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

.cyber-button:active {
    transform: translateY(0);
}

.cyber-button.outline {
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.cyber-button.outline:hover {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
}

.cyber-button.big {
    padding: 15px 40px;
    font-size: 1rem;
}

.cyber-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(78, 205, 196, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(78, 205, 196, 0);
    }
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
}

/* Hero Section */
.cyber-hero {
    height: 100vh;
    min-height: 500px;
    max-height: 1200px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    width: 90%;
}

.cyber-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem); /* Tamanho reduzido e ajuste de vw */
    font-weight: 700;
    margin: 0 auto 1rem;
    line-height: 1.2; /* Linha mais compacta */
    letter-spacing: 0.15rem; /* Espaçamento reduzido */
    text-transform: uppercase;
    position: relative;
    color: var(--text-color);
    text-align: center;
    max-width: 100%;
    display: block;
    padding: 0 0.5rem;
    white-space: normal; /* Garante que o texto flua normalmente */
    word-break: normal; /* Permite quebra normal de palavras */
    overflow-wrap: break-word; /* Quebra apenas quando necessário */
}

.cyber-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 100%;
    color: var(--secondary-color);
    overflow: hidden;
    transition: 1s;
    text-align: center;
    white-space: nowrap;
}

.cyber-title:hover::before {
    width: 100%;
    left: 0;
    transform: translateX(0);
    filter: drop-shadow(0 0 10px var(--secondary-color));
}

/* Ajustes específicos para desktop */
@media (min-width: 992px) {
    .cyber-title {
        font-size: 2rem; /* Tamanho fixo para desktop */
        line-height: 1.3;
        letter-spacing: 0.2rem;
        white-space: normal; /* Garante que não force quebras */
    }
}
.cyber-subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1.3rem); /* Faixa mais ampla */
    margin: 0 auto 2rem; /* Centralizado com margem */
    font-weight: 300;
    width: 85%; /* Largura controlada */
    max-width: 700px; /* Limite máximo */
    letter-spacing: 0.05rem; /* Reduzido para mobile */
    line-height: 1.5; /* Melhor legibilidade */
    text-align: center; /* Centralizado */
    padding: 0 1rem; /* Padding lateral para mobile */
    word-break: normal; /* Quebra de palavras controlada */
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(78, 205, 196, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 205, 196, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.cyber-circuit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(78,205,196,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.binary-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.binary-rain::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, var(--primary-dark), transparent);
    z-index: 2;
}

.binary-rain span {
    position: absolute;
    top: -50px;
    color: rgba(78, 205, 196, 0.5);
    font-size: clamp(0.8rem, 2vw, 1.2rem); /* Tamanho responsivo */
    font-family: monospace;
    animation: animateBinary 5s linear infinite;
}

@keyframes animateBinary {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Media Queries para ajustes específicos */
@media (max-width: 768px) {
    .cyber-hero {
        padding-top: 60px; /* Reduz o padding no topo */
        min-height: 600px; /* Altura mínima menor */
    }
    
    .cyber-title {
        letter-spacing: 0.3rem; /* Espaçamento menor entre letras */
    }
    
    .hero-content {
        width: 95%; /* Mais largura em telas pequenas */
    }
}

@media (max-width: 480px) {
    .cyber-title {
        letter-spacing: 0.1rem; /* Espaçamento mínimo entre letras */
        margin-bottom: 1rem; /* Menos espaço abaixo do título */
    }
    
    .cyber-subtitle {
        margin-bottom: 1.5rem; /* Menos espaço abaixo do subtítulo */
    }
    
    .cyber-grid {
        background-size: 30px 30px; /* Grid mais denso em telas pequenas */
    }
    
    .cyber-circuit {
        background-size: 60px 60px; /* Circuitos mais densos */
    }
}

/* Services Preview */
.cyber-services-preview {
    padding: 100px 0;
    position: relative;
    background-color: var(--primary-dark);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    position: relative;
    color: var(--text-color);
}

.section-title span {
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-preview-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.1);
    border-radius: 5px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), transparent);
    z-index: -1;
}

.service-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(78, 205, 196, 0.3);
}

.service-preview-card:hover .service-preview-icon {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.service-preview-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.service-preview-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.service-preview-card p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--gray-medium);
}

.service-link {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-preview-card:hover .service-link {
    letter-spacing: 0.1rem;
}

.service-preview-card:hover .service-link i {
    transform: translateX(5px);
}

/* Differentials Section */
.cyber-differentials {
    padding: 100px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.differential-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.1);
    border-radius: 5px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.differential-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(78, 205, 196, 0.3);
    background-color: rgba(78, 205, 196, 0.05);
}

.differential-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.differential-card:hover .differential-icon {
    transform: scale(1.2);
}

.differential-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.differential-card p {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* Stats Section */
.cyber-stats {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.cyber-stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px;
    min-width: 200px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: var(--gray-medium);
}

/* Testimonials Section */
.cyber-testimonials {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 100%;
    scroll-snap-align: start;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.1);
    border-radius: 5px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--gray-light);
}

.testimonial-author strong {
    display: block;
    color: var(--secondary-color);
    font-weight: 500;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-medium);
}

/* CTA Section */
.cyber-cta {
    padding: 80px 0;
    text-align: center;
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.cyber-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
}

.cyber-cta p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: var(--gray-medium);
}

/* Footer */
.cyber-footer {
    background-color: var(--primary-dark);
    padding: 60px 0 0;
    border-top: 1px solid rgba(78, 205, 196, 0.1);
}

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

.footer-column {
    margin-bottom: 40px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 0.1rem;
    color: var(--secondary-color);
}

.footer-column p {
    margin-bottom: 15px;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--gray-medium);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--gray-medium);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(78, 205, 196, 0.1);
    font-size: 0.8rem;
    color: var(--gray-medium);
}

/* Services Page */
.services-hero {
    min-height: 400px;
    height: auto;
    padding: 150px 0 100px;
    background-color: var(--primary-dark);
}

.services-hub {
    padding: 80px 0;
}

.service-hub-card {
    display: flex;
    margin-bottom: 60px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.service-hub-card.reverse {
    flex-direction: row-reverse;
}

.service-hub-content {
    flex: 1;
    padding: 40px;
    display: flex;
}

.service-hub-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-right: 30px;
    flex-shrink: 0;
}

.service-hub-text {
    flex: 1;
}

.service-hub-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-hub-text p {
    margin-bottom: 25px;
    color: var(--gray-medium);
}

.service-hub-image {
    flex: 1;
    min-height: 300px;
    background-size: cover;
    background-position: center;
}

/* Differentials Page */
.differentials-hero {
    min-height: 400px;
    height: auto;
    padding: 150px 0 100px;
    background-color: var(--primary-dark);
}

.differentials-detailed {
    padding: 80px 0;
}

.differential-expanded {
    display: flex;
    margin-bottom: 60px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.differential-expanded.reverse {
    flex-direction: row-reverse;
}

.differential-expanded-icon {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--secondary-color);
    background-color: rgba(78, 205, 196, 0.05);
}

.differential-expanded-content {
    flex: 1;
    padding: 40px;
}

.differential-expanded-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.differential-expanded-content p {
    margin-bottom: 25px;
    color: var(--gray-medium);
}

.differential-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.differential-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    flex: 1;
    background-color: rgba(78, 205, 196, 0.05);
    border-radius: 5px;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-box .stat-label {
    font-size: 0.8rem;
}

/* Contact Page */
.contact-hero {
    min-height: 400px;
    height: auto;
    padding: 150px 0 100px;
    background-color: var(--primary-dark);
}

.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-form-container, .contact-info-container {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    padding: 40px;
    border: 1px solid rgba(78, 205, 196, 0.1);
}

.contact-form-container h3, .contact-info-container h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.contact-form-container p, .contact-info-container p {
    margin-bottom: 30px;
    color: var(--gray-medium);
}

.cyber-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.cyber-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.cyber-form input, 
.cyber-form textarea, 
.cyber-form select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 3px;
    color: var(--text-color);
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.cyber-form input:focus, 
.cyber-form textarea:focus, 
.cyber-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.2);
}

.cyber-form textarea {
    min-height: 150px;
    resize: vertical;
    padding-left: 15px;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 38px;
    color: var(--gray-medium);
    font-size: 1.1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.8rem;
}

.form-actions {
    margin-top: 30px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-method {
    display: flex;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    padding: 20px;
    border: 1px solid rgba(78, 205, 196, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: rgba(78, 205, 196, 0.3);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-details p {
    margin-bottom: 5px;
    color: var(--text-color);
    font-size: 0.9rem;
}

.contact-details small {
    color: var(--gray-medium);
    font-size: 0.8rem;
}

.contact-security {
    margin-top: 40px;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.badge-item {
    display: flex;
    align-items: center;
    background-color: rgba(78, 205, 196, 0.1);
    border-radius: 3px;
    padding: 8px 15px;
}

.badge-item i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 0.9rem;
}

.badge-item span {
    font-size: 0.8rem;
}

.contact-map {
    padding: 0 0 80px;
}

.map-container {
    height: 450px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cyber-button.emergency {
    background-color: var(--danger-color);
    color: white;
    animation: pulseEmergency 2s infinite;
}

@keyframes pulseEmergency {
    0% {
        box-shadow: 0 0 0 0 rgba(250, 82, 82, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(250, 82, 82, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(250, 82, 82, 0);
    }
}

/* Service Detail Page */
.service-hero {
    min-height: 400px;
    height: auto;
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
}

.service-detail {
    padding: 80px 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.service-detail-text {
    grid-column: 1;
}

.service-detail-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-detail-text p {
    margin-bottom: 25px;
    color: var(--gray-medium);
}

.service-features {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    margin-bottom: 25px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 20px;
    flex-shrink: 0;
}

.service-detail-sidebar {
    grid-column: 2;
    position: relative;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    padding: 30px;
    border: 1px solid rgba(78, 205, 196, 0.1);
    position: sticky;
    top: 100px;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.benefits-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 0.9rem;
    margin-top: 3px;
}

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

.service-cta p {
    font-size: 0.8rem;
    color: var(--gray-medium);
    margin-top: 10px;
}

.service-technologies {
    margin-bottom: 60px;
}

.service-technologies h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    padding: 20px;
    border: 1px solid rgba(78, 205, 196, 0.1);
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: rgba(78, 205, 196, 0.3);
    transform: translateY(-5px);
}

.tech-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.service-process {
    margin-bottom: 60px;
}

.service-process h4 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 2px;
    height: 100%;
    background-color: rgba(78, 205, 196, 0.2);
    z-index: -1;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(78, 205, 196, 0.1);
    border: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.step-content {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    padding: 20px;
    border: 1px solid rgba(78, 205, 196, 0.1);
    flex: 1;
}

.step-content h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.service-cases {
    margin-bottom: 60px;
}

.service-cases h4 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.case-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    padding: 30px;
    border: 1px solid rgba(78, 205, 196, 0.1);
    transition: all 0.3s ease;
}

.case-card:hover {
    border-color: rgba(78, 205, 196, 0.3);
    transform: translateY(-5px);
}

.case-content h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.case-result {
    display: flex;
    align-items: center;
    margin-top: 15px;
    color: var(--success-color);
}

.case-result i {
    margin-right: 10px;
}

/* Responsividade */
@media (max-width: 1200px) {
    .service-detail-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail-sidebar {
        grid-column: 1;
        grid-row: 2;
    }
    
    .service-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 992px) {
    .cyber-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-hub-card, 
    .service-hub-card.reverse,
    .differential-expanded,
    .differential-expanded.reverse {
        flex-direction: column;
    }
    
    .service-hub-image {
        min-height: 200px;
    }
    
    .differential-expanded-icon {
        flex: 0 0 auto;
        padding: 30px;
    }
    
    .differential-stats {
        flex-direction: column;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .cyber-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--primary-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }
    
    .cyber-nav.active {
        left: 0;
    }
    
    .cyber-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .cyber-nav ul li {
        margin: 15px 0;
    }
    
    .cyber-title {
        font-size: 2.5rem;
    }
    
    .cyber-hero {
        min-height: 600px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-item {
        min-width: 150px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .service-hub-content {
        flex-direction: column;
    }
    
    .service-hub-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .service-detail-text h3,
    .differential-expanded-content h3,
    .contact-form-container h3,
    .contact-info-container h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .cyber-title {
        font-size: 2rem;
        letter-spacing: 0.3rem;
    }
    
    .cyber-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 10px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cyber-button {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .cyber-button.big {
        padding: 12px 30px;
    }
    
    .service-hub-content,
    .differential-expanded-content {
        padding: 20px;
    }
    
    .service-hub-text h3,
    .differential-expanded-content h3 {
        font-size: 1.3rem;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .process-steps::before {
        left: 30px;
    }
    
    .step-content {
        margin-top: 15px;
        margin-left: 0;
    }
    
    .contact-form-container,
    .contact-info-container {
        padding: 20px;
    }
    
    .cyber-form input,
    .cyber-form textarea,
    .cyber-form select {
        padding: 10px 15px 10px 40px;
    }
    
    .form-icon {
        top: 33px;
    }
}
/* Sobre Nós - Cyber Style */
.cyber-about {
    background-color: var(--primary-dark);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}

.cyber-about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cyber-about-header {
    margin-bottom: 60px;
    text-align: center;
}

.cyber-about-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.cyber-about-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: var(--secondary-color);
    overflow: hidden;
    transition: 1s;
}

.cyber-about-title:hover::before {
    width: 100%;
    filter: drop-shadow(0 0 10px var(--secondary-color));
}

.cyber-about-line {
    height: 2px;
    width: 150px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 0 auto;
}

.cyber-about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.cyber-about-text {
    flex: 1;
    min-width: 300px;
}

.cyber-about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--secondary-color);
}

.cyber-about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    position: relative;
    background-color: var(--primary-dark);
    border: 1px solid var(--secondary-color);
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

.cyber-about-glitch {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        var(--secondary-color) 45%,
        var(--secondary-color) 55%,
        transparent 55%
    );
    opacity: 0.1;
    animation: glitch 5s infinite;
}

.cyber-about-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(78, 205, 196, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 205, 196, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-5px, 5px); }
    40% { transform: translate(-5px, -5px); }
    60% { transform: translate(5px, 5px); }
    80% { transform: translate(5px, -5px); }
}

/* Responsivo */
@media (max-width: 768px) {
    .cyber-about {
        padding: 60px 15px;
    }
    
    .cyber-about-title {
        letter-spacing: 0.3rem;
    }
    
    .cyber-about-content {
        flex-direction: column;
    }
    
    .cyber-about-image {
        height: 300px;
        width: 100%;
    }
}
/* Ajuste específico para centralizar o botão APENAS no mobile */
@media (max-width: 768px) {
  .cyber-about-text .cyber-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%; /* Opcional: controla a largura do botão */
    text-align: center;
  }
}
/* Nossos Valores - Cyber Style */
.cyber-values {
    background-color: var(--primary-darker);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--secondary-color);
}

.cyber-values-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cyber-values-header {
    margin-bottom: 60px;
    text-align: center;
}

.cyber-values-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.cyber-values-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: var(--secondary-color);
    overflow: hidden;
    transition: 1s;
}

.cyber-values-title:hover::before {
    width: 100%;
    filter: drop-shadow(0 0 10px var(--secondary-color));
}

.cyber-values-line {
    height: 2px;
    width: 150px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 0 auto;
}

.cyber-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cyber-value-card {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--secondary-color);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.1);
}

.cyber-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(78, 205, 196, 0.3);
}

.value-icon {
    color: var(--secondary-color);
    font-size: 2rem;
    font-family: monospace;
    margin-bottom: 15px;
}

.value-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}

.value-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
    color: rgba(78, 205, 196, 0.2);
    font-weight: 700;
    font-family: var(--font-heading);
}

.cyber-values-binary {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgba(78, 205, 196, 0.1);
    font-family: monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    user-select: none;
}

/* Responsivo */
@media (max-width: 768px) {
    .cyber-values {
        padding: 60px 15px;
    }
    
    .cyber-values-title {
        letter-spacing: 0.3rem;
    }
    
    .cyber-values-grid {
        grid-template-columns: 1fr;
    }
    
    .cyber-value-card {
        padding: 25px;
    }
}
/* Decisões Judiciais - Cyber Style */
.cyber-decisions {
    background-color: var(--primary-dark);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--secondary-color);
}

.cyber-decisions-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cyber-decisions-header {
    margin-bottom: 30px;
    text-align: center;
}

.cyber-decisions-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.cyber-decisions-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: var(--secondary-color);
    overflow: hidden;
    transition: 1s;
}

.cyber-decisions-title:hover::before {
    width: 100%;
    filter: drop-shadow(0 0 10px var(--secondary-color));
}

.cyber-decisions-line {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 0 auto 20px;
}

.cyber-decisions-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    margin-bottom: 30px;
}

.cyber-decisions-intro {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cyber-decisions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.cyber-decision-item {
    border: 1px solid rgba(78, 205, 196, 0.3);
    background-color: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.cyber-decision-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.2);
}

.decision-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.decision-icon {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    font-weight: bold;
}

.decision-title {
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    margin: 0;
}

.decision-content {
    color: var(--text-light);
}

.decision-summary h4,
.decision-reference h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 15px;
    margin-bottom: 10px;
}

.decision-summary p,
.decision-reference p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.cyber-circuit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(78,205,196,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.1;
    z-index: 1;
}

/* Responsivo */
@media (max-width: 768px) {
    .cyber-decisions {
        padding: 60px 15px;
    }
    
    .cyber-decisions-title {
        letter-spacing: 0.2rem;
    }
    
    .decision-title {
        font-size: 1.1rem;
    }
    
    .cyber-decision-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .decision-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .decision-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
}
/* Nossa Visão - Cyber Style */
.cyber-vision {
    background-color: var(--primary-darker);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}

.cyber-vision-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cyber-vision-header {
    margin-bottom: 60px;
    text-align: center;
}

.cyber-vision-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.5rem;
    text-transform: uppercase;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.cyber-vision-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: var(--secondary-color);
    overflow: hidden;
    transition: 1s;
}

.cyber-vision-title:hover::before {
    width: 100%;
    filter: drop-shadow(0 0 10px var(--secondary-color));
}

.cyber-vision-line {
    height: 2px;
    width: 150px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: 0 auto;
}

.cyber-vision-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.cyber-vision-text {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.cyber-vision-statement {
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--text-light);
    position: relative;
    padding: 30px;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 0 30px rgba(78, 205, 196, 0.2);
    background-color: rgba(0, 0, 0, 0.3);
    font-weight: 300;
    letter-spacing: 0.1rem;
}

.cyber-vision-grid {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    z-index: -1;
}

.vision-grid-line {
    position: absolute;
    background-color: var(--secondary-color);
    opacity: 0.1;
}

.vision-grid-line:nth-child(1) {
    width: 100%;
    height: 1px;
    top: 33%;
}

.vision-grid-line:nth-child(2) {
    width: 100%;
    height: 1px;
    top: 66%;
}

.vision-grid-line:nth-child(3) {
    width: 1px;
    height: 100%;
    left: 50%;
}

.cyber-vision-graphic {
    flex: 1;
    min-width: 300px;
    height: 400px;
    position: relative;
}

.vision-data-sphere {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 6s infinite alternate;
}

.vision-circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, transparent 60%, var(--primary-darker) 100%),
        linear-gradient(var(--secondary-color), var(--secondary-color));
    background-size: 100% 100%, 2px 100%;
    background-position: center center, center center;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.cyber-vision-binary {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgba(78, 205, 196, 0.1);
    font-family: monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    user-select: none;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

/* Responsivo */
@media (max-width: 768px) {
    .cyber-vision {
        padding: 60px 15px;
    }
    
    .cyber-vision-title {
        letter-spacing: 0.3rem;
    }
    
    .cyber-vision-statement {
        font-size: 1.4rem;
        padding: 20px;
    }
    
    .cyber-vision-graphic {
        height: 300px;
    }
    
    .vision-data-sphere {
        width: 200px;
        height: 200px;
    }
}
/* ===== SEÇÃO INVESTIMENTO ≠ CUSTO ===== */
.cyber-investment {
  background-color: var(--primary-darkest);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--secondary-color);
}

.cyber-investment-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Cabeçalho */
.cyber-investment-header {
  margin-bottom: 60px;
  text-align: center;
}

.cyber-investment-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  color: var(--text-color);
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.cyber-investment-title::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  color: var(--secondary-color);
  overflow: hidden;
  transition: 1s;
}

.cyber-investment-title:hover::before {
  width: 100%;
  filter: drop-shadow(0 0 10px var(--secondary-color));
}

.cyber-investment-line {
  height: 2px;
  width: 150px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
  margin: 0 auto;
}

/* Cards de Benefícios */
.cyber-investment-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.cyber-investment-card {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--secondary-color);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(78, 205, 196, 0.1);
}

.cyber-investment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(78, 205, 196, 0.3);
}

.investment-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.investment-card-title {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.investment-card-text {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1rem;
}

.investment-highlight {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--secondary-color);
  font-style: italic;
}

/* Estatísticas */
.cyber-investment-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 60px 0;
  gap: 20px;
}

.investment-stat-item {
  text-align: center;
  min-width: 150px;
  position: relative;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  font-family: var(--font-heading);
  line-height: 1;
}

.stat-symbol {
  font-size: 2rem;
  color: var(--secondary-color);
  display: inline-block;
  margin-left: 5px;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 5px;
  letter-spacing: 0.1rem;
}

/* Rodapé com Botão Centralizado */
.cyber-investment-footer {
  text-align: center;
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.investment-footer-text {
  color: var(--text-light);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.text-gradient {
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

/* Botão Centralizado */
.cyber-investment-footer .cyber-button {
  display: inline-block;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  padding: 15px 30px;
  text-align: center;
}

/* Efeitos de Fundo */
.cyber-investment-glitch {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(78, 205, 196, 0.1), rgba(78, 205, 196, 0.1));
  opacity: 0.05;
  z-index: 1;
  animation: glitch 10s infinite;
}

@keyframes glitch {
  0%, 100% { opacity: 0.05; }
  25% { opacity: 0.1; transform: skewX(5deg); }
  50% { opacity: 0.03; transform: skewX(-5deg); }
  75% { opacity: 0.08; }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .cyber-investment {
    padding: 60px 15px;
  }
  
  .cyber-investment-title {
    letter-spacing: 0.3rem;
  }
  
  .cyber-investment-content {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .cyber-investment-footer .cyber-button {
    width: 90%;
    padding: 12px 20px;
  }
}

/* ===== ANIMAÇÃO DO BOTÃO ===== */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(78, 205, 196, 0); }
  100% { box-shadow: 0 0 0 0 rgba(78, 205, 196, 0); }
}
/* Responsivo */
@media (max-width: 768px) {
    .cyber-about {
        padding: 60px 15px;
    }
    
    .cyber-about-title {
        letter-spacing: 0.3rem;
    }
    
    .cyber-about-content {
        flex-direction: column;
    }
    
    .cyber-about-image {
        height: 300px;
        width: 100%;
    }

    /* NOVO CÓDIGO PARA CENTRALIZAR O BOTÃO */
    .cyber-about-text .cyber-button {
        display: block;
        margin: 0 auto;
        width: 90%;
        text-align: center;
    }
}
/* Garante que paddings não quebrem o layout */
* {
  box-sizing: border-box;
}

/* HEADER */
.cyber-header {
  padding: 15px 30px;
}

/* CONTAINER ESPECÍFICO DO HEADER */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo-container {
  padding: 5px 0;
}

.cyber-logo-img {
  height: 50px; /* Deixa menor */
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* NAVEGAÇÃO */
.nav-wrapper {
  display: flex;
  align-items: center;
}

.cyber-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cyber-nav a {
  text-decoration: none;
  /* Cores mantidas do original */
}
/* NAVEGAÇÃO */
.nav-wrapper {
  display: flex;
  align-items: center;
}

.cyber-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cyber-nav a {
  text-decoration: none;
  /* Mantenha suas cores originais */
}

/* Menu Mobile */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-color);
  z-index: 1001;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .cyber-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-dark);
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    padding-top: 80px;
  }
  
  .cyber-nav.active {
    transform: translateY(0);
  }
  
  .cyber-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .logo-container {
    z-index: 1002;
    position: relative;
  }
  
  .menu-toggle .fa-bars {
    display: block;
  }
  
  .menu-toggle .fa-times {
    display: none;
  }
  
  .menu-toggle.active .fa-bars {
    display: none;
  }
  
  .menu-toggle.active .fa-times {
    display: block;
  }
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
 
  
}

.whatsapp-float:hover {
    background-color: #00c4d1;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
}

@keyframes cyber-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 240, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}
.cyber-feature {
    max-width: 800px;
    margin: 20px auto;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.3);
    border-left: 3px solid #00f0ff;
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
}

.cyber-feature p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #aaa;
}

.cta-wrapper {
    margin: 25px 0;
    text-align: center;
}

.cta-text {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 15px;
    line-height: 1.4;
}

.cta-text span {
    color: #00f0ff;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

/* Ajuste o botão existente se necessário */
.cyber-button.big {
    font-size: 1.1em;
    padding: 12px 30px;
}

.cyber-button {
    background-color: #00ffae;
    color: #000;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cyber-button:hover {
    background-color: #00cc8c;
    transform: scale(1.05);
}

.cyber-hero {
    position: relative;
    padding: 80px 20px 60px;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
    margin-top: -80px;
}

.hero-content {
    width: 100%;
    max-width: 900px;
    text-align: center;
    padding: 20px 0;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.cyber-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #00f0ff;
}

.cyber-title .line-1,
.cyber-title .line-2 {
    display: block;
}

.cyber-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ccc;
}

@media (max-width: 768px) {
  .cyber-title {
    font-size: 32px;
    line-height: 1.2;
    margin-top: 30px;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
    text-align: center;
    word-wrap: break-word;
  }

  .cyber-title .line-1 {
    display: inline-block;  /* Mantenha a linha 1 em uma linha */
    white-space: nowrap; /* Evita quebra de palavra */
    overflow-wrap: normal;
    max-width: 100%; /* Garante que o texto ocupe 100% do espaço disponível */
    word-wrap: normal; /* Não permite quebra de palavra */
  }

  .cyber-title .line-2 {
    display: block;
    text-align: center;
  }
}


@media (max-width: 480px) {
  .cyber-hero {
    padding-top: 60px;
    min-height: calc(100vh - 60px);
    margin-top: -60px;
  }

  .hero-content {
    margin-top: 60px;
    padding: 0 10px;
    max-width: 100%;
  }

  .cyber-title {
    font-size: 22px;  /* Ajustado para caber sem quebrar */
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-width: 100%; /* Garante que o título caiba */
  }

  .cyber-title .line-1 {
    display: inline-block;  /* Mantém a palavra em linha */
    white-space: nowrap; /* Evita quebra de linha */
    overflow-wrap: normal;
    max-width: 100%;  /* Garante que a linha 1 ocupe a largura disponível */
    word-wrap: normal; /* Impede a quebra da palavra */
    text-align: center;
  }

  .cyber-title .line-2 {
    display: block;
    text-align: center;
  }

  .cyber-subtitle {
    font-size: 15px;
    margin-bottom: 1rem;
  }

  .cyber-button.big {
    font-size: 0.95em;
    padding: 10px 22px;
  }
}
/* Seção de Dores - Estilo Cyber */
.cyber-pain-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(78, 205, 196, 0.3);
    overflow: hidden;
}

.cyber-circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(78,205,196,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.cyber-pain-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 6vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.3rem;
    color: var(--text-color);
    position: relative;
}

.cyber-pain-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: var(--secondary-color);
    overflow: hidden;
    transition: 1s;
    text-align: center;
}

.cyber-pain-title:hover::before {
    width: 100%;
}

.cyber-pain-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--gray-light);
}

.cyber-glow {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.7);
}

.cyber-pain-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.cyber-pain-content p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cyber-highlight {
    color: var(--secondary-color);
    font-weight: 500;
}

.cyber-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.cyber-pain-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 5px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-pain-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(78, 205, 196, 0.2);
}

.pulse-border {
    animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
    0% { border-color: rgba(78, 205, 196, 0.2); }
    50% { border-color: var(--secondary-color); }
    100% { border-color: rgba(78, 205, 196, 0.2); }
}

.pain-icon {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: rgba(78, 205, 196, 0.3);
    margin-bottom: 15px;
    font-weight: 700;
}

.cyber-pain-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cyber-pain-card p {
    text-align: left;
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-bottom: 0;
}

.cyber-warning-box {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
    position: relative;
}

.warning-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.cyber-warning-box p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

/* Responsivo */
@media (max-width: 768px) {
    .cyber-pain-section {
        padding: 70px 20px;
    }
    
    .cyber-pain-grid {
        grid-template-columns: 1fr;
    }
    
    .cyber-warning-box {
        padding: 25px 15px;
    }
    
    .cyber-warning-box p {
        font-size: 1rem;
    }
}
/* Seção de Dores - Estilo Cyber */
.cyber-pain-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(78, 205, 196, 0.3);
    overflow: hidden;
}

.cyber-circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(78,205,196,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.cyber-pain-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 6vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.3rem;
    color: var(--text-color);
    position: relative;
}

.cyber-pain-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: var(--secondary-color);
    overflow: hidden;
    transition: 1s;
    text-align: center;
}

.cyber-pain-title:hover::before {
    width: 100%;
}

.cyber-pain-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--gray-light);
}

.cyber-glow {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.7);
}

.cyber-pain-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.cyber-pain-content p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cyber-highlight {
    color: var(--secondary-color);
    font-weight: 500;
}

.cyber-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.cyber-pain-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 5px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-pain-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(78, 205, 196, 0.2);
}

.pulse-border {
    animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
    0% { border-color: rgba(78, 205, 196, 0.2); }
    50% { border-color: var(--secondary-color); }
    100% { border-color: rgba(78, 205, 196, 0.2); }
}

.pain-icon {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: rgba(78, 205, 196, 0.3);
    margin-bottom: 15px;
    font-weight: 700;
}

.cyber-pain-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.cyber-pain-card p {
    text-align: left;
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-bottom: 0;
}

.cyber-warning-box {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
    position: relative;
}

.warning-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.cyber-warning-box p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

/* Responsivo */
@media (max-width: 768px) {
    .cyber-pain-section {
        padding: 70px 20px;
    }
    
    .cyber-pain-grid {
        grid-template-columns: 1fr;
    }
    
    .cyber-warning-box {
        padding: 25px 15px;
    }
    
    .cyber-warning-box p {
        font-size: 1rem;
    }
}
/* Seção de Dores - Estilo Cyber */
.cyber-pain-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(78, 205, 196, 0.3);
    overflow: hidden;
}

.cyber-circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(78,205,196,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.cyber-pain-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 6vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.3rem;
    color: var(--text-color);
    position: relative;
}

.cyber-pain-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: var(--secondary-color);
    overflow: hidden;
    transition: 1s;
    text-align: center;
}

.cyber-pain-title:hover::before {
    width: 100%;
}

.cyber-pain-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--gray-light);
}

.cyber-glow {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.7);
}

.cyber-pain-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.cyber-pain-content p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cyber-highlight {
    color: var(--secondary-color);
    font-weight: 500;
}

.cyber-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.cyber-pain-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 5px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-pain-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(78, 205, 196, 0.2);
}

.pulse-border {
    animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
    0% { border-color: rgba(78, 205, 196, 0.2); }
    50% { border-color: var(--secondary-color); }
    100% { border-color: rgba(78, 205, 196, 0.2); }
}

.pain-icon {
    color: rgba(78, 205, 196, 0.5);
    margin-bottom: 20px;
    text-align: center;
}

.pain-icon svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 5px rgba(78, 205, 196, 0.3));
}

.cyber-pain-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-align: center;
}

.cyber-pain-card p {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-bottom: 0;
}

.cyber-pain-card p strong {
    color: var(--text-color);
}

.cyber-warning-box {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    margin-top: 50px;
    position: relative;
}

.warning-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.cyber-warning-box p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-color);
}

/* Responsivo */
@media (max-width: 768px) {
    .cyber-pain-section {
        padding: 70px 20px;
    }
    
    .cyber-pain-grid {
        grid-template-columns: 1fr;
    }
    
    .cyber-warning-box {
        padding: 25px 15px;
    }
    
    .cyber-warning-box p {
        font-size: 1rem;
    }
}
/* Seção Cadeia de Custódia */
.cyber-chain-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(255, 107, 107, 0.3);
    overflow: hidden;
}

.cyber-chain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 107, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 107, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
}

.cyber-chain-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 6vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.3rem;
    color: var(--text-color);
    position: relative;
}

.cyber-chain-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: var(--accent-color);
    overflow: hidden;
    transition: 1s;
    text-align: center;
}

.cyber-chain-title:hover::before {
    width: 100%;
}

.cyber-chain-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--gray-light);
}

.cyber-chain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.cyber-chain-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 5px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cyber-chain-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.chain-icon {
    margin: 0 auto 25px;
    width: 80px;
    height: 80px;
}

.chain-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5));
}

.cyber-chain-card h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    line-height: 1.4;
}

.cyber-chain-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-light);
}

.cyber-accent {
    color: var(--accent-color);
    font-weight: 500;
}

.cyber-chain-consequence {
    background: rgba(255, 107, 107, 0.1);
    border-left: 3px solid var(--accent-color);
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.consequence-icon {
    flex-shrink: 0;
    margin-top: 3px;
}

.consequence-icon svg {
    width: 24px;
    height: 24px;
}

.cyber-chain-consequence h4 {
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.cyber-chain-consequence p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cyber-chain-cta {
    text-align: center;
    margin-top: 40px;
}

/* Animação de emergência para o botão */
@keyframes pulseEmergency {
    0% {
        box-shadow: 0 0 0 0 rgba(250, 82, 82, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(250, 82, 82, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(250, 82, 82, 0);
    }
}

.cyber-button.emergency {
    background-color: var(--danger-color);
    color: white;
    animation: pulseEmergency 2s infinite;
}

/* Responsivo */
@media (max-width: 768px) {
    .cyber-chain-section {
        padding: 70px 20px;
    }
    
    .cyber-chain-card {
        padding: 30px 20px;
    }
    
    .cyber-chain-card h3 {
        font-size: 1.3rem;
    }
    
    .cyber-chain-consequence {
        flex-direction: column;
    }
}
/* Estilos para a seção "Decifrando o Tecniquês" */
.cyber-pain-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(78, 205, 196, 0.3);
    overflow: hidden;
}

.cyber-circuit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(78,205,196,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.cyber-pain-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 6vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.3rem;
    color: var(--text-color);
    position: relative;
}

.cyber-pain-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: var(--secondary-color);
    overflow: hidden;
    transition: 1s;
    text-align: center;
}

.cyber-pain-title:hover::before {
    width: 100%;
}

.cyber-pain-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--gray-light);
}

.cyber-glow {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.7);
}

.cyber-pain-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.cyber-pain-content p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cyber-highlight {
    color: var(--secondary-color);
    font-weight: 500;
}

.cyber-pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.cyber-pain-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 5px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-pain-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(78, 205, 196, 0.2);
}

.pulse-border {
    animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
    0% { border-color: rgba(78, 205, 196, 0.2); }
    50% { border-color: var(--secondary-color); }
    100% { border-color: rgba(78, 205, 196, 0.2); }
}

.pain-icon {
    color: rgba(78, 205, 196, 0.5);
    margin-bottom: 20px;
    text-align: center;
}

.pain-icon svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 5px rgba(78, 205, 196, 0.3));
}

.cyber-pain-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-align: center;
}

.cyber-pain-card p {
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-bottom: 0;
}

.cyber-pain-card p strong {
    color: var(--text-color);
}

.cyber-chain-consequence {
    background: rgba(255, 107, 107, 0.1);
    border-left: 3px solid var(--accent-color);
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 30px;
    border-radius: 0 5px 5px 0;
}

.consequence-icon {
    flex-shrink: 0;
    margin-top: 3px;
}

.consequence-icon svg {
    width: 24px;
    height: 24px;
}

.cyber-chain-consequence h4 {
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.cyber-chain-consequence p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 0;
}

.cyber-chain-cta {
    text-align: center;
    margin-top: 40px;
}

/* Responsivo */
@media (max-width: 768px) {
    .cyber-pain-section {
        padding: 70px 20px;
    }
    
    .cyber-pain-grid {
        grid-template-columns: 1fr;
    }
    
    .cyber-chain-consequence {
        flex-direction: column;
    }
    
    .cyber-pain-title {
        font-size: 1.8rem;
    }
    
    .cyber-pain-subtitle {
        font-size: 1.2rem;
    }
}
/* Seção Detalhes Técnicos */
.tech-details-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(78, 205, 196, 0.3);
    overflow: hidden;
}

.tech-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(78, 205, 196, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 205, 196, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
    z-index: 1;
}

.tech-details-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.tech-details-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 6vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.3rem;
    color: var(--text-color);
    position: relative;
    text-transform: uppercase;
}

.tech-details-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: var(--secondary-color);
    overflow: hidden;
    transition: 1s;
    text-align: center;
}

.tech-details-title:hover::before {
    width: 100%;
}

.tech-details-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--gray-light);
    font-weight: 300;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 500;
    text-shadow: 0 0 5px rgba(78, 205, 196, 0.5);
}

.tech-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.tech-detail-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 5px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.tech-detail-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(78, 205, 196, 0.2);
}

.detail-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
}

.detail-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 5px rgba(78, 205, 196, 0.5));
}

.tech-detail-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 500;
}

.tech-detail-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-light);
    text-align: left;
}

.tech-detail-card p strong {
    color: var(--text-color);
    font-weight: 500;
}

.tech-consequence {
    background: rgba(255, 107, 107, 0.1);
    border-left: 3px solid var(--accent-color);
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: 0 auto 30px;
    max-width: 800px;
    border-radius: 0 5px 5px 0;
}

.consequence-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    color: var(--accent-color);
    margin-top: 3px;
}

.consequence-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 2;
}

.tech-consequence h4 {
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.tech-consequence p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .tech-details-section {
        padding: 70px 20px;
    }
    
    .tech-details-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-consequence {
        flex-direction: column;
    }
    
    .tech-details-title {
        font-size: 1.8rem;
    }
    
    .tech-details-subtitle {
        font-size: 1.2rem;
    }
}
/* Seção do Ciclo da Prova Digital - Cyber Style */
.cyber-process {
  background-color: var(--primary-darker);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
}

.cyber-process-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cyber-process-header {
  margin-bottom: 60px;
  text-align: center;
}

.cyber-process-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  color: var(--text-color);
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.cyber-process-title::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  color: var(--secondary-color);
  overflow: hidden;
  transition: 1s;
}

.cyber-process-title:hover::before {
  width: 100%;
  filter: drop-shadow(0 0 10px var(--secondary-color));
}

.cyber-process-line {
  height: 2px;
  width: 150px;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
  margin: 0 auto 20px;
}

.cyber-process-subtitle {
  color: var(--text-light);
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}

.cyber-process-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.process-pain-point,
.process-consequence {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--secondary-color);
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(78, 205, 196, 0.1);
  display: flex;
  gap: 20px;
}

.process-pain-point:hover,
.process-consequence:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(78, 205, 196, 0.3);
}

.pain-icon,
.consequence-icon {
  color: var(--secondary-color);
  font-size: 2rem;
  flex-shrink: 0;
}

.pain-content h3,
.consequence-content h3 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.pain-content p,
.consequence-content p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 1rem;
}

.process-flow {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--secondary-color);
  padding: 30px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.flow-icon {
  color: var(--secondary-color);
  font-size: 2rem;
  margin-bottom: 20px;
}

.flow-content h3 {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  position: relative;
}

.flow-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  z-index: 1;
  opacity: 0.3;
}

.flow-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(78, 205, 196, 0.1);
  border: 2px solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary-color);
}

.step-name {
  color: var(--text-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.step-blindspot {
  color: #ff5555;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

/* Responsivo */
@media (max-width: 768px) {
  .cyber-process {
    padding: 60px 15px;
  }
  
  .cyber-process-title {
    letter-spacing: 0.3rem;
  }
  
  .process-pain-point,
  .process-consequence {
    flex-direction: column;
  }
  
  .flow-steps {
    flex-direction: column;
  }
  
  .flow-steps::before {
    display: none;
  }
  
  .flow-step {
    margin-bottom: 30px;
  }
}
/* CTA Final Styles */
.cyber-cta-final {
    background: linear-gradient(135deg, #0d1f26 0%, #1e3f4b 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cyber-cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url('../imagens/cta-pattern.png');
    background-size: cover;
    opacity: 0.1;
}

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

.cta-final-title {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.3;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.cta-final-text {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.cyber-button.big.pulse {
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    animation: pulse 2s infinite;
}

.secondary-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.secondary-cta span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.phone-cta {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.phone-cta:hover {
    color: var(--secondary-color);
    transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .cyber-cta-final {
        padding: 80px 0;
    }
    
    .cta-final-title {
        font-size: 1.8rem;
    }
    
    .cta-final-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .cyber-cta-final {
        padding: 60px 20px;
    }
    
    .cyber-cta-final::before {
        width: 70%;
    }
    
    .cta-final-title {
        font-size: 1.6rem;
    }
    
    .phone-cta {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .cta-final-title {
        font-size: 1.4rem;
    }
    
    .cyber-button.big.pulse {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .phone-cta {
        font-size: 1.1rem;
    }
}
.differentials-intro {
    padding: 80px 0;
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(78, 205, 196, 0.2);
    border-bottom: 1px solid rgba(78, 205, 196, 0.2);
}

.differentials-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(78, 205, 196, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 205, 196, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 1;
}

.differentials-intro .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-light);
    text-align: center;
    position: relative;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 5px;
}

.intro-text::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(78, 205, 196, 0.1);
    border-radius: 3px;
    pointer-events: none;
}

.intro-text strong {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Efeitos de hover */
.intro-text:hover {
    border-color: rgba(78, 205, 196, 0.4);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.2);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* Responsivo */
@media (max-width: 768px) {
    .differentials-intro {
        padding: 60px 20px;
    }
    
    .intro-text {
        padding: 20px;
        font-size: 1rem;
    }
}