/* --- Variables & Reset --- */
:root {
    --bg-color: #0a0a0a;
    --card-bg: #141414;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #00b6ff;       /* Azul claro premium */
    --accent-hover: #0096d6; /* Azul um pouco mais escuro para hover */    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --navbar-height: 80px;
    --primary-green: #25d366;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

.text-gradient {
    background: linear-gradient(90deg, var(--accent), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
}
.btn-primary:hover { background-color: var(--accent-hover); transform: translateY(-2px); }

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
}
.btn-outline:hover { background-color: var(--accent); color: #000; }

.btn-text {
    background: none;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
    text-decoration: underline;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    transition: 0.3s;
    height: var(--navbar-height);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -1px;
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none; /* Remove sublinhado se houver */
}
.logo-img {
    width: 40px;  /* Ajuste o tamanho conforme necessário */
    height: 40px; /* Mantenha a altura igual a largura */
    border-radius: 50%; /* Isso torna a imagem redonda */
    object-fit: cover; /* Garante que a imagem não fique distorcida */
}
.logo .highlight { color: var(--accent); }

.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-link { font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; }
.nav-link:hover { color: var(--accent); }
.nav-link i { margin-left: 5px; font-size: 0.8em; transition: 0.3s; }

/* --- Estilos do Dropdown (Menu Suspenso) --- */

.dropdown-item {
    position: relative;
}

.dropdown-menu {
    display: none; /* Escondido por padrão */
    position: absolute;
    top: 150%; /* Um pouco mais abaixo para não colar */
    left: 0;
    background-color: #1a1a1a;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    z-index: 1001;
    border: 1px solid rgba(255,255,255,0.1);
}

.dropdown-menu li a {
    color: #ccc;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.dropdown-menu li:last-child a { border-bottom: none; }

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent);
    padding-left: 25px; /* Efeito de deslizar levemente */
}

/* Estado Ativo (controlado pelo JS) */
.dropdown-item.active .dropdown-menu {
    display: block;
    animation: fadeInDropdown 0.3s ease forwards;
}

.dropdown-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

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

.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; background-color: white; margin: 5px auto; transition: 0.3s; }

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomEffect 20s infinite alternate;
}

.overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, var(--bg-color), rgba(0,0,0,0.6));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    margin: 100px auto 0;
}
.hero-content .btn {
    opacity: 0; /* Começa invisível */
    transform: translateY(30px); /* Começa deslocado para baixo */
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0; /* Animated via JS */
    transform: translateY(30px);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

/* --- Services --- */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-title{
    margin-bottom: 40px;
    text-align: center;
    font-size: 40px;
}

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

.service-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.service-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 { margin-bottom: 15px; font-size: 1.2rem; }
.service-card p { color: var(--text-secondary); font-size: 0.9rem; }

/* --- Team --- */
.team-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
}

.team-block.reverse { flex-direction: row-reverse; }

