:root {
    --graphite: #1A1A1A;
    --graphite-light: #242424;
    --graphite-lighter: #2E2E2E;
    --ice-white: #F4F4F4;
    --leather: #A0522D;
    --leather-bright: #C46A3C;
    --leather-dark: #7A3F20;
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--graphite);
    color: var(--ice-white);
    overflow-x: hidden;
}

.font-display {
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.02em;
}

.font-stamp {
    font-family: 'Special Elite', cursive;
}

.font-bebas {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
}

/* Sobreposição de textura industrial */
.texture-bg {
    background-color: var(--graphite);
    background-image: radial-gradient(circle at 20% 50%, rgba(160, 82, 45, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(160, 82, 45, 0.05) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px);
}

.hero-bg {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.7) 50%, rgba(26, 26, 26, 0.95) 100%),
    url('https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    filter: contrast(1.05);
}

.hero-image-desaturate {
    filter: saturate(0.7) contrast(1.1);
}

/* Efeito de carimbo de logotipo */
.logo-stamp {
    border: 3px solid var(--leather);
    padding: 8px 20px;
    display: inline-block;
    transform: rotate(-2deg);
    position: relative;
}

.logo-stamp::before,
.logo-stamp::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    width: 10px;
    height: 10px;
    border: 2px solid var(--leather);
}

.logo-stamp::before {
    top: -6px;
    left: -6px;
    border-right: none;
    border-bottom: none;
}

.logo-stamp::after {
    bottom: -6px;
    right: -6px;
    border-left: none;
    border-top: none;
}

/* Botão CTA em estilo industrial */
.btn-industrial {
    background: var(--leather);
    color: var(--ice-white);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.15em;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid var(--leather);
    box-shadow: 0 4px 0 var(--leather-dark), 0 6px 15px rgba(0, 0, 0, 0.5);
}

.btn-industrial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-industrial:hover::before {
    left: 100%;
}

.btn-industrial:hover {
    background: var(--leather-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 var(--leather-dark), 0 10px 20px rgba(0, 0, 0, 0.6);
}

.btn-industrial:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--leather-dark), 0 3px 8px rgba(0, 0, 0, 0.5);
}

/* Cartão de serviço */
.service-card {
    position: relative;
    overflow: hidden;
    background: var(--graphite-light);
    border: 1px solid rgba(160, 82, 45, 0.2);
    transition: all 0.4s ease;
}

.service-card img {
    filter: saturate(0.6) contrast(1.15) brightness(0.85);
    transition: all 0.6s ease;
}

.service-card:hover img {
    filter: saturate(0.9) contrast(1.1) brightness(1);
    transform: scale(1.08);
}

.service-card:hover {
    border-color: var(--leather);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--leather);
}

.service-overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(26, 26, 26, 0.95) 100%);
}

/* Divisor de seção */
.divider-industrial {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.divider-industrial::before,
.divider-industrial::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--leather), transparent);
}

/* Calendário */
.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    background: var(--graphite-lighter);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--ice-white);
}

.cal-day:hover:not(.disabled):not(.selected) {
    background: var(--graphite-light);
    border-color: var(--leather);
    color: var(--leather-bright);
}

.cal-day.selected {
    background: var(--leather);
    color: var(--ice-white);
    border-color: var(--leather-bright);
    box-shadow: 0 0 20px rgba(160, 82, 45, 0.4);
}

.cal-day.disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.cal-day.today {
    border-color: var(--leather);
    color: var(--leather-bright);
}

.time-slot {
    padding: 12px 16px;
    background: var(--graphite-lighter);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    color: var(--ice-white);
}

.time-slot:hover:not(.selected) {
    border-color: var(--leather);
    color: var(--leather-bright);
}

.time-slot.selected {
    background: var(--leather);
    border-color: var(--leather-bright);
    color: var(--ice-white);
}

/* Revelação por rolagem */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Whatsapp flutuante */
.whatsapp-float {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    animation: pulse-wa 2.5s infinite;
}

@keyframes pulse-wa {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

/* Marquee */
.marquee {
    background: var(--leather);
    overflow: hidden;
    border-top: 1px solid var(--leather-dark);
    border-bottom: 1px solid var(--leather-dark);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Distintivo numérico */
.num-badge {
    font-family: 'Anton', sans-serif;
    color: var(--leather);
    opacity: 0.3;
    font-size: 5rem;
    line-height: 1;
}

/* Linhas diagonais */
.stripes {
    background-image: repeating-linear-gradient(-45deg, var(--leather) 0px, var(--leather) 6px, transparent 6px, transparent 16px);
    height: 6px;
    opacity: 0.8;
}

/* Rolagem suave */
html {
    scroll-behavior: smooth;
}

/* Barra de rolagem */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--graphite);
}

::-webkit-scrollbar-thumb {
    background: var(--leather-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--leather);
}

/* Desfoque da barra de navegação */
.nav-glass {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(160, 82, 45, 0.2);
}

/* Sombra do título principal */
.hero-title {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

/* Animação escalonada */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim-slide {
    animation: slideInUp 0.9s ease-out forwards;
    opacity: 0;
}

/* Divisor de tesoura */
.scissor-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--leather);
}

.scissor-divider::before,
.scissor-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--leather);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem !important;
        line-height: 0.95 !important;
    }
    .num-badge {
        font-size: 3.5rem;
    }
}

body {
    box-sizing: border-box;
}

:root {
    --impulso-blue: #0067ff;
    --white: #FFFFFF;
}

.impulso-modal {
    display: none; 
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999; /* Garante que fique acima de tudo */
    width: 90%;
    max-width: 400px;
    background-color: var(--white);
    border: 2px solid var(--impulso-blue);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.impulso-modal.active {
    display: block;
    animation: impulsoSlideUp 0.5s ease-out;
}

@keyframes impulsoSlideUp {
    from { bottom: -100px; opacity: 0; }
    to { bottom: 30px; opacity: 1; }
}

.impulso-content {
    padding: 35px 20px;
    text-align: center;
    position: relative;
}

/* Botão de Fechar Melhorado */
.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 35px;
    line-height: 1;
    color: #333;
    cursor: pointer;
    padding: 10px; /* Área de clique aumentada */
    z-index: 1000001;
    transition: color 0.2s;
}

.close-btn:hover { color: var(--impulso-blue); }

.impulso-header {
    color: var(--impulso-blue);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.headline { color: #222; font-size: 1.1rem; margin-bottom: 10px; }
.subline { color: #666; font-size: 0.9rem; margin-bottom: 20px; }

.impulso-btn {
    display: block;
    background-color: var(--impulso-blue);
    color: #fff !important;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 103, 255, 0.3);
}