/* ===== RESET & VARIABLES ===== */
:root {
    --primary: #00d4ff;
    --secondary: #7b2ff7;
    --accent: #ff006e;
    --dark: #0a0a0f;
    --dark-light: #1a1a2e;
    --text: #e8e8f0;
    --text-muted: #9696a8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    width: 280px;
}

.brand-icon {
    color: var(--primary);
    font-size: 1.8rem;
}

.nav-link {
    color: var(--text) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 60%;
}

.cta-nav {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50px;
    padding: 0.5rem 1.5rem !important;
    margin-left: 1rem;
}

.cta-nav::after {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(123, 47, 247, 0.05), transparent),
                linear-gradient(180deg, #050508 0%, #08080d 100%);
}

#matrix-canvas,
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.7);
    z-index: 2;
    pointer-events: none;
}

/* Screen effect overlay */
#matrix-canvas::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 2;
}

.hero-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.code-snippets {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.code-snippet {
    position: absolute;
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--primary);
    animation: float-snippet 20s infinite ease-in-out;
}

@keyframes float-snippet {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translate(50px, -30px) rotate(5deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(-30px, 40px) rotate(-5deg);
        opacity: 0.6;
    }
    75% {
        transform: translate(40px, 20px) rotate(3deg);
        opacity: 0.7;
    }
}

.hero-row {
    min-height: 85vh;
    padding: 4rem 0 4rem;
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
    text-align: left;
    transform: translateY(-60px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: pulse-badge 2s infinite;
    font-size: 0.85rem;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    }
}

.badge-icon {
    font-size: 1.2rem;
    color: var(--primary);
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.0rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-btn {
    position: relative;
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    background: var(--primary);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4);
}

.btn-lightning {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: lightning 3s infinite;
}

@keyframes lightning {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.6), transparent);
    transform: translate(-50%, -50%);
    animation: pulse-glow 2s infinite;
    z-index: 1;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    z-index: 15;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary), transparent);
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(123, 47, 247, 0.1);
    border: 1px solid rgba(123, 47, 247, 0.3);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
}

/* ===== SOBRE SECTION ===== */
.sobre-section {
    background: linear-gradient(180deg, #0f0f1a 0%, var(--dark) 100%);
}

.feature-card {
    padding: 2.5rem;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.feature-card:hover {
    background: rgba(26, 26, 46, 0.8);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* ===== SERVIÇOS SECTION ===== */
.servicos-section {
    background: var(--dark);
}

.service-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(123, 47, 247, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.3);
    border-color: var(--primary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-card > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tech-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.tech-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tech-category h5 {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-category h5 i {
    font-size: 1rem;
}

.service-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-techs li {
    padding: 0.4rem 0.9rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.service-techs li:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.service-techs li i {
    font-size: 0.9rem;
    color: var(--primary);
}

/* ===== RAJO-HOST SECTION ===== */
.rajo-host-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #050510 0%, #0a0a0f 100%);
}

.rajo-host-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(5, 5, 10, 0.95) 100%);
    pointer-events: none;
    z-index: 5;
}

#network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

.rajo-host-section .container {
    position: relative;
    z-index: 10;
}

.server-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.data-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.rajo-host-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: pulse-badge 2s infinite;
}

.rajo-host-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.rajo-host-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 4rem;
}

.host-feature {
    padding: 2rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.host-feature:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.host-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: none;
    color: var(--primary);
}

.host-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.host-feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.rajo-host-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    background: var(--primary);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    text-decoration: none;
}

.rajo-host-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4);
}

