/* Base Styles */
:root {
    --dark-bg: #0a0f1a;
    --neon-green: #00FF66;
    --white: #ffffff;
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Fallback para fontes caso Google Fonts falhe */
@font-face {
    font-family: 'Montserrat-Fallback';
    src: local('Arial'), local('Helvetica'), local('sans-serif');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--dark-bg);
    color: var(--white);
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Evita espaço extra abaixo das imagens */
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--neon-green);
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(10, 15, 26, 0.3);
    overflow: visible;
    transform: translateY(0);
}

header.scrolled {
    background-color: rgba(10, 15, 26, 0.95);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 102, 0.1);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

header.scroll-down {
    transform: translateY(-100%);
}

header.scroll-up {
    transform: translateY(0);
}

/* Animações para os raios */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(15deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(15deg);
    }
}

@keyframes fadeInScaleRight {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(-10deg);
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-15px) translateX(-50%);
    }
}

@keyframes glowing {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(0, 255, 102, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 102, 0.7));
    }
}

/* Animações para as coroas */
@keyframes coroaRotate {
    0%, 100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

@keyframes coroaPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 3px rgba(0, 255, 102, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 10px rgba(0, 255, 102, 0.7));
    }
}

@keyframes coroaShine {
    0% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(0, 255, 102, 0.3));
    }
    25% {
        filter: brightness(1.2) drop-shadow(0 0 8px rgba(0, 255, 102, 0.5));
    }
    50% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(0, 255, 102, 0.3));
    }
    75% {
        filter: brightness(1.1) drop-shadow(0 0 7px rgba(0, 255, 102, 0.4));
    }
    100% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(0, 255, 102, 0.3));
    }
}

/* Aplicando as animações */
.raio-esquerdo {
    position: absolute;
    top: -40px;
    left: -120px;
    z-index: -1;
    width: 300px;
    overflow: visible;
    transform: rotate(15deg);
    animation: fadeInScale 1.2s ease-out forwards, glowing 4s infinite ease-in-out;
}

.raio-esquerdo img {
    width: 100%;
    height: auto;
    animation: coroaRotate 8s infinite ease-in-out, coroaShine 5s infinite ease-in-out;
}

.raio-direito {
    position: absolute;
    top: -50px;
    right: -100px;
    z-index: -1;
    width: 300px;
    overflow: visible;
    transform: rotate(-10deg);
    animation: fadeInScaleRight 1.2s ease-out forwards, glowing 4s infinite ease-in-out 1s;
}

.raio-direito img {
    width: 100%;
    height: auto;
    animation: coroaRotate 9s infinite ease-in-out reverse, coroaShine 6s infinite ease-in-out 1s;
}

.raio-central {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 80%;
    max-width: 900px;
    height: auto;
    overflow: visible;
    animation: floatUp 6s infinite ease-in-out, glowing 5s infinite ease-in-out 0.5s;
    pointer-events: none;
}

.raio-central img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    animation: coroaPulse 7s infinite ease-in-out, coroaShine 8s infinite ease-in-out 0.5s;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 5;
}

.logo img {
    height: 40px;
    transition: height 0.3s ease;
}

header.scrolled .logo img {
    height: 35px;
}

.main-menu ul {
    display: flex;
}

.main-menu ul li {
    margin-left: 30px;
}

.main-menu ul li a {
    font-weight: 800;
    font-size: 15px;
    transition: all 0.3s ease;
}

header.scrolled .main-menu ul li a {
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 3px;
}

/* Language Selector */
.language-selector {
    position: relative;
    z-index: 10;
}

#language-selector {
    background: rgba(10, 15, 26, 0.9);
    border: 1px solid rgba(0, 255, 102, 0.3);
    border-radius: 8px;
    color: var(--white);
    padding: 8px 35px 8px 12px;
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23ffffff" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#language-selector:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.2), 0 2px 8px rgba(0, 0, 0, 0.3);
    background-color: rgba(10, 15, 26, 0.95);
}

#language-selector:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.4), 0 2px 12px rgba(0, 0, 0, 0.4);
    background-color: rgba(10, 15, 26, 1);
}

#language-selector option {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 8px 12px;
    font-weight: 500;
}

#language-selector option:hover,
#language-selector option:checked {
    background-color: rgba(0, 255, 102, 0.1);
    color: var(--neon-green);
}

/* Animação suave para o seletor */
@keyframes selectorGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 255, 102, 0.2), 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 255, 102, 0.4), 0 2px 12px rgba(0, 0, 0, 0.4);
    }
}

#language-selector:focus {
    animation: selectorGlow 2s ease-in-out infinite;
}