.team-img {
    flex: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.team-img:hover img { transform: scale(1.05); }

.team-info { flex: 1; }
.team-info h3 { font-size: 2.5rem; margin-bottom: 5px; }
.team-info .role { color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 20px; }
.team-info p { color: var(--text-secondary); margin-bottom: 30px; }

/* --- Portfolio Carousel --- */
.portfolio-section { overflow: hidden; }
.carousel-wrapper { margin-bottom: 60px; }
.carousel-wrapper h4 { margin-bottom: 20px; margin-left: 20px; color: var(--text-secondary); }

/* Force linear ticker movement for swiper */
.swiper-wrapper {
    transition-timing-function: linear !important; 
}

.project-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    /* Fixed width for carousel items */
    width: 300px; 
    height: 400px;
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content { padding: 20px; }
.card-content h5 { font-size: 1.1rem; margin-bottom: 5px; }
.card-content p { font-size: 0.9rem; color: var(--text-secondary); }

/* --- Modal --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--card-bg);
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--accent);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
}

.modal-body { display: flex; flex-direction: column; }
@media(min-width: 768px) { .modal-body { flex-direction: row; } }

.modal-body img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}
@media(min-width: 768px) { .modal-body img { width: 50%; height: auto; max-height: none; } }

.modal-text { padding: 30px; flex: 1; }
.modal-text h3 { color: var(--accent); margin-bottom: 15px; }
.modal-text p { color: var(--text-secondary); margin-bottom: 25px; }

/* --- Footer --- */
footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-social .social-icons { display: flex; gap: 15px; margin-top: 15px; }
.footer-social i {
    font-size: 1.2rem;
    transition: 0.3s;
}
.footer-social i:hover { color: var(--accent); }

.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; color: #555; font-size: 0.8rem; }

/* --- Mobile Responsive (Media Queries) --- */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    
    /* Mobile Menu Container */
    .nav-menu {
        position: fixed;
        left: -100%; 
        top: 70px;
        flex-direction: column;
        background: var(--bg-color);
        width: 100%;
        text-align: center;
        padding: 20px 0;
        transition: 0.3s;
        border-bottom: 1px solid #333;
        align-items: center;
        /* Habilita scroll se o menu for muito alto */
        max-height: calc(100vh - 70px); 
        overflow-y: auto;
    }

    .nav-menu.active { left: 0; }
    
    .menu-toggle { display: block; }
    
    /* Team Responsive */
    .team-block, .team-block.reverse { flex-direction: column; text-align: center; }
    .team-img { width: 100%; height: 300px; }

    /* Dropdown no Mobile */
    .dropdown-menu {
        position: static; /* Remove a flutuação */
        width: 90%; /* Largura quase total */
        margin: 10px auto; /* Centraliza */
        background-color: rgba(255, 255, 255, 0.03); /* Fundo sutilmente diferente */
        box-shadow: none;
        border: none;
    }
    
    .dropdown-item {
        width: 100%;
        text-align: center;
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: center; /* Centraliza o texto "Serviços" */
        align-items: center;
        gap: 10px;
        width: 100%;
    }
}

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* --- Individual Page Specifics (Grid) --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 50px 0;
}
@media(min-width: 992px) { .portfolio-grid { grid-template-columns: repeat(4, 1fr); } }

/* --- Contact Section Styles --- */
.contact-section {
    position: relative;
    background: linear-gradient(to top, #000 0%, var(--bg-color) 100%);
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas por padrão */
    gap: 25px;
}

/* Grupo de Inputs */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1; /* Ocupa a largura total */
}

.contact-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-left: 5px;
}

.contact-form .highlight-text {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 400;
    font-style: italic;
    margin-left: 5px;
}

/* Estilo Geral dos Inputs */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

/* Efeito de Foco */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 182, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.5);
}

/* Input Icon Wrapper (Para ícones dentro do input) */
.input-icon-wrapper {
    position: relative;
}
.input-icon-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}
.input-icon-wrapper input {
    padding-left: 45px; /* Espaço para o ícone */
}

/* --- Lógica do WhatsApp (Select + Input) --- */
.phone-input-group {
    display: flex;
    gap: 10px;
}

.select-country {
    position: relative;
    width: 120px;
}

.select-country select {
    appearance: none; /* Remove estilo padrão */
    padding-right: 10px;
    cursor: pointer;
    text-align: center;
}

/* --- Select Customizado (Faturamento) --- */
.select-wrapper {
    position: relative;
}
.select-wrapper select {
    appearance: none;
    cursor: pointer;
}
.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    font-size: 0.8rem;
}

/* --- Grid de Serviços (Botões Selecionáveis) --- */
.services-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.service-option {
    position: relative;
    cursor: pointer;
}
.service-option.full {
    grid-column: 1 / -1; /* Botão de 'mais de um serviço' ocupa tudo */
}