/* ===== MARCAS SECTION ===== */
.marcas-section {
    background: linear-gradient(180deg, var(--dark) 0%, #0f0f1a 100%);
}

.marca-card {
    padding: 1rem;
    background: #fff;
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    animation: fadeInUp 0.6s ease-out backwards;
}

.marca-card:hover {
    background: #fff;
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.marca-logo {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
    transition: all 0.4s ease;
}

.marca-card:hover .marca-logo {
    filter: brightness(1) contrast(1);
    transform: scale(1.1);
}

/* ===== DEPOIMENTOS SECTION ===== */
.depoimentos-section {
    background: var(--dark);
}

.depoimento-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.1), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(123, 47, 247, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(123, 47, 247, 0.3);
    border-color: var(--secondary);
}

.aspas {
    font-size: 4rem;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.depoimento-text {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.autor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.depoimento-autor h4 {
    font-size: 1.1rem;
    margin: 0;
}

.depoimento-autor span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== CTA FINAL SECTION ===== */
.cta-final-section {
    background: linear-gradient(180deg, #0f0f1a 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: move-particles 20s linear infinite;
}

@keyframes move-particles {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

.cta-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 3rem 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-muted);
    margin: 0;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.footer-contact {
    color: var(--text);
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #25D366;
    font-size: 1.5rem;
}

.whatsapp-link {
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-link:hover {
    color: #25D366;
    transform: translateY(-2px);
}

.footer-copy {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* ===== MODAL ===== */
.modal-dialog {
    max-height: 90vh;
    margin: 1.75rem auto;
}

.modal-content {
    background: var(--dark-light);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    flex-shrink: 0;
}

.modal-body {
    overflow-y: auto;
    max-height: calc(90vh - 120px);
}

.modal-title {
    color: var(--text);
    font-weight: 700;
}

.btn-close-white {
    filter: invert(1);
}

.calendario-container h6 {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

#calendario {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dia-btn {
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dia-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
    transform: scale(1.02);
}

.horarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.horario-btn {
    padding: 1rem;
    background: rgba(123, 47, 247, 0.1);
    border: 1px solid rgba(123, 47, 247, 0.2);
    border-radius: 10px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.horario-btn:hover {
    background: rgba(123, 47, 247, 0.2);
    border-color: var(--secondary);
    transform: scale(1.05);
}

.horario-btn.selected {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
}

.form-control {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--text);
    padding: 0.75rem 1rem;
}

.form-control:focus {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary);
    color: var(--text);
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
        transform: translateY(0);
    }

    .hero-visual {
        margin-top: 2rem;
        transform: translateY(0) !important;
    }

    .calendario-container .row {
        flex-direction: column;
    }

    .calendario-container .col-md-6 {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-nav {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .horarios-grid {
        grid-template-columns: 1fr;
    }


    .modal-dialog {
        margin: 0.5rem;
        max-height: 95vh;
    }

    .modal-content {
        max-height: 95vh;
    }

    .modal-body {
        max-height: calc(95vh - 100px);
        padding: 1rem;
    }

    #calendario {
        min-height: 200px;
    }

    .horarios-grid {
        grid-template-columns: 1fr;
    }

    .footer .row {
        text-align: center !important;
    }

    .footer .col-md-4 {
        margin-bottom: 1.5rem;
    }

    .footer-contact {
        justify-content: center;
    }
}

/* ===== CODE WINDOW (HERO-VISUAL) ===== */
.hero-visual {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.5s backwards;
    transform: translateY(-80px);
}

.code-window {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.4s ease;
}

.code-window:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.3);
    border-color: var(--primary);
}

.code-header {
    background: rgba(15, 15, 26, 0.9);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.code-buttons {
    display: flex;
    gap: 6px;
}

.code-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.code-btn.red {
    background: #ff5f57;
    box-shadow: 0 0 10px rgba(255, 95, 87, 0.5);
}

.code-btn.yellow {
    background: #ffbd2e;
    box-shadow: 0 0 10px rgba(255, 189, 46, 0.5);
}

.code-btn.green {
    background: #28ca42;
    box-shadow: 0 0 10px rgba(40, 202, 66, 0.5);
}

.code-btn:hover {
    transform: scale(1.2);
}

.code-title {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.code-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.6;
    overflow-x: auto;
    background: rgba(10, 10, 15, 0.5);
}

.code-content pre {
    margin: 0;
    color: var(--text);
}

.code-content code {
    display: block;
}

.code-comment {
    color: #8b949e;
    font-style: italic;
}

.code-keyword {
    color: #ff7b72;
    font-weight: 600;
}

.code-variable {
    color: #79c0ff;
}

.code-property {
    color: #d2a8ff;
}

.code-string {
    color: #a5d6ff;
}

.code-function {
    color: #d2a8ff;
    font-weight: 600;
}

/* Responsive para code window */
@media (max-width: 768px) {
    .code-content {
        font-size: 0.75rem;
        padding: 15px;
    }

    .code-title {
        font-size: 0.8rem;
    }
}