/* Estilo para quando o header está scrolled */
header.scrolled #language-selector {
    background: rgba(10, 15, 26, 0.98);
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23ffffff" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 10px;
    backdrop-filter: blur(10px);
    font-size: 13px;
    padding: 6px 30px 6px 10px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: visible;
    padding-top: 160px;
    padding-bottom: 80px;
    background: radial-gradient(circle at center, rgba(0, 255, 102, 0.03) 0%, rgba(10, 15, 26, 1) 70%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 65px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--neon-green);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 22px;
    font-weight: 200;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#hero-title.glow-active {
    animation: textGlow 6s infinite ease-in-out;
}

/* Efeito de linha tecnológica no fundo */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 255, 102, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 255, 102, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    z-index: 0;
}

/* Sobre Nós */
.sobre-nos {
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.sobre-nos::before,
.sobre-nos::after {
    content: '';
    position: absolute;
    background-image: url('images/lightning.svg');
    background-repeat: no-repeat;
    z-index: -1;
}

.sobre-nos::before {
    width: 200px;
    height: 200px;
    top: 50px;
    left: -50px;
}

.sobre-nos::after {
    width: 180px;
    height: 180px;
    bottom: 50px;
    right: -50px;
}

.sobre-nos h2 {
    font-size: 45px;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 50px;
    text-align: center;
}

.icons-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.icon {
    width: 120px;
    height: 120px;
    margin: 0 30px;
    border: 3px solid var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 255, 102, 0.05);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.2);
}

.icon img {
    width: 60px;
    height: 60px;
}

.content-columns {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.column {
    flex: 1;
}

.column p {
    font-size: 16px;
    line-height: 1.8;
}

.additional-content {
    margin-bottom: 30px;
}

.additional-content p {
    font-size: 16px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Serviços */
.servicos {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(0, 255, 102, 0.03) 0%, rgba(10, 15, 26, 1) 70%);
}

.servicos .container {
    position: relative;
    z-index: 2;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 255, 102, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 255, 102, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    z-index: 0;
}

.servicos::after {
    content: '';
    position: absolute;
    background-image: url('images/lightning.svg');
    background-repeat: no-repeat;
    z-index: -1;
    width: 180px;
    height: 180px;
    bottom: 100px;
    left: -50px;
}

.servicos h2 {
    font-size: 45px;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 0 0 5px rgba(0, 255, 102, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(0, 255, 102, 0.7);
    }
}

.servicos h2 {
    animation: titlePulse 4s infinite ease-in-out;
}



.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-card {
    padding: 30px;
    border-radius: 8px;
    transition: all 0.4s ease;
    background-color: rgba(10, 15, 26, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 255, 102, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.service-card:hover {
    background-color: rgba(0, 255, 102, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 255, 102, 0.2);
    border: 1px solid rgba(0, 255, 102, 0.3);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--neon-green);
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
}

/* Clientes */
.clientes {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.clientes::before,
.clientes::after {
    content: '';
    position: absolute;
    background-image: url('images/lightning.svg');
    background-repeat: no-repeat;
    z-index: -1;
}

.clientes::before {
    width: 200px;
    height: 200px;
    top: 50px;
    left: -50px;
}

.clientes::after {
    width: 180px;
    height: 180px;
    bottom: 50px;
    right: -50px;
}

.clientes h2 {
    font-size: 45px;
    font-weight: 800;
    color: var(--neon-green);
    text-align: center;
    margin-bottom: 50px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

/* Animações para o logotipo de clientes */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Aplicando as animações aos logos dos clientes */
.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
}

.client-logo::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.client-logo:hover::before {
    opacity: 1;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.client-logo img {
    max-height: 60px;
    /* Remova o filtro para mostrar as cores originais */
    opacity: 0.9;
    transition: all 0.4s ease;
}

.client-logo:hover img {
    opacity: 1;
}

/* Distribuindo diferentes animações para os logos */
.clients-grid .client-logo:nth-child(odd) img {
    animation: logoFloat 6s infinite ease-in-out;
}

.clients-grid .client-logo:nth-child(even) img {
    animation: logoPulse 6s infinite ease-in-out;
}

/* Contato */
.contato {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contato::before,
.contato::after {
    content: '';
    position: absolute;
    background-image: url('images/lightning.svg');
    background-repeat: no-repeat;
    z-index: -1;
}

.contato::before {
    width: 200px;
    height: 200px;
    top: 100px;
    right: -50px;
}

.contato::after {
    width: 180px;
    height: 180px;
    bottom: 100px;
    left: -50px;
}

.contato .container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.contact-content {
    flex: 1;
}

.contact-content h2 {
    font-size: 45px;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 30px;
}

.contact-content p {
    font-size: 16px;
    line-height: 1.8;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--white);
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
}

.btn-enviar {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 12px 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.btn-enviar:hover {
    background-color: var(--neon-green);
    border-color: var(--neon-green);
    color: var(--dark-bg);
}

/* Multi-step Contact Form */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.contact-option-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 40px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    min-width: 150px;
}

.contact-option-btn:hover {
    border-color: var(--neon-green);
    background-color: rgba(0, 255, 157, 0.1);
}

.contact-option-btn.selected {
    border-color: var(--neon-green);
    background-color: rgba(0, 255, 157, 0.2);
}

.contact-option-btn img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.contact-option-btn.selected img {
    filter: brightness(0) saturate(100%) invert(84%) sepia(78%) saturate(2476%) hue-rotate(133deg) brightness(119%) contrast(119%);
}

.project-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.project-type-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.project-type-option:hover {
    border-color: var(--neon-green);
    background-color: rgba(0, 255, 157, 0.1);
}

.project-type-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--neon-green);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 15px;
}

.btn-back, .btn-next, .btn-send {
    padding: 12px 30px;
    border: 1px solid var(--white);
    border-radius: 5px;
    background-color: transparent;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 150px;
}

.btn-back:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-next:hover, .btn-send:hover {
    background-color: var(--neon-green);
    border-color: var(--neon-green);
    color: var(--dark-bg);
}

.form-step h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-option-btn {
        min-width: 200px;
    }
    
    .project-types {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .btn-back, .btn-next, .btn-send {
        max-width: none;
    }
}

/* Footer */
footer {
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons img {
    width: 20px;
    height: 20px;
}



.footer-links h4,
.footer-contact h4 {
    color: var(--neon-green);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 14px;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 14px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    opacity: 0.7;
}

/* Missão, Visão e Valores */
.mvv-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    clear: both;
}

.mvv-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.mvv-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 20px 15px;
}

.mvv-icon {
    margin-bottom: 20px;
    display: inline-block;
}

.mvv-icon img {
    width: 50px;
    height: 50px;
}

.mvv-item h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 20px;
}

