/* RESET */

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

html{
    scroll-behavior: smooth;
}

body{
    font-family: "Poppins", sans-serif;
    background: #fff;
}

/* HEADER */

.header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: 0.4s ease;
    padding: 20px 0;
}

.header.scrolled{
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.header-container{
    width: 90%;
    max-width: 1400px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.logo{
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img{
    width: 90px;
    object-fit: contain;
}

/* NAV */

.nav{
    display: flex;
    align-items: center;
    gap: 45px;
}

.nav a{
    text-decoration: none;
    color: #212121;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
    letter-spacing: 0.3px;
}

.nav a::after{
    content: "";
    width: 0%;
    height: 2px;
    background: #ca0c1d;
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 50px;
    transition: 0.35s ease;
}

.nav a:hover{
    color: #1f1f1f;
}

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

/* BUTTON */

.header-btn,
.mobile-btn{
    position: relative;
    overflow: hidden;

    text-decoration: none;
    color: #fff;

   background: linear-gradient(
        135deg,
        #ff0000 0%,
        #b30000 40%,
        #5a0000 100%
    );
    padding: 15px 32px;
    border-radius: 60px;

    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.4px;

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.4s ease;

    box-shadow:
    0 12px 30px rgba(90, 13, 18, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* GLOW EFFECT */

.header-btn::before,
.mobile-btn::before{
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );

    transition: 0.7s ease;
}

.header-btn:hover::before,
.mobile-btn:hover::before{
    left: 120%;
}

/* HOVER */

.header-btn:hover,
.mobile-btn:hover{
    transform: translateY(-3px);

    background: linear-gradient(
        135deg,
        #ff0000 0%,
        #b30000 40%,
        #5a0000 100%
    );

    box-shadow:
    0 18px 40px rgba(90, 13, 18, 0.38);
}

/* HAMBURGUER */

.menu-toggle{
    width: 45px;
    height: 45px;

    border: none;
    background: transparent;

    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;

    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span{
    width: 28px;
    height: 2px;

    background: #5c5c5c;

    border-radius: 20px;

    transition: 0.4s ease;
}

/* ANIMATION */

.menu-toggle.active span:nth-child(1){
    transform: rotate(45deg) translateY(11px);
}

.menu-toggle.active span:nth-child(2){
    opacity: 0;
}

.menu-toggle.active span:nth-child(3){
    transform: rotate(-45deg) translateY(-11px);
}

/* OVERLAY */

.mobile-overlay{
    position: fixed;
    inset: 0;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;

    z-index: 998;
}

.mobile-overlay.active{
    opacity: 1;
    visibility: visible;
}

/* MOBILE MENU */

.mobile-menu{
    position: fixed;

    top: 0;
    right: -100%;

    width: 50%;
    height: 100vh;

    background: rgba(255,255,255,0.75);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    border-left: 1px solid rgba(255,255,255,0.3);

    padding: 120px 40px;

    display: flex;
    flex-direction: column;

    gap: 40px;

    transition: 0.5s ease;

    z-index: 999;
}

.mobile-menu.active{
    right: 0;
}

/* MOBILE NAV */

.mobile-nav{
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mobile-nav a{
    text-decoration: none;

    color: #555;

    font-size: 18px;
    font-weight: 500;

    transition: 0.3s ease;
}

.mobile-nav a:hover{
    color: #ca0c1d;
    transform: translateX(5px);
}

.mobile-btn{
    width: fit-content;
}

/* RESPONSIVE */

@media(max-width: 992px){

    .desktop-nav{
        display: none;
    }

    .desktop-btn{
        display: none;
    }

    .menu-toggle{
        display: flex;
    }

    .logo img{
        width: 80px;
    }
}

@media(max-width: 768px){

    .mobile-menu{
        width: 70%;
    }

    .header{
        padding: 18px 0;
    }

    .logo img{
        width: 80px;
    }
}

@media(max-width: 500px){

    .mobile-menu{
        width: 82%;
        padding: 110px 30px;
    }

    .mobile-nav a{
        font-size: 17px;
    }

    .mobile-btn{
        width: 100%;
        text-align: center;
    }

}

/* HERO */

.hero{
    width: 100%;
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding: 165px 20px 70px; /* mais espaço no topo */

    background-image: url("img/capa-hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* OVERLAY */

.hero-overlay{
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        to bottom,
        rgba(253, 253, 253, 0.087),
        rgba(242, 240, 240, 0.404)
    );
}

/* CONTENT */

.hero-content{
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* TITLE */

.hero-title{
    max-width: 760px;

    font-size: 58px;
    line-height: 1.04;

    font-weight: 700;

    background: linear-gradient(
        135deg,
        #ff0000 0%,
        #b30000 40%,
        #5a0000 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    letter-spacing: -2px;

    margin-bottom: 28px; /* aproxima da imagem */

    text-shadow:
    0 12px 35px rgba(0,0,0,0.35);
}

/* PRODUCT IMAGE */

.hero-product{
    width: 100%;

    display: flex;
    justify-content: center;

    margin-bottom: 38px;
}

.hero-product img{
    width: 100%;
    max-width: 390px; /* mais próximo do title */

    object-fit: contain;

    filter:
    drop-shadow(0 30px 55px rgba(0,0,0,0.42));

    transition: 0.45s ease;
}

.hero-product img:hover{
    transform: translateY(-8px) scale(1.02);
}

/* BUTTONS */

.hero-buttons{
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;
}

/* GLASS BUTTON */

.btn-glass{
    text-decoration: none;

    color: #8d151d;

    padding: 15px 32px;

    border-radius: 60px;

    font-size: 14px;
    font-weight: 500;

    border: 1px solid #8d151d;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition: 0.4s ease;

    box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 10px 25px rgba(0,0,0,0.18);
}

.btn-glass:hover{
    transform: translateY(-3px);

    background: rgba(141, 21, 29, 0.16);

    box-shadow:
    0 18px 35px rgba(0,0,0,0.24);
}

/* RED BUTTON */

.btn-red{
    position: relative;
    overflow: hidden;

    text-decoration: none;
    color: #fff;

    padding: 15px 32px;

    border-radius: 60px;

    font-size: 14px;
    font-weight: 500;

    background: linear-gradient(
        135deg,
        #ff0000 0%,
        #b30000 40%,
        #5a0000 100%
    );

    border: 1px solid rgba(255,255,255,0.08);

    transition: 0.4s ease;

    box-shadow:
    0 15px 35px rgba(90, 13, 18, 0.04);
}

/* SHINE EFFECT */

.btn-red::before{
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 100%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.22),
        transparent
    );

    transition: 0.7s ease;
}

.btn-red:hover::before{
    left: 120%;
}

.btn-red:hover{
    transform: translateY(-3px);

    box-shadow:
    0 22px 45px rgba(90, 13, 18, 0.42);
}

/* ANIMATIONS */

.fade-top,
.fade-bottom{
    opacity: 0;

    transition:
    opacity 1s ease,
    transform 1s ease;
}

.fade-top{
    transform: translateY(-35px);
}

.fade-bottom{
    transform: translateY(35px);
}

.fade-top.show,
.fade-bottom.show{
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */

@media(max-width: 992px){

    .hero{
        padding: 150px 24px 70px;
    }

    .hero-title{
        font-size: 52px;
        max-width: 720px;

        line-height: 1.05;

        margin-bottom: 24px;
    }

    .hero-product{
        margin-bottom: 34px;
    }

    .hero-product img{
        max-width: 350px;
    }
}

@media(max-width: 768px){

    .hero{
        min-height: auto;

        padding: 145px 24px 65px; /* mais respiro no topo */
    }

    .hero-content{
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-title{
        width: 100%;
        max-width: 620px;

        font-size: 38px; /* reduz quebra */
        line-height: 1.08;

        letter-spacing: -1.2px;

        margin-bottom: 16px; /* mais junto da img */
    }

    .hero-product{
        width: 100%;

        margin-bottom: 28px;
    }

    .hero-product img{
        width: 100%;
        max-width: 300px; /* tamanho equilibrado */

        object-fit: contain;
    }

    .hero-buttons{
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 14px;
    }

    .btn-glass,
    .btn-red{
        width: calc(100% - 18px);

        padding: 17px 22px;

        font-size: 15px;
        font-weight: 600;

        text-align: center;

        border-radius: 18px;
    }
}

@media(max-width: 500px){

    .hero{
        padding: 135px 18px 50px;
    }

    .hero-title{
        font-size: 32px; /* menos quebra */
        line-height: 1.08;

        letter-spacing: -1px;

        margin-bottom: 14px;

        max-width: 100%;
    }

    .hero-product{
        margin-bottom: 24px;
    }

    .hero-product img{
        width: 100%;
        max-width: 260px;
    }

    .hero-buttons{
        gap: 12px;
    }

    .btn-glass,
    .btn-red{
        width: calc(100% - 10px);

        padding: 16px 20px;

        font-size: 15px;

        border-radius: 16px;
    }
}



/*servicos*/

/* ===== SERVIÇOS ===== */

.services-section{
    width: 100%;
    padding: 120px 8%;
    background: linear-gradient(
        135deg,
        #ff0000 0%,
        #b30000 40%,
        #5a0000 100%
    );
    position: relative;
    overflow: hidden;
}

/* brilho fundo */
.services-section::before{
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.08);
    filter: blur(120px);
    top: -100px;
    left: -100px;
    border-radius: 50%;
}

.services-title{
    text-align: center;
    margin-bottom: 70px;
}

.services-title h2{
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* GRID */

.services-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    align-items: stretch;
}

/* CARD */

.service-card{
    border-radius: 30px;
    overflow: hidden;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: 0.4s ease;
    position: relative;

    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.5);

    box-shadow:
        0 0 25px rgba(255,255,255,0.08),
        inset 0 0 20px rgba(255,255,255,0.03);
}

.service-card:hover{
    transform: translateY(-10px);
    box-shadow:
        0 0 35px rgba(255,255,255,0.18),
        inset 0 0 25px rgba(255,255,255,0.05);
}

/* IMAGEM QUADRADA */

.service-image{
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.service-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-card:hover img{
    transform: scale(1.08);
}

/* CONTEUDO */

.service-content{
    padding: 35px;
}

.service-content h3{
    font-size: 1.9rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
}

.service-content p{
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #fff;
}

/* BOTÕES */

.service-btn{
    width: fit-content;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    background: #fff;
    color: #ff0000;

    box-shadow:
        0 0 18px rgba(255,255,255,0.3);
}

/* brilho suave fixo */

.service-btn::before{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;

    background: linear-gradient(
        45deg,
        rgba(255,255,255,0.9),
        rgba(255,255,255,0.1),
        rgba(255,255,255,0.9)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

.service-btn:hover{
    transform: scale(1.05);
    box-shadow:
        0 0 28px rgba(255,255,255,0.45);
}

/* ===== ANIMAÇÃO ===== */

.reveal{
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 1s ease,
        transform 1s ease;
}

.reveal.active{
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE ===== */

@media (max-width: 991px){

    .services-section{
        padding: 90px 20px;
    }

    .services-title{
        margin-bottom: 50px;
    }

    .services-title h2{
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .services-grid{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-image{
        aspect-ratio: 1 / 1;
    }

    .service-content{
        padding: 28px;
    }

    .service-content h3{
        font-size: 1.7rem;
    }

    .service-content p{
        font-size: 1.05rem;
    }

    .service-btn{
        width: 100%;
        padding: 18px;
        font-size: 1.05rem;
        border-radius: 16px;
    }
}

/*sobre*/

/* ===== SOBRE KDT ===== */

.about-kdt{
    width: 100%;
    padding: 120px 8%;
    background: #fff;
    position: relative;
    overflow: hidden;
}

/* brilho fundo */

.about-kdt::before{
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255,0,0,0.12);
    filter: blur(120px);
    top: -150px;
    right: -150px;
    border-radius: 50%;
}

/* CONTAINER */

.about-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

/* TEXTOS */

.about-content{
    max-width: 620px;
}

.about-mini-title{
    display: inline-block;
    margin-bottom: 18px;
    color: #ff2b2b;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.about-content h2{
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: #090909;
}

.about-content p{
    color: rgba(21, 21, 21, 0.78);
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 22px;
}

/* CARD */

/* CARD */

.about-card{
    position: relative;

    width: 100%;
    max-width: 500px; /* diminui largura */

    height: 650px; /* aumenta altura */

    margin-left: auto;

    border-radius: 32px;
    overflow: hidden;

    border: 1px solid rgba(255,0,0,0.7);

    box-shadow:
        0 0 15px rgba(255,0,0,0.35),
        0 0 35px rgba(255,0,0,0.18),
        inset 0 0 20px rgba(255,0,0,0.08);

    background: #111;
}

/* brilho fixo */

.about-card::before{
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 32px;
    padding: 1px;

    background: linear-gradient(
        135deg,
        rgba(255,0,0,0.9),
        rgba(255,0,0,0.2),
        rgba(255,0,0,0.8)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none;
}

/* IMAGEM */

.about-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.about-card:hover img{
    transform: scale(1.05);
}

/* OVERLAY */

.about-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.15),
        transparent
    );
}

/* CONTEUDO CARD */

.about-card-content{
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 35px;
}

/* BOTÃO */

.about-btn{
    width: 100%;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    text-decoration: none;

    font-size: 1rem;
    font-weight: 700;

    color: #fff;

    background: linear-gradient(
        135deg,
        #ff0000 0%,
        #b30000 45%,
        #5a0000 100%
    );

    box-shadow:
        0 0 15px rgba(255,0,0,0.35);

    transition: 0.4s ease;
}

.about-btn:hover{
    transform: translateY(-3px);
    box-shadow:
        0 0 25px rgba(255,0,0,0.5);
}

/* ===== RESPONSIVO ===== */

@media (max-width: 991px){

    .about-kdt{
        padding: 90px 20px;
    }

    .about-container{
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content{
        max-width: 100%;
    }

    .about-content h2{
        font-size: 2.8rem;
    }

    .about-content p{
        font-size: 1rem;
        line-height: 1.8;
    }

       .about-card{
        max-width: 100%;
        height: 600px;
        border-radius: 28px;
    }

    .about-card-content{
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .about-btn{
        height: 58px;
        font-size: 1rem;
        border-radius: 16px;
    }
}

/*areas de atendimento*/

/* ===== ÁREA DE ATENDIMENTO ===== */

.service-area{
    width: 100%;
    padding: 120px 8%;
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        #ff0000 0%,
        #b30000 45%,
        #5a0000 100%
    );
}

/* brilho fundo */

.service-area::before{
    content: '';
    position: absolute;

    width: 600px;
    height: 600px;

    background: rgba(255,255,255,0.08);

    filter: blur(120px);

    top: -200px;
    left: -200px;

    border-radius: 50%;
}

.service-area-container{
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
    z-index: 2;
}

/* ===== TITULOS ===== */

.service-mini-title{
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    letter-spacing: 3px;
    font-weight: 700;

    margin-bottom: 18px;
}

.service-area h2{
    color: #fff;
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.1;

    margin-bottom: 60px;

    max-width: 850px;
}

/* ===== CONTAINER MAPA ===== */

.map-box{
    width: 100%;
    max-width: 900px; /* menor largura */

    height: 520px; /* menor altura */

    border-radius: 34px;

    overflow: hidden;

    position: relative;

    padding: 12px;

    background: rgba(255,255,255,0.08);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.35);

    box-shadow:
        0 0 18px rgba(255,255,255,0.12),
        0 0 45px rgba(255,255,255,0.08),
        inset 0 0 20px rgba(255,255,255,0.05);
}

/* BORDA BRILHANTE BRANCA */

.map-box::before{
    content: '';
    position: absolute;
    inset: -1px;

    border-radius: 34px;
    padding: 1px;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.95),
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.95)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none;
}

/* MAPA */

.map-box iframe{
    width: 100%;
    height: 100%;

    border: 0;

    border-radius: 24px;

    filter:
        saturate(1.1)
        contrast(1.02);
}

/* ===== CIDADES ===== */

.city-switcher{
    width: 420px;
    height: 72px;

    margin-top: 40px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 1.15rem;
    font-weight: 700;

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.35);

    backdrop-filter: blur(16px);

    box-shadow:
        0 0 18px rgba(255,255,255,0.12);

    overflow: hidden;

    position: relative;
}

/* TEXTO ANIMADO SUAVE */

#cityName{
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

    opacity: 1;
    transform: translateY(0);
}

/* ===== BOTÃO ===== */

.open-cities-btn{
    width: 420px;
    height: 72px;

    margin-top: 20px;

    border: none;
    border-radius: 18px;

    cursor: pointer;

    font-size: 1.05rem;
    font-weight: 700;

    color: #fff;

    background: linear-gradient(
        135deg,
        #ff0000 0%,
        #b30000 45%,
        #5a0000 100%
    );

    box-shadow:
        0 0 20px rgba(255,0,0,0.35);

    transition: 0.4s ease;
}

.open-cities-btn:hover{
    transform: translateY(-4px);

    box-shadow:
        0 0 28px rgba(255,0,0,0.5);
}

/* ===== MODAL ===== */

.cities-modal{
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.78);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;

    z-index: 9999;

    padding: 20px;
}

.cities-modal.active{
    opacity: 1;
    visibility: visible;
}

/* ===== CONTEUDO MODAL ===== */

.cities-modal-content{
    width: 100%;
    max-width: 1100px;

    background: #080808;

    border-radius: 34px;

    padding: 60px;

    position: relative;

    border: 1px solid rgba(255,255,255,0.2);

    box-shadow:
        0 0 20px rgba(255,255,255,0.08),
        0 0 45px rgba(255,255,255,0.05);
}

.cities-modal-content h3{
    color: #fff;
    font-size: 3rem;
    text-align: center;

    margin-bottom: 50px;
}

/* ===== FECHAR ===== */

.close-modal{
    position: absolute;
    top: 20px;
    right: 20px;

    width: 50px;
    height: 50px;

    border-radius: 50%;
    border: none;

    cursor: pointer;

    font-size: 2rem;

    color: #fff;

    background: rgba(255,255,255,0.08);

    transition: 0.3s ease;
}

.close-modal:hover{
    background: rgba(255,255,255,0.18);
}

/* ===== GRID ===== */

.cities-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    margin-bottom: 45px;
}

/* ===== CARD ===== */

.city-card{
    height: 80px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: #fff;

    font-weight: 700;
    font-size: 1rem;

    background: linear-gradient(
        135deg,
        #ff0000 0%,
        #b30000 45%,
        #5a0000 100%
    );

    box-shadow:
        0 0 18px rgba(255,0,0,0.25);

    transition: 0.4s ease;
}

.city-card:hover{
    transform: translateY(-4px);
}

/* ===== BOTÃO FINAL ===== */

.attendance-btn{
    width: 100%;
    height: 72px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: #fff;

    font-size: 1.05rem;
    font-weight: 700;

    background: linear-gradient(
        135deg,
        #ff0000 0%,
        #b30000 45%,
        #5a0000 100%
    );

    box-shadow:
        0 0 20px rgba(255,0,0,0.35);

    transition: 0.4s ease;
}

.attendance-btn:hover{
    transform: translateY(-4px);
}

/* ===== RESPONSIVO ===== */

@media (max-width: 991px){

    .service-area{
        padding: 90px 20px;
    }

    .service-area h2{
        font-size: 2.5rem;
        margin-bottom: 45px;
    }

    .map-box{
        max-width: 100%;
        height: 380px;

        border-radius: 26px;

        padding: 8px;
    }

    .map-box iframe{
        border-radius: 18px;
    }

    .city-switcher,
    .open-cities-btn{
        width: 100%;
        max-width: 100%;
        height: 64px;

        font-size: 1rem;
    }

    .cities-modal-content{
        padding: 35px 20px;
        border-radius: 24px;
    }

    .cities-modal-content h3{
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .cities-grid{
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .city-card{
        height: 70px;
        font-size: 0.95rem;
        padding: 10px;
    }

    .attendance-btn{
        height: 64px;
        text-align: center;
        padding: 0 20px;
        font-size: 0.95rem;
    }
}

/*form*/

/* ===== CONTATO ===== */

.contact-section{
    width: 100%;
    padding: 120px 8%;

    background: #ffffff;

    position: relative;
    overflow: hidden;
}

/* brilho fundo */

.contact-section::before{
    content: '';

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(255,0,0,0.06);

    filter: blur(120px);

    top: -150px;
    right: -150px;

    border-radius: 50%;
}

/* CONTAINER */

.contact-container{
    max-width: 850px;
    margin: 0 auto;

    position: relative;
    z-index: 2;
}

/* TITULO */

.contact-container h2{
    text-align: center;

    font-size: 4rem;
    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 60px;

    background: linear-gradient(
        135deg,
        #ff0000 0%,
        #b30000 45%,
        #5a0000 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}

/* ===== FORM ===== */

.contact-form{
    width: 100%;

    padding: 45px;

    border-radius: 34px;

    background: rgba(255,255,255,0.6);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.8);

    box-shadow:
        0 0 25px rgba(255,0,0,0.08),
        0 0 60px rgba(255,0,0,0.06);

    margin-bottom: 35px;
}

/* INPUT GROUP */

.input-group{
    margin-bottom: 24px;
}

.input-group label{
    display: block;

    margin-bottom: 12px;

    color: #111;

    font-size: 1rem;
    font-weight: 700;
}

/* INPUTS */

.contact-form input,
.contact-form textarea{
    width: 100%;

    border: none;
    outline: none;

    background: rgba(255,255,255,0.85);

    border-radius: 18px;

    padding: 18px 22px;

    font-size: 1rem;

    color: #111;

    border: 1px solid rgba(0,0,0,0.08);

    transition: 0.4s ease;
}

/* TEXTAREA */

.contact-form textarea{
    min-height: 180px;
    resize: none;
}

/* FOCUS */

.contact-form input:focus,
.contact-form textarea:focus{
    border-color: rgba(255,0,0,0.4);

    box-shadow:
        0 0 18px rgba(255,0,0,0.12);
}

/* BOTÃO */

.contact-btn{
    width: 100%;
    height: 68px;

    border: none;
    border-radius: 18px;

    cursor: pointer;

    font-size: 1rem;
    font-weight: 700;

    color: #fff;

    background: linear-gradient(
        135deg,
        #ff0000 0%,
        #b30000 45%,
        #5a0000 100%
    );

    box-shadow:
        0 0 22px rgba(255,0,0,0.22);

    transition: 0.4s ease;
}

.contact-btn:hover{
    transform: translateY(-4px);

    box-shadow:
        0 0 32px rgba(255,0,0,0.32);
}

/* ===== CARDS ===== */

.contact-cards{
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

/* CARD */

.contact-card{
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 24px;

    border-radius: 24px;

    text-decoration: none;

    background: rgba(255,255,255,0.75);

    backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,0.8);

    box-shadow:
        0 0 25px rgba(255,0,0,0.06);

    transition: 0.4s ease;
}

.contact-card:hover{
    transform: translateY(-5px);

    box-shadow:
        0 0 35px rgba(255,0,0,0.14);
}

/* ICON */

.contact-icon{
    width: 70px;
    height: 70px;

    min-width: 70px;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #ff0000 0%,
        #b30000 45%,
        #5a0000 100%
    );

    box-shadow:
        0 0 18px rgba(255,0,0,0.22);
}

.contact-icon img{
    width: 32px;
    height: 32px;

    object-fit: contain;
}

/* INFO */

.contact-info{
    display: flex;
    flex-direction: column;
}

.contact-info span{
    color: #666;

    font-size: 0.95rem;

    margin-bottom: 5px;
}

.contact-info strong{
    color: #111;

    font-size: 1.2rem;
    font-weight: 700;
}

/* ===== RESPONSIVO ===== */

@media (max-width: 991px){

    .contact-section{
        padding: 90px 20px;
    }

    .contact-container h2{
        font-size: 2.8rem;

        margin-bottom: 40px;
    }

    .contact-form{
        padding: 28px;

        border-radius: 26px;
    }

    .contact-form input,
    .contact-form textarea{
        padding: 16px 18px;
    }

    .contact-btn{
        height: 62px;
    }

    .contact-cards{
        grid-template-columns: 1fr;
    }

    .contact-card{
        padding: 20px;
    }

    .contact-icon{
        width: 60px;
        height: 60px;

        min-width: 60px;
    }

    .contact-icon img{
        width: 28px;
        height: 28px;
    }

    .contact-info strong{
        font-size: 1rem;
    }
}


/*footer*/


.footer {
     background: linear-gradient(
        135deg,
        #ff0000 0%,
        #b30000 45%,
        #5a0000 100%
    );
    color: #fff;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-contato {
    flex: 1;
    min-width: 280px;
}

.footer-servicos {
    flex: 2;
    min-width: 280px;
}

.footer h3 {
    color: #ccc;
    font-size: 16px;
}

.lista-servicos {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 3;
    column-gap: 40px;
}

.lista-servicos li {
    break-inside: avoid;
    margin-bottom: 6px;
    color: #ddd;
    font-size: 14px;
}

.toggle-servicos {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seta {
    display: none;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
    }

    .lista-servicos {
        column-count: 1;
        display: none;
    }

    .lista-servicos.ativo {
        display: block;
    }

    .seta {
        display: inline-block;
    }

    .seta.rotacionar {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    .espaco-mobile {
        height: 120px;
    }
}

/*seta para cima*/

.botao-seta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.botao-seta img {
    width: 50px;
    height: 50px;
    display: block;
}

.botao-seta:hover {
    transform: scale(1.1);
}

.cumulus-whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 30px;
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
  animation: cumulusGlow 1.5s infinite alternate;
  z-index: 9999;
  transition: 0.3s;
}

.cumulus-whatsapp-float img {
  width: 32px;
  height: 32px;
}

.cumulus-whatsapp-float:hover {
  transform: scale(1.1);
}

/* EFEITO BRILHANTE ANIMADO */
@keyframes cumulusGlow {
  from {
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.6),
                0 0 20px rgba(37, 211, 102, 0.4);
  }
  to {
    box-shadow: 0 0 25px rgba(37, 211, 102, 1),
                0 0 45px rgba(37, 211, 102, 0.8);
  }
}

@media (max-width: 768px) {
  .cumulus-whatsapp-float {
    width: 55px;
    height: 55px;
    left: 15px;
    bottom: 20px;
  }

  .cumulus-whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}