/* EquitaTech - Tema Inspirado na VuxWeb (Minimalista, Alto Contraste) */

:root {
    /* Cores VuxWeb (Dark Mode) */
    --bg-dark: #0a0a0a;
    --bg-surface: #121212;
    --text-light: #f5f5f5;
    --text-gray: #a3a3a3;
    --border-color: #262626;
    --accent: #2563EB; /* Azul primário */
    
    /* Fontes */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Espaçamentos e transições */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul, ol { list-style: none; }
button, input, textarea, select {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
    color: inherit;
}

/* Utilitários Gerais */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gray {
    color: var(--text-gray);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--text-light);
    color: var(--bg-dark);
    border: 1px solid var(--text-light);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--text-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    border-radius: 4px;
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo, .logo-large {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    max-height: 40px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.45));
    animation: logoSpin 15s linear infinite;
}

.logo-large img {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.45));
    animation: logoSpin 20s linear infinite;
}

@keyframes logoSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.logo-neon {
    color: #00e5ff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-link:hover {
    color: #00e5ff; /* Azul neon */
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.6), 0 0 16px rgba(0, 229, 255, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    border-bottom: 1px solid var(--border-color);
    /* Fundo Aurora Boreal Escuro com maior destaque ao Azul Neon vibrante */
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.85), rgba(10, 10, 15, 0.95)), 
                linear-gradient(-45deg, #0055ff, #00e5ff, #00ffb7, #0055ff, #00e5ff);
    background-size: 100% 100%, 400% 400%;
    animation: auroraBorealis 12s ease infinite;
    position: relative;
    overflow: hidden;
}

/* Feixes de Aurora Boreal (Luzes oscilantes desfocadas no céu) */
.aurora-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
}

.aurora-beam {
    position: absolute;
    width: 60%;
    height: 80%;
    border-radius: 50%;
    filter: blur(100px);
    mix-blend-mode: screen;
    animation: floatBeam 20s infinite alternate ease-in-out;
}

.aurora-beam-1 {
    background: radial-gradient(circle, rgba(0, 229, 255, 0.45) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation-duration: 25s;
}

.aurora-beam-2 {
    background: radial-gradient(circle, rgba(0, 85, 255, 0.4) 0%, transparent 75%);
    bottom: -10%;
    right: -10%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.aurora-beam-3 {
    background: radial-gradient(circle, rgba(0, 255, 183, 0.35) 0%, transparent 70%);
    top: 10%;
    left: 30%;
    animation-duration: 20s;
    animation-delay: -10s;
}

@keyframes floatBeam {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(8%, 12%) rotate(15deg) scale(1.15);
    }
    100% {
        transform: translate(-8%, -6%) rotate(-12deg) scale(0.9);
    }
}

/* Estrela Cadente (Shooting Star) */
.shooting-star {
    position: absolute;
    height: 2px;
    background: linear-gradient(-45deg, #00e5ff, rgba(0, 229, 255, 0));
    filter: drop-shadow(0 0 6px #00e5ff);
    transform: rotate(-45deg);
    transform-origin: left center;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
}

.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
}

.star {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 4px #fff, 0 0 8px rgba(0, 229, 255, 0.45);
    opacity: 0;
    pointer-events: none;
}

.mountains-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.mountains-overlay {
    background-image: url('mountain_silhouette.png');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    mix-blend-mode: multiply; /* Deixa o branco transparente, mantém a montanha preta */
    opacity: 0.8;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}
.hero-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-tags .hero-tag {
    margin-bottom: 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-surface);
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 1rem;
    color: var(--text-light);
}

.marquee-content .dot {
    color: #00e5ff;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.7);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

/* Seções Gerais */
.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

/* Serviços */
.services {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    transition: var(--transition);
}

.service-item:hover {
    border-color: #00e5ff;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4), inset 0 0 10px rgba(0, 229, 255, 0.15);
}

.service-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--border-color);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-label {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--bg-dark);
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.detail-block h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.detail-block ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.detail-block ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-gray);
}

.service-link {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--text-light);
    padding-bottom: 4px;
}

.service-link:hover {
    color: var(--text-gray);
    border-color: var(--text-gray);
}

/* Processo */
.process {
    padding: 100px 0;
    background-color: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-gray);
    display: block;
    margin-bottom: 1rem;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Projetos */
.projects {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

/* Swiper de Projetos */
.projectsSwiper {
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 4rem; /* espaço para paginação */
}

.projectsSwiper .swiper-slide {
    width: 500px;
    max-width: 90vw;
}

/* Modificações específicas pro card dentro do slider */
.project-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.project-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1rem;
    height: 100%;
    transition: var(--transition);
}

.project-card-link:hover .project-card {
    border-color: #00e5ff;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.35), inset 0 0 10px rgba(0, 229, 255, 0.1);
    transform: translateY(-4px);
}

.project-img {
    width: 100%;
    height: 350px;
    background-color: var(--bg-dark);
    margin-bottom: 1.5rem;
}

.project-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem 1rem 1rem;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.project-info h5 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-light);
}

.project-tech {
    font-size: 0.75rem;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    font-weight: 400;
}