.mvv-item p {
    font-size: 15px;
    line-height: 1.7;
}

/* Elementos decorativos - Raios */
.raio-decorativo {
    position: absolute;
    z-index: -1;
    overflow: visible;
}

.raio-sobre-nos {
    top: 100px;
    right: -60px;
    width: 150px;
    transform: rotate(-15deg);
}

.raio-mvv {
    bottom: 100px;
    left: -40px;
    width: 120px;
    transform: rotate(10deg);
}

.raio-servicos {
    top: 100px;
    right: -50px;
    width: 140px;
    transform: rotate(-5deg);
}

/* Animação para os raios */
@keyframes raioFlash {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 5px rgba(0, 255, 102, 0.4));
    }
    50% {
        opacity: 0.7;
        filter: drop-shadow(0 0 25px rgba(0, 255, 102, 0.8));
    }
}

@keyframes raioShake {
    0%, 100% {
        transform: translate(0, 0) rotate(var(--rotate-angle, 0deg));
    }
    25% {
        transform: translate(-2px, 1px) rotate(var(--rotate-angle, 0deg));
    }
    50% {
        transform: translate(0, -2px) rotate(var(--rotate-angle, 0deg));
    }
    75% {
        transform: translate(2px, 1px) rotate(var(--rotate-angle, 0deg));
    }
}

.raio-sobre-nos {
    --rotate-angle: -15deg;
    animation: raioFlash 3s infinite ease-in-out, raioShake 2s infinite ease-in-out;
}

.raio-mvv {
    --rotate-angle: 10deg;
    animation: raioFlash 4s infinite ease-in-out 0.5s, raioShake 2.5s infinite ease-in-out 0.2s;
}

.raio-servicos {
    --rotate-angle: -5deg;
    animation: raioFlash 3.5s infinite ease-in-out 1s, raioShake 3s infinite ease-in-out 0.7s;
}