/* Esconde o checkbox real */
.service-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* O visual do botão */
.checkmark {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 10px;
    border-radius: 8px;
    transition: var(--transition);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.checkmark i {
    font-size: 1.5rem;
    color: #555;
    transition: var(--transition);
}

/* Estado Selecionado */
.service-option input:checked ~ .checkmark {
    background-color: rgba(0, 182, 255, 0.1);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.service-option input:checked ~ .checkmark i {
    color: var(--accent);
}

.service-option:hover .checkmark {
    border-color: rgba(255, 255, 255, 0.3);
}

/* --- Textarea --- */
textarea {
    resize: none; /* Desativa redimensionamento */
}

/* --- Botão Submit --- */
.form-footer {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    padding: 15px;
}

/* --- Responsividade do Form --- */
@media (max-width: 768px) {
    .contact-wrapper {
        padding: 20px;
    }
    .contact-form {
        grid-template-columns: 1fr; /* Coluna única no mobile */
    }
    
    .phone-input-group {
        flex-direction: row; /* Mantém na mesma linha mesmo no mobile */
    }
    
    .select-country {
        width: 100px;
    }
    
    .services-selection-grid {
        grid-template-columns: 1fr 1fr; /* 2 colunas para serviços no mobile */
    }
}
/* Correção do espaçamento do texto no Input com Ícone */
.contact-form .input-icon-wrapper input {
    padding-left: 55px !important; /* Força o texto a começar 55px para a direita */
}

/* Ajuste fino para garantir que o ícone fique centralizado verticalmente */
.input-icon-wrapper i {
    left: 20px; /* Empurrei o ícone um pouquinho mais pra direita também pra ficar mais equilibrado */
}
/* --- WHATSAPP FLOAT --- */
#whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Balão de mensagem */
.whatsapp-bubble {
    max-width: 220px;
    background-color: #fff;
    color: #333;
    font-size: 0.85rem;
    padding: 10px 14px;
    border-radius: 12px 12px 0 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    position: relative;
}

/* Pontinha do balão */
.whatsapp-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}

/* Botão WhatsApp */
.whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}
/* =========================================
   CORREÇÃO PÁGINA OBRIGADO (COLE NO FINAL DO CSS)
   ========================================= */

/* 1. Ajuste do Hero para centralizar tudo perfeitamente */
.success-hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    position: relative;
    text-align: center; /* Garante que o texto fique no meio */
}

/* 2. Escurecer mais o fundo SÓ nessa página para o texto aparecer */
.success-hero .overlay {
    background: rgba(0, 0, 0, 0.85); /* Bem escuro (85%) para destacar o texto */
    z-index: 0;
}

/* 3. Ajuste do Container de Conteúdo */
.success-content {
    position: relative;
    z-index: 2; /* Garante que fique acima da imagem */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    padding-top: 60px; /* Compensa a Navbar fixa */
}

/* 4. Ícone de Check (Azul) */
.icon-wrapper {
    margin-bottom: 25px;
}
.icon-wrapper i {
    font-size: 5rem;
    color: var(--accent);
    filter: drop-shadow(0 0 20px rgba(0, 182, 255, 0.6)); /* Brilho neon */
}

/* 5. FORÇAR o texto a aparecer (Correção do bug de sumiço) */
.success-hero .hero-title {
    opacity: 1 !important;
    transform: none !important;
    font-size: 3rem;
    margin-bottom: 20px;
    display: block; /* Garante que ocupe a linha */
}

.success-hero .hero-subtitle {
    opacity: 1 !important;
    transform: none !important;
    font-size: 1.1rem;
    color: #d0d0d0; /* Cinza claro */
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Destaque para os textos em negrito */
.text-white {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--accent);
}

/* 6. Box de Urgência (Melhorado) */
.urgent-call {
    background: rgba(20, 20, 20, 0.9); /* Fundo quase preto sólido */
    border: 1px solid var(--accent); /* Borda azul neon */
    padding: 30px;
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.urgent-call p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 600;
}