.project-year {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Sobre */
.about {
    padding: 120px 0;
    color: #fff;
    /* Overlay escuro por cima + gradiente neon por baixo */
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.85), rgba(10, 10, 15, 0.95)), 
                linear-gradient(-45deg, #00e5ff, #0055ff, #00ff00, #4169e1);
    background-size: 100% 100%, 400% 400%;
    animation: auroraBorealis 12s ease infinite;
}

@keyframes auroraBorealis {
    0% { background-position: center, 0% 50%; }
    50% { background-position: center, 100% 50%; }
    100% { background-position: center, 0% 50%; }
}

.about .section-tag {
    color: rgba(255,255,255,0.7);
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.5rem; /* 40px */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 4rem;
}

.about-title .text-gray {
    color: rgba(255,255,255,0.5);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    font-size: 1.25rem;
}

.about-col p {
    margin-bottom: 1.5rem;
}

.list-col ul li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.list-col ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-family: var(--font-heading);
}

/* FAQ */
.faq {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.accordion {
    border-top: 1px solid var(--border-color);
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 2rem 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header .icon {
    font-size: 2rem;
    font-weight: 400;
    transition: var(--transition);
}

.accordion-item.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-content p {
    padding-bottom: 2rem;
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 800px;
}

/* Contato */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-desc {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

.contact-whatsapp {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 3rem;
}

.contact-whatsapp span {
    display: block;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-gray);
}

.contact-whatsapp h4 {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.form-control {
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
    font-size: 1.1rem;
    transition: var(--transition);
    color: var(--text-light);
}

.form-control:focus {
    border-bottom-color: var(--text-light);
}

select.form-control {
    -webkit-appearance: none;
    background-color: var(--bg-dark);
}

.btn-submit {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Formulário de Resposta */
.form-response {
    padding: 1rem;
    margin-bottom: 1rem;
    display: none;
    font-weight: 500;
    border: 1px solid transparent;
}
.form-response.success { display: block; border-color: #4ade80; color: #4ade80; }
.form-response.error { display: block; border-color: #f87171; color: #f87171; }

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-surface);
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 60px;
}

.logo-large {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.brand-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.brand-desc {
    color: var(--text-gray);
    max-width: 400px;
}

.footer-links h4, .footer-social h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.footer-links a, .footer-social a {
    display: block;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links a:hover, .footer-social a:hover {
    color: var(--text-gray);
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

/* Botão Flutuante */
.fixed-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.fixed-whatsapp:hover {
    transform: translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* Modal de Detalhes */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-surface);
    margin: auto;
    padding: 3rem;
    border: 1px solid var(--border-color);
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--text-gray);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

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

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-right: 2rem;
}

.modal-body .service-details {
    display: flex !important; /* Garante que os detalhes fiquem visíveis no modal */
}

.btn-modal-action {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 1200px) {
    .hero-title { font-size: 4.5rem; }
}

@media (max-width: 992px) {
    .services-list {
        grid-template-columns: 1fr;
    }
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-content { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .hamburger { display: flex; }
    
    .hero {
        padding-top: 130px;
        padding-bottom: 70px;
    }
    .hero-tags {
        display: none;
    }
    .hero-title { font-size: 3rem; }
    h2, .section-title, .about-title { font-size: 2.5rem; } /* 40px */
    .hero-desc { font-size: 1.1rem; }
    .hero-actions { flex-direction: column; }
    
    .process-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    
    /* Cards de Serviços Compactos no Mobile */
    .service-item {
        padding: 1.5rem;
    }
    .service-num {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .service-title {
        font-size: 1.5rem;
    }
    
    /* Processos Compactos no Mobile */
    .process-step {
        padding-top: 1.25rem;
    }
    .step-title {
        font-size: 1.25rem;
    }
    .step-num {
        margin-bottom: 0.5rem;
    }
    
    /* FAQ (Accordion) Compacto no Mobile */
    .accordion-header {
        padding: 1.25rem 0;
        font-size: 1.2rem;
    }
    .accordion-header .icon {
        font-size: 1.5rem;
    }
    .accordion-content p {
        padding-bottom: 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Contato Compacto no Mobile */
    .contact-desc {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    .contact-whatsapp {
        padding: 1.5rem;
    }
    .contact-whatsapp span {
        margin-bottom: 1rem;
    }
    .contact-form {
        gap: 1.25rem;
    }
    .form-label {
        margin-bottom: 0.5rem;
    }
    .form-control {
        font-size: 1rem;
    }
    
    /* Logo Compacta no Header Mobile */
    .logo {
        font-size: 1.25rem;
        gap: 0.5rem;
    }
    .logo img {
        max-height: 30px;
    }
    
    /* Botão Flutuante do WhatsApp Compacto no Mobile */
    .fixed-whatsapp {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    }
    .fixed-whatsapp svg {
        width: 24px;
        height: 24px;
    }
    
    /* Modal de Detalhes Compacto no Mobile */
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }
    .modal-close {
        top: 1rem;
        right: 1.25rem;
        font-size: 1.5rem;
    }
    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}