/* Media queries para os raios */
@media (max-width: 1200px) {
    .raio-sobre-nos {
        width: 130px;
        right: -40px;
    }
    
    .raio-mvv {
        width: 100px;
        left: -30px;
    }
    
    .raio-servicos {
        width: 120px;
        right: -35px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg);
        padding: 20px;
        display: none;
        z-index: 100;
    }
    
    .main-menu.active {
        display: block;
    }
    
    .main-menu ul {
        flex-direction: column;
    }
    
    .main-menu ul li {
        margin: 0 0 15px 0;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 35px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .content-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .contato .container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .raio-esquerdo {
        width: 200px;
        top: -30px;
        left: -60px;
    }
    
    .raio-direito {
        width: 200px;
        top: -30px;
        right: -50px;
    }
    
    .raio-central {
        top: 50px;
        width: 90%;
        max-width: 650px;
    }
    
    @keyframes floatUp {
        0%, 100% {
            transform: translateY(0) translateX(-50%);
        }
        50% {
            transform: translateY(-10px) translateX(-50%);
        }
    }
    
    .mvv-grid {
        flex-direction: column;
        gap: 50px;
    }
    
    .mvv-item {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .footer-logo img {
        margin-bottom: 10px !important;
    }
    .social-icons {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 10px !important;
        margin-bottom: 10px !important;
        width: 100%;
    }
    .footer-links,
    .footer-contact {
        align-items: center !important;
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-links ul,
    .footer-links ul li {
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
    }
    .copyright {
        text-align: center !important;
        padding-top: 20px;
    }
    .raio-esquerdo,
    .raio-direito,
    .raio-central,
    .raio-esquerdo img,
    .raio-direito img,
    .raio-central img {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        width: 0 !important;
        pointer-events: none !important;
    }
    header {
        padding: 12px 0;
    }
    .main-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100vw;
        background: rgba(10, 15, 26, 0.98);
        z-index: 2000;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0 20px 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    }
    .main-menu.active {
        display: flex !important;
    }
    .main-menu ul {
        flex-direction: column;
        width: 100%;
    }
    .main-menu ul li {
        margin: 0 0 18px 0;
    }
    .mobile-menu-toggle {
        z-index: 2100;
    }
    
    /* Language Selector Mobile */
    .language-selector {
        margin-left: 10px;
    }
    
    #language-selector {
        font-size: 12px;
        padding: 6px 25px 6px 8px;
        min-width: 100px;
        background-size: 10px;
        background-position: right 8px center;
    }
    
    header.scrolled #language-selector {
         font-size: 11px;
         padding: 5px 22px 5px 7px;
         background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23ffffff" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
         background-repeat: no-repeat;
         background-position: right 6px center;
         background-size: 8px;
     }
}

@keyframes logoHighlight {
    0%, 100% {
        background-position: -100% 0;
    }
    50% {
        background-position: 200% 0;
    }
}

.client-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.client-logo:hover::after {
    opacity: 1;
    animation: logoHighlight 2s infinite;
}



/* Animação para o título */
@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 3px rgba(0, 255, 102, 0.3);
    }
    50% {
        text-shadow: 0 0 8px rgba(0, 255, 102, 0.5), 0 0 12px rgba(0, 255, 102, 0.3);
    }
}

#hero-title {
    animation: textGlow 6s infinite ease-in-out;
    position: relative;
}

/* Palavras em branco no título */
#hero-title .white-word {
    color: #ffffff;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Botão CTA */
.btn-hero {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--neon-green);
    border-radius: 5px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 102, 0.2), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-hero:hover {
    color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.4);
    transform: translateY(-3px);
}

.btn-hero:hover:before {
    left: 100%;
    transition: all 0.8s ease;
}

/* Hero CTA Buttons Container */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-hero.primary {
    background-color: var(--neon-green);
    color: var(--dark-bg);
    border: 2px solid var(--neon-green);
}

.btn-hero.primary:hover {
    background-color: transparent;
    color: var(--neon-green);
}

.btn-hero.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-hero.secondary:hover {
    background-color: var(--white);
    color: var(--dark-bg);
    border-color: var(--white);
}

.btn-hero.secondary img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.btn-hero.secondary:hover img {
    filter: brightness(0) invert(0);
}

/* Services CTA Section */
.services-cta {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.1) 0%, rgba(0, 255, 102, 0.05) 100%);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 255, 102, 0.2);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 102, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.btn-cta.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-cta.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.btn-cta.whatsapp img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.btn-cta.email {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
}

.btn-cta.email:hover {
    background: var(--neon-green);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 102, 0.3);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    max-width: 60px;
    overflow: hidden;
    white-space: nowrap;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    max-width: 200px;
    padding: 15px 25px;
}

.whatsapp-btn img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.whatsapp-text {
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
    margin-left: -12px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-text {
    opacity: 1;
    margin-left: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Indicador de rolagem */
.scroll-indicator {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--neon-green);
    border-radius: 15px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--neon-green);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 1.5s ease infinite;
}

@keyframes mouseScroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.arrow-scroll {
    display: flex;
    justify-content: center;
    padding-bottom: 5px;
}

.arrow-scroll span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--neon-green);
    border-right: 2px solid var(--neon-green);
    transform: rotate(45deg);
    animation: arrowDown 1.5s ease infinite;
    margin: -5px 0;
}

@keyframes arrowDown {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
}

/* Micro-interações para inputs e botões */
.input-animation {
    position: relative;
    transition: all 0.3s ease;
    border-color: rgba(255, 255, 255, 0.2);
}