/* Botão do WhatsApp Central */
.btn-whatsapp-hero {
    background-color: #25d366; /* Verde Zap Oficial */
    color: #fff;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-whatsapp-hero:hover {
    background-color: #1ebc57;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

/* Botão Voltar (Link simples abaixo) */
.back-home {
    margin-top: 15px;
    color: #888;
    font-size: 0.9rem;
    border: none;
    background: transparent;
    text-decoration: underline;
}
.back-home:hover {
    color: #fff;
    background: transparent;
}

/* Responsivo para celular */
@media (max-width: 768px) {
    .success-hero .hero-title { font-size: 2rem; }
    .icon-wrapper i { font-size: 4rem; }
    .urgent-call { width: 90%; padding: 20px; }
}

/* --- CZAP SPECIAL CARD STYLES --- */

/* Faz o card ocupar a largura total do grid */
.czap-special-card {
    grid-column: 1 / -1; /* Ocupa de ponta a ponta */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    background: #0f0f0f; /* Um pouco mais escuro para destacar o neon */
    border: none; /* Removemos a borda padrão para usar a animada */
    padding: 50px 30px;
    margin-top: 30px;
    overflow: hidden; /* Para conter a borda animada */
    text-decoration: none; /* Garante que não pareça um link azul feio */
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* Animação da Borda (Azul para Roxo) */
@keyframes borderRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Pseudo-elemento para a borda brilhante */
.czap-special-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px; 
    padding: 2px; /* Espessura da borda */
    background: linear-gradient(45deg, #00b6ff, #8a2be2, #00b6ff);
    background-size: 200% 200%;
    animation: borderRotate 3s linear infinite;
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Efeito de Hover: Leve zoom */
.czap-special-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.2); /* Sombra roxa suave */
}

/* Badge de Novidade */
.czap-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg, #00b6ff, #8a2be2);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(0, 182, 255, 0.5);
}

/* Título Brilhante (Azul para Roxo) */
.czap-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #00b6ff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.3));
}
.czap-title i {
    font-size: 2.5rem;
    color: #25d366; /* Mantém o verde do ícone do Whats */
    -webkit-text-fill-color: initial; /* Remove o gradiente do ícone */
}

.czap-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Grid interna do conteúdo (3 colunas) */
.czap-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 40px;
    text-align: left;
}

