:root {
    --primary-color: #00ffff;
    --primary-hover: #00cccc;
    --bg-dark: #000000;
    --bg-card: rgba(17, 17, 17, 0.85);
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --glass-border: rgba(0, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(0, 255, 255, 0.1);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

/* Reset e EstilizaÃƒÂ§ÃƒÂ£o Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

:root {
    background-color: #000; /* Garante que qualquer espaÃƒÂ§o extra seja preto */
}

body {
    font-family: var(--font-body);
    background-color: transparent;
    color: var(--text-main);
    scroll-behavior: smooth;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Garante que o conteÃƒÂºdo empurre o footer para o final */
main, section {
    flex: 1;
}

/* Scrollbar Custom */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #111;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    left: 0;
}

header.shrink {
    height: 70px;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

header img, header svg {
    height: 60px;
    width: auto;
    transition: all 0.4s ease;
}

header.shrink img, header.shrink svg {
    height: 45px;
}

.logo-container {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo-container:hover {
    filter: drop-shadow(0 0 15px #00ffff);
}

.logo-container:hover img,
.logo-container:hover svg {
    animation: lightning-flicker 0.1s infinite;
}

@keyframes lightning-flicker {
    0%, 100% { filter: drop-shadow(0 0 2px #00ffff) brightness(1); }
    33% { filter: drop-shadow(0 0 15px #00ffff) drop-shadow(0 0 25px #00ff00) brightness(1.3); }
    66% { filter: drop-shadow(0 0 8px #00ffff) brightness(1.1); }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu-qr {
    display: block;
    width: 35px !important;
    height: 35px !important;
    background: #fff;
    padding: 3px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.menu-qr:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--primary-color);
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover, nav a.active {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 20px;
}

.nav-cta .whatsapp-button {
    font-size: 0.9rem;
    padding: 10px 20px;
}

/* Menu Mobile Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-main);
    margin: 5px 0;
    transition: 0.4s;
}

/* HERO SECTION */
.hero-banner {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('Imagens/background-home-new.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-banner h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
}

.hero-banner p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease;
}

/* SECTIONS BASE */
section, #work, #portfolio, #about, #social, #contato {
    padding: 100px 5%;
    position: relative;
    z-index: 0;
    background: rgba(0, 0, 0, 0.8); /* Overlay mais denso para facilitar leitura */
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

section > *, #work > *, #portfolio > *, #about > *, #social > *, #contato > * {
    position: relative;
    z-index: 10; /* ConteÃƒÂºdo fica ÃƒÂ  frente do vÃƒÂ­deo */
}

#work { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Imagens/background-servicos-new.png') !important; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; }
#portfolio { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Imagens/background-portifolio-new.png') !important; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; }
#about { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Imagens/background-home-new.png') !important; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; }
#social { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Imagens/background-contato-new.png') !important; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; }
#contato { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Imagens/background-contato-new.png') !important; background-size: cover; background-repeat: no-repeat; background-attachment: fixed; }

.section-header {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

/* SERVIÃƒâ€¡OS */
#work {
    background: linear-gradient(rgba(10,10,10,0.9), rgba(10,10,10,0.9)), url('Imagens/background-servicos-new.png');
    background-size: cover;
    background-attachment: fixed;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 45px rgba(0, 255, 255, 0.2);
    background: rgba(0, 255, 255, 0.05);
}

.portfolio-card img {
    height: 220px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.portfolio-card p {
    padding: 0 20px 25px;
    flex-grow: 1;
}

/* PORTFÃƒâ€œLIO */
#portfolio {
    background: #0d0d0d;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.carousel-slide {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item {
    min-width: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 60px 40px 30px;
    color: #fff;
    text-align: left;
}

.caption h4 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: #fff;
    border: 1px solid var(--glass-border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

/* QUEM SOMOS */
#about {
    background: linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.85)), url('Imagens/background-portifolio-new.png');
    background-size: cover;
    background-attachment: fixed;
}

.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-item {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.about-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* SOCIAL & CONTATO */
#social, #contato {
    background: #0a0a0a;
}

.social-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.social-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.social-box:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.social-box i {
    font-size: 2.5rem;
    color: #fff;
    transition: 0.3s;
}

.social-box:hover i {
    animation: lightning-flicker 0.1s infinite;
    transform: scale(1.1);
}

.social-btn {
    padding: 10px 25px;
    background: var(--primary-color);
    color: #000;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

/* Cores e Fontes Específicas das Redes Sociais */
.social-box.facebook { background: rgba(24, 119, 242, 0.1); border-color: #1877F2; }
.social-box.facebook i { color: #1877F2 !important; }
.social-box.facebook .social-btn { 
    background: #1877F2; 
    color: #fff; 
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.social-box.instagram { background: rgba(214, 36, 159, 0.1); border-color: #d6249f; }
.social-box.instagram i { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.social-box.instagram .social-btn { 
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    color: #fff;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    font-style: italic;
}

.social-box.linkedin { background: rgba(10, 102, 194, 0.1); border-color: #0A66C2; }
.social-box.linkedin i { color: #0A66C2 !important; }
.social-box.linkedin .social-btn { 
    background: #0A66C2; 
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
}

.social-box.twitter { background: rgba(255, 255, 255, 0.05); border-color: #ffffff; }
.social-box.twitter i { color: #ffffff !important; }
.social-box.twitter .social-btn { 
    background: #ffffff; 
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
}

.social-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* CONTATO FORM */
/* CONTACT FORM IMPROVEMENTS */
.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Form um pouco mais largo */
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto;
    align-items: stretch;
}

form#contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.1rem; /* Aumentado para melhor leitura no mobile */
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    outline: none;
}

.checkbox-group {
    display: flex;
    gap: 20px;
    color: #fff;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
}

.qr-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.qr-code {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    background: rgba(0,0,0,0.3);
}

.contact-message {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Global Video Background */
#global-bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: 5;
    opacity: 0.05; /* Definido para 95% de transparência */
    pointer-events: none;
    object-fit: cover;
}

.overlay {
    display: none; /* Desativando overlay radial para ver se o vÃƒÂ­deo aparece */
}

/* BOTÃƒâ€¢ES */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: bold;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

/* Ajuste para botões transparentes e Hero */
.btn[style*="background: transparent"], 
.btn.outline {
    background: transparent !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.hero-btn {
    color: #000 !important; /* Mantém preto no fundo ciano sólido */
}

.hero-btn.outline {
    color: #fff !important; /* Branco no texto sem fundo do hero */
    border-color: #fff !important;
}

.hero-btn.outline:hover {
    background: #fff !important;
    color: #000 !important;
}

.btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 255, 0.5);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* WHATSAPP FLOAT */
.whatsapp-button {
    background: #25d366;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* QR CODE */
.qr-code {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: start;
}

/* BOTÃO LARANJA PARA REDIRECIONAMENTO */
.btn-orange {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #FF6200 0%, #FF8C00 100%);
    color: #fff !important;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: bold;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 98, 0, 0.3);
    border: none;
    cursor: pointer;
}

.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 98, 0, 0.5);
    filter: brightness(1.1);
}

/* FOOTER */
footer {
    position: relative;
    background: #000 !important;
    min-height: 80px; /* Reduzido de 140px */
    padding: 20px 5%; /* Reduzido de 50px */
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.footer-row-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 35px;
    width: auto;
}

.footer-main-text, .footer-sub-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-align: center;
}

.footer-sub-text {
    font-size: 0.8rem;
    opacity: 0.8;
}

#footer-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    object-fit: cover;
    pointer-events: none;
}

.footer-logo, footer p {
    position: relative;
    z-index: 1; /* Garante que o conteÃƒÂºdo fique acima do vÃƒÂ­deo */
}

.footer-logo svg {
    height: 35px; /* Altura equilibrada com o texto */
    width: auto;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-align: center;
}
    font-size: 1rem;
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MEDIA QUERIES */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-container, .services-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Aumentado min-width para o texto caber melhor */
    }
}

@media (max-width: 768px) {
    header {
        height: 70px;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    nav ul.show {
        right: 0;
    }

    nav ul li {
        margin: 15px 0;
    }

    .menu-qr {
        display: none !important; /* Removido no mobile conforme solicitado */
    }

    .hero-banner h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-banner p {
        font-size: 1rem;
        padding: 0 15px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .hero-btns .btn {
        margin: 10px 0 !important;
        width: 100%;
        padding: 12px 20px;
    }

    .section-header {
        font-size: 1.8rem;
    }

    .services-container, .portfolio-grid, .social-container {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .service-item, .social-box {
        width: 100%;
        max-width: 100%;
    }

    /* Footer mobile fix */
    footer {
        height: auto;
        padding: 20px 10px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-banner h1 {
        font-size: 1.8rem;
    }
    
    header img {
        height: 45px !important;
    }
}

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

.modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 30px;
    position: relative;
    max-width: 400px;
}

.modal-content-img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    animation: zoomIn 0.4s ease;
}

.modal-caption {
    margin-top: 20px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.service-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.service-item {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--glass-border);
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    background: rgba(0, 255, 255, 0.05);
}

.service-item:hover .service-img {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.portfolio-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.skill-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    background: rgba(0, 255, 255, 0.05);
}

.skill-card h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ajustes de Tipografia para evitar quebras desnecessárias */
.service-item h3, .portfolio-card h3 {
    font-size: 1.15rem !important;
    line-height: 1.3;
    margin-bottom: 10px;
    white-space: normal;
}

.service-item p, .portfolio-card p {
    font-size: 0.9rem !important;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
}

/* Redução adicional para o footer */
footer {
    min-height: 70px !important;
    padding: 15px 5% !important;
}

.footer-logo img {
    height: 28px !important;
}

.footer-main-text {
    font-size: 0.85rem !important;
}