.input-animation:focus {
    transform: translateY(-2px);
    border-color: var(--neon-green);
    box-shadow: 0 5px 15px rgba(0, 255, 102, 0.1);
}

.input-animation:not(:placeholder-shown) {
    border-color: rgba(255, 255, 255, 0.4);
}

/* Botão com animação */
.btn-animation {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-animation:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 255, 102, 0.2);
}

.btn-animation:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 255, 102, 0.1);
}

.btn-animation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(0, 255, 102, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-animation:hover::before {
    width: 300%;
    height: 300%;
}

/* Ajustando animações para service-card */
.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.service-card:hover::after {
    transform: translateX(100%);
}

/* AOS animations fade in backup for when AOS is not loaded yet */
[data-aos] {
    opacity: 0;
    transition: opacity 0.3s;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Animação de foco para links do menu */
.main-menu ul li a {
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.main-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-green);
    transition: width 0.3s ease;
}

.main-menu ul li a:hover::after {
    width: 100%;
}

/* Portfólio */
.portfolio {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(0, 255, 102, 0.03) 0%, rgba(10, 15, 26, 1) 70%);
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 255, 102, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 255, 102, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    z-index: 0;
}

.portfolio .container {
    position: relative;
    z-index: 2;
}

.portfolio h2 {
    font-size: 45px;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 50px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
    animation: titlePulse 4s infinite ease-in-out;
}

.raio-portfolio {
    top: 100px;
    right: -50px;
    width: 140px;
    transform: rotate(-5deg);
    animation: raioFlash 3.5s infinite ease-in-out 1s, raioShake 3s infinite ease-in-out 0.7s;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--neon-green);
    border-color: var(--neon-green);
    color: var(--dark-bg);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 102, 0.2);
}

.portfolio-content {
    height: 100%;
    width: 100%;
    position: relative;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 26, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 10px;
    transform: translateY(-20px);
    transition: all 0.4s ease;
}

.portfolio-overlay p {
    font-size: 14px;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

.portfolio-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.2s;
}

.portfolio-item:hover .portfolio-tags {
    transform: translateY(0);
}

.portfolio-tags span {
    background-color: rgba(0, 255, 102, 0.15);
    color: var(--neon-green);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
}

.portfolio-link {
    display: inline-block;
    background-color: var(--neon-green);
    color: var(--dark-bg);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.3s;
}

.portfolio-item:hover .portfolio-link {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-link:hover {
    background-color: #00CC52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 102, 0.2);
    color: var(--dark-bg);
}

.portfolio-image {
    height: 100%;
    width: 100%;
    background-color: rgba(10, 15, 26, 0.9);
    position: relative;
    overflow: hidden;
}

.portfolio-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.1) 0%, rgba(10, 15, 26, 0.5) 100%);
    border: 1px solid rgba(0, 255, 102, 0.2);
}

.placeholder-content {
    text-align: center;
    padding: 20px;
}

.placeholder-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--neon-green);
}

.placeholder-content p {
    font-size: 16px;
    opacity: 0.8;
}

/* Responsividade para portfolio */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-filter {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .filter-btn {
        margin: 0 5px 10px;
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item {
        height: 250px;
    }
}



/* Modal de Detalhes do Portfólio */
.portfolio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.portfolio-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 15, 26, 0.85);
    z-index: 1;
    cursor: pointer;
    transition: background 0.3s;
}

.modal-content {
    position: relative;
    z-index: 2;
    background: #181e2a;
    border-radius: 12px;
    max-width: 500px;
    width: 90vw;
    padding: 40px 30px 30px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px var(--neon-green, #00FF66);
    animation: fadeInScale 0.4s;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 3;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--neon-green);
}

.modal-body h2 {
    font-size: 2rem;
    color: var(--neon-green);
    margin-bottom: 10px;
}

.modal-body p {
    font-size: 1rem;
    margin-bottom: 18px;
    color: var(--white);
}

.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    padding: 0;
    list-style: none;
}

.modal-tags li {
    background: rgba(0,255,102,0.12);
    color: var(--neon-green);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
}

.modal-gallery {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
}