.czap-col {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.czap-col h4 {
    color: var(--accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.czap-col ul {
    list-style: none;
    padding: 0;
}

.czap-col ul li {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.czap-col ul li::before {
    content: "•";
    color: #8a2be2; /* Bullet roxo */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Botão de CTA Especial */
.czap-btn {
    font-size: 1.1rem;
    padding: 15px 40px;
    background: linear-gradient(90deg, var(--accent), #8a2be2);
    border: none;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.czap-btn:hover {
    background: linear-gradient(90deg, var(--accent-hover), #7014b8);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(138, 43, 226, 0.4);
}

.czap-footer-text {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* Responsividade do card CZAP */
@media (max-width: 768px) {
    .czap-title { font-size: 2rem; }
    .czap-content-grid { text-align: center; }
    .czap-col h4 { justify-content: center; }
    .czap-col ul li { justify-content: center; }
    .czap-col ul li::before { display: none; } /* Remove bullet no mobile centralizado */
}

/* --- ABOUT US SECTION --- */
.about-us-section {
    background: linear-gradient(to bottom, var(--bg-color), #0f0f0f);
    padding: 100px 0;
    position: relative;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-direction: column; /* Mobile First */
}

/* Ajustes de Tipografia Específicos */
.sub-heading {
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.text-left {
    text-align: left !important;
    margin-bottom: 30px;
}

.about-description {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-description strong {
    color: #fff;
    font-weight: 600;
}

/* Grid de Valores (Ícones + Texto) */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.value-item i {
    font-size: 1.5rem;
    color: var(--accent);
    background: rgba(0, 182, 255, 0.1);
    padding: 12px;
    border-radius: 50%;
    margin-top: -5px;
}

.value-item h5 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Coluna da Imagem */
.about-image-col {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible; /* Para o badge sair pra fora se precisar */
}

.main-about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    /* Filtro leve para harmonizar com o dark theme se a foto for clara */
    filter: brightness(0.9) contrast(1.1); 
}

/* Badge Flutuante (+3 Anos) */
.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--card-bg);
    border: 1px solid var(--accent);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: floatBadge 4s ease-in-out infinite;
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsividade Desktop */
@media (min-width: 992px) {
    .about-wrapper {
        flex-direction: row; /* Coloca lado a lado */
    }
    .about-text {
        flex: 1;
    }
    .about-image-col {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .experience-badge {
        right: 10px; /* Ajuste para não cortar no mobile */
        bottom: -20px;
        padding: 15px 20px;
    }
    .experience-badge .years {
        font-size: 2rem;
    }
}
/* --- CSS Específico para o Portfólio do Gabriel --- */

/* Instrução visual para o usuário */
.scroll-instruction {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
    opacity: 0.8;
}
.scroll-instruction i {
    color: var(--accent);
    margin-right: 8px;
    animation: scrollIcon 2s infinite;
}

@keyframes scrollIcon {
    0% { transform: translateY(0); }
    50% { transform: translateY(5px); }
    100% { transform: translateY(0); }
}

/* O Card do Projeto */
.scroll-project {
    height: 350px; /* Altura da janela de visualização */
    width: 100%;
    background-color: #222;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition);
    
    /* Configuração da Imagem de Fundo (O Print do Site) */
    background-size: 100%; /* Largura 100%, altura automática */
    background-position: top center; /* Começa mostrando o topo */
    background-repeat: no-repeat;
    
    /* A velocidade do scroll - ajuste os segundos (4s) se a imagem for muito longa */
    transition: background-position 4s ease-in-out, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Efeito Hover: Move a imagem para baixo e destaca o card */
.scroll-project:hover {
    background-position: bottom center; /* Rola até o final da imagem */
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 182, 255, 0.15);
    border-color: var(--accent);
}

/* O Overlay com o Título (aparece embaixo ou sobreposto) */
.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.6) 80%, transparent);
    color: #fff;
    opacity: 1; /* Sempre visível para identificar o projeto */
    transition: 0.3s;
}

.scroll-project:hover .project-info {
    opacity: 0; /* Opcional: Some quando passa o mouse para ver o site limpo */
}

.project-info h3 {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 800;
}

.project-info p {
    font-size: 0.85rem;
    color: #ddd;
}

.project-tag {
    display: inline-block;
    font-size: 0.7rem;
    background: rgba(0, 182, 255, 0.2);
    color: var(--accent);
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 5px;
    font-weight: 600;
}
/* --- Social Links na Bio --- */
.bio-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.bio-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bio-social-btn:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 182, 255, 0.4);
}

/* Ajuste para o link do card funcionar bem */
.project-card-link {
    display: block;
    text-decoration: none;
    height: 100%; /* Garante que o link ocupe a altura */
}
/* --- Header do Perfil (Atualizado) --- */
.profile-header {
    /* Layout */
    display: flex;
    flex-direction: column; /* Garante que o conteúdo fique um abaixo do outro */
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* Cores */
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    
    /* Espaçamento da Navbar Fixa */
    margin-top: 80px; 
    
    /* AJUSTE MOBILE (O empurrão de 50px) */
    padding-top: 50px; 
    padding-bottom: 50px; /* Espaço embaixo para não ficar colado */
    
    /* Altura */
    height: auto; /* Removemos a altura fixa para não cortar conteúdo */
    min-height: 60vh; /* Garante que ocupe pelo menos 60% da tela */
}

/* --- Media Query: Ajuste Específico para Desktop --- */
@media (min-width: 992px) {
    .profile-header {
        /* AJUSTE DESKTOP (O empurrão de 150px) */
        padding-top: 80px;
        min-height: 80vh; /* Deixamos um pouco mais alto no PC para ficar elegante */
    }
}

.profile-avatar {
    width: 150px; 
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
    margin-bottom: 20px;
    /* Sombra para destacar do fundo */
    box-shadow: 0 0 20px rgba(0, 182, 255, 0.3);
}
/* Isso força o movimento constante, sem acelerar ou frear */
.swiper-wrapper {
    -webkit-transition-timing-function: linear !important; 
    -o-transition-timing-function: linear !important;
    transition-timing-function: linear !important; 
}

/* Aumentamos a força juntando .btn e .btn-hero */
.btn.btn-hero {
    font-size: 25px; /* !important força a prioridade (use para testar) */
    font-weight: 400;
    font-family: 'Lucida Sans', sans-serif;
}

/* Regra para Desktop (Telas maiores que 768px) */
@media (max-width: 768px) {
    .btn.btn-hero {
        font-size: 18px; /* Ajustei de 1px para 18px, pois 1px ficaria invisível */
    }
}
/* Adicione isso ao seu arquivo CSS */
#modal-link {
    display: inline-flex; /* Transforma o botão em um container flexível */
    align-items: center;  /* Centraliza o ícone e o texto verticalmente */
    gap: 10px;            /* Adiciona um espaço de 10px entre o ícone e o texto */
}