.modal-img-placeholder {
    width: 220px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0,255,102,0.08), rgba(10,15,26,0.5));
    border: 1px solid rgba(0,255,102,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

@media (max-width: 600px) {
    .modal-content {
        padding: 25px 10px 20px 10px;
        max-width: 95vw;
    }
    .modal-img-placeholder {
        width: 100px;
        height: 60px;
        font-size: 0.8rem;
    }
}

/* Modal de E-mail/WhatsApp */
.email-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    /* Força hardware acceleration */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: opacity;
}
.email-modal.show {
    display: flex;
    opacity: 1;
}
.email-modal.active {
    display: flex;
    opacity: 1;
}
.email-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 15, 26, 0.85);
    z-index: 1;
    cursor: pointer;
}
.email-modal-content {
    position: relative;
    z-index: 2;
    background: #101522;
    border-radius: 14px;
    max-width: 400px;
    width: 90vw;
    padding: 38px 28px 28px 28px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px var(--neon-green, #00FF66);
    border: 1.5px solid var(--neon-green);
    animation: fadeInScale 0.4s;
    text-align: center;
    margin: auto;
}

/* Loading modal specific styles */
.loading-content {
    border: 1.5px solid #ffa500;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px #ffa500;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 165, 0, 0.3);
    border-top: 4px solid #ffa500;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-timer {
    font-size: 1.2rem;
    color: #ffa500;
    font-weight: bold;
    margin-top: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.email-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 3;
    transition: color 0.2s;
}
.email-modal-close:hover {
    color: var(--neon-green);
}
.email-modal-body h2 {
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 12px;
    font-weight: 800;
}
.email-modal-body p {
    font-size: 1rem;
    margin-bottom: 22px;
    color: var(--white);
}
.email-modal-whatsapp {
    display: inline-block;
    background: var(--neon-green);
    color: var(--dark-bg);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,255,102,0.15);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}
.email-modal-whatsapp:hover {
    background: #00cc52;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0,255,102,0.25);
}
@media (max-width: 600px) {
    .email-modal-content {
        padding: 22px 8px 18px 8px;
        max-width: 98vw;
    }
    .email-modal-body h2 {
        font-size: 1.1rem;
    }
    .email-modal-whatsapp {
        font-size: 0.95rem;
        padding: 10px 16px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Fallback para backdrop-filter */
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    /* Força hardware acceleration */
    transform: translateZ(0);
    will-change: opacity;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, #101522 0%, #1a1f2e 100%);
    /* Fallback para gradientes */
    background: #101522;
    margin: 2% auto;
    padding: 0;
    border: 2px solid var(--neon-green);
    border: 2px solid #00FF66; /* Fallback */
    border-radius: 20px;
    width: 90%;
    max-width: 650px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 255, 102, 0.4);
    transform: translateY(-50px) scale(0.9);
    -webkit-transform: translateY(-50px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Força hardware acceleration */
    transform: translateZ(0) translateY(-50px) scale(0.9);
    -webkit-transform: translateZ(0) translateY(-50px) scale(0.9);
    will-change: transform, opacity;
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
    -webkit-transform: translateY(0) scale(1);
    /* Força hardware acceleration */
    transform: translateZ(0) translateY(0) scale(1);
    -webkit-transform: translateZ(0) translateY(0) scale(1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--neon-green) 0%, #00ff88 100%);
    color: var(--dark-bg);
    padding: 25px 30px;
    position: relative;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 4px 20px rgba(0, 255, 102, 0.3);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 10px;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.step-dot.active {
    background-color: var(--dark-bg);
    transform: scale(1.3);
    border-color: var(--dark-bg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 3px;
    margin-top: 18px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--dark-bg) 0%, #2a2a2a 100%);
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-bg);
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.close:hover {
    background-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.15) rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.modal-body {
    padding: 30px 35px;
    overflow-y: auto;
    max-height: calc(90vh - 200px);
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.step {
    display: none;
    animation: fadeInStep 0.3s ease;
}

.step.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--neon-green);
    margin-bottom: 20px;
    text-align: center;
}

.question-group {
    margin-bottom: 20px;
}

.question-group label {
    display: block;
    color: var(--neon-green);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 1rem;
}

.question-group input,
.question-group select,
.question-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(26, 26, 26, 0.8) 100%);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    font-family: 'Montserrat', sans-serif;
}

.question-group input:focus,
.question-group select:focus,
.question-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.4), inset 0 0 10px rgba(0, 255, 102, 0.1);
    background: linear-gradient(135deg, rgba(0, 255, 102, 0.05) 0%, rgba(26, 26, 26, 0.9) 100%);
    transform: translateY(-2px);
}

.question-group select {
    cursor: pointer;
}

.question-group select option {
    background-color: #1a1a1a;
    color: #fff;
}

.question-group textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin-top: 35px;
    padding: 25px 35px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(26, 26, 26, 0.4) 100%);
    border-top: 1px solid rgba(0, 255, 102, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 0 0 20px 20px;
}

.btn-send-modal,
.btn-next,
.btn-prev {
    padding: 14px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    min-width: 120px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-prev {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-prev:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}



.btn-send-modal,
.btn-next {
    background: linear-gradient(135deg, var(--neon-green) 0%, #00ff88 100%);
    color: var(--dark-bg);
    border: 2px solid var(--neon-green);
    box-shadow: 0 4px 15px rgba(0, 255, 102, 0.3);
}

.btn-send-modal:hover,
.btn-next:hover {
    background: linear-gradient(135deg, #00ff88 0%, var(--neon-green) 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 255, 102, 0.5);
    border-color: #00ff88;
}

.btn-send-modal:disabled,
.btn-next:disabled,
.btn-prev:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    filter: grayscale(100%);
    box-shadow: none;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .modal-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        max-height: 95vh;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .modal-header {
        padding: 15px 20px;
        position: relative;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
        margin-right: 40px;
        line-height: 1.3;
    }
    
    .close {
        right: 15px;
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
    
    .step-indicator {
        margin-top: 12px;
        gap: 8px;
    }
    
    .step-dot {
        width: 8px;
        height: 8px;
    }
    
    .progress-bar {
        margin-top: 12px;
        height: 3px;
    }
    
    .modal-body {
        padding: 15px 20px;
        max-height: calc(95vh - 200px);
        overflow-y: auto;
    }
    
    .question-group {
        margin-bottom: 20px;
    }
    
    .question-group label {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .question-group input,
    .question-group select,
    .question-group textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .modal-actions {
        flex-direction: row;
        gap: 10px;
        margin-top: 20px;
        padding: 15px 20px;
        background-color: #1a1a1a;
        border-top: 1px solid #333;
    }
    
    .btn-cancel,
    .btn-send-modal,
    .btn-next,
    .btn-prev {
        flex: 1;
        padding: 14px 8px;
        font-size: 0.9rem;
        min-width: auto;
        white-space: nowrap;
    }
    
    /* Ensure buttons are always visible */
    .modal-actions .btn-cancel {
        order: 1;
    }
    
    .modal-actions .btn-prev {
        order: 2;
    }
    
    .modal-actions .btn-next,
    .modal-actions .btn-send-modal {
        order: 3;
    }
}

@media (max-width: 480px) {
    .modal {
        padding: 5px;
        padding-top: 10px;
    }
    
    .modal-content {
        max-height: 98vh;
    }
    
    .modal-header {
        padding: 12px 15px;
    }
    
    .modal-header h3 {
        font-size: 1rem;
    }
    
    .close {
        right: 12px;
        font-size: 22px;
        width: 26px;
        height: 26px;
    }
    
    .modal-body {
        padding: 12px 15px;
        max-height: calc(98vh - 180px);
    }
    
    .modal-actions {
        padding: 12px 15px;
        gap: 8px;
    }
    
    .btn-cancel,
    .btn-send-modal,
    .btn-next,
    .btn-prev {
        padding: 12px 6px;
        font-size: 0.85rem;
    }
}

/* Seção Especialidades */
.especialidades {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(0, 255, 102, 0.03) 0%, rgba(10, 15, 26, 1) 70%);
}

.especialidades::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 255, 102, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 255, 102, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    z-index: 0;
}

.especialidades .container {
    position: relative;
    z-index: 2;
}

.especialidades h2 {
    font-size: 45px;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
    animation: titlePulse 4s infinite ease-in-out;
}

.especialidades h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    color: var(--white);
    opacity: 0.9;
}

.specialty-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.specialty-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
    font-weight: 400;
    opacity: 0.9;
}

.specialty-content {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

/* Menu lateral */
.specialty-menu {
    flex: 0 0 350px;
    background-color: rgba(10, 15, 26, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 255, 102, 0.1);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    height: fit-content;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 255, 102, 0.1);
    background-color: rgba(10, 15, 26, 0.5);
}

.menu-item:hover {
    background-color: rgba(0, 255, 102, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 255, 102, 0.2);
    border: 1px solid rgba(0, 255, 102, 0.3);
}

.menu-item.active {
    background-color: rgba(0, 255, 102, 0.1);
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.3);
}

.menu-icon {
    font-size: 2.5rem;
    margin-right: 15px;
    flex-shrink: 0;
    color: var(--neon-green);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: var(--white);
}

.menu-text p {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
    color: var(--white);
    line-height: 1.4;
}

/* Card de detalhes */
.specialty-details {
    flex: 1;
    background-color: rgba(10, 15, 26, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 255, 102, 0.1);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    min-height: 500px;
}

.case-detail {
    display: none;
}

.case-detail.active {
    display: block;
}

.case-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 255, 102, 0.2);
}

.case-icon-large {
    font-size: 3rem;
    margin-right: 20px;
    flex-shrink: 0;
    color: var(--neon-green);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.case-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--neon-green);
    margin: 0;
    text-align: left;
}

.case-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-block {
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid;
    background-color: rgba(10, 15, 26, 0.5);
    border: 1px solid rgba(0, 255, 102, 0.1);
}

.info-block.challenge {
    border-left-color: #ff6b6b;
}

.info-block.solution {
    border-left-color: var(--neon-green);
}

.info-block.results {
    border-left-color: #ffd93d;
}

.info-block h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.info-block p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--white);
    margin: 0;
    opacity: 0.9;
}

/* Por que essa especialidade é procurada */
.why-specialty {
    background-color: rgba(10, 15, 26, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 255, 102, 0.1);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: center;
}

.why-specialty h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--neon-green);
}

.specialty-benefits {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 0;
}

.specialty-benefits li {
    background-color: rgba(10, 15, 26, 0.5);
    border: 1px solid rgba(0, 255, 102, 0.1);
    padding: 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    text-align: left;
    transition: all 0.3s ease;
    color: var(--white);
}

.specialty-benefits li:hover {
    background-color: rgba(0, 255, 102, 0.05);
    transform: translateY(-2px);
    border-color: rgba(0, 255, 102, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.specialty-benefits li:before {
    content: "✓";
    background: var(--neon-green);
    color: var(--dark-bg);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 12px;
}

/* Seção Tecnologias */
.tecnologias {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(0, 255, 102, 0.03) 0%, rgba(10, 15, 26, 1) 70%);
}

.tecnologias::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 255, 102, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 255, 102, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
    z-index: 0;
}

.tecnologias .container {
    position: relative;
    z-index: 2;
}

.tecnologias h2 {
    font-size: 45px;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
    animation: titlePulse 4s infinite ease-in-out;
}

.tecnologias h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    color: var(--white);
    opacity: 0.9;
}

.tech-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tech-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
    font-weight: 400;
    opacity: 0.9;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.tech-category {
    background-color: rgba(10, 15, 26, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 255, 102, 0.1);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 255, 102, 0.1);
    border-color: rgba(0, 255, 102, 0.3);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 255, 102, 0.2);
}

.category-icon {
    font-size: 2rem;
    margin-right: 15px;
    filter: grayscale(0.3);
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 157, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.category-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--neon-green);
    margin: 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px;
    background-color: rgba(10, 15, 26, 0.5);
    border: 1px solid rgba(0, 255, 102, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.tech-item:hover {
    background-color: rgba(0, 255, 102, 0.05);
    border-color: rgba(0, 255, 102, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tech-logo {
    font-size: 1.5rem;
    margin-bottom: 10px;
    filter: grayscale(0.2);
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 157, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tech-logo img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.tech-item:hover .tech-logo {
    background: rgba(0, 255, 157, 0.2);
    transform: scale(1.1);
}

.tech-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.tech-cta {
    text-align: center;
    background-color: rgba(10, 15, 26, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 255, 102, 0.1);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.tech-cta h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 15px;
}

.tech-cta p {
    font-size: 16px;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.tech-cta .btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--neon-green), #00cc55);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.tech-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 255, 102, 0.3);
    background: linear-gradient(135deg, #00cc55, var(--neon-green));
}

/* Responsividade */
@media (max-width: 768px) {
    .tecnologias {
        padding: 60px 0;
    }
    
    .tecnologias h2 {
        font-size: 35px;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-category {
        padding: 25px 20px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 12px;
    }
    
    .tech-item {
        padding: 15px 10px;
    }
    
    .tech-cta {
        padding: 30px 20px;
    }
    
    .tech-cta h4 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsividade Especialidades */
@media (max-width: 768px) {
    .especialidades {
        padding: 60px 0;
    }
    
    .especialidades h2 {
        font-size: 35px;
    }
    
    .specialty-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .specialty-menu {
        flex: none;
        order: 2;
    }
    
    .specialty-details {
        order: 1;
        padding: 30px 20px;
    }
    
    .case-header {
        flex-direction: column;
        text-align: center;
    }
    
    .case-icon-large {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .menu-item {
        padding: 15px;
    }
    
    .menu-icon {
        font-size: 2rem;
    }
    
    .specialty-benefits {
        grid-template-columns: 1fr;
    }
    
    .why-specialty {
        padding: 30px 20px;
    }
    
    .why-specialty h4 {
        font-size: 24px;
    }
    
    /* CTA Responsivo */
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
    
    .services-cta {
        margin-top: 60px;
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 280px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .whatsapp-btn:hover {
        max-width: 160px;
        padding: 12px 20px;
    }
    
    .whatsapp-btn img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-cta {
        font-size: 14px;
        padding: 12px 25px;
        min-width: 180px;
    }
    
    .whatsapp-btn {
        max-width: 50px;
    }
    
    .whatsapp-btn:hover {
        max-width: 140px;
    }
}