* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f5f7fa;
    color: #1f2a33;
    overflow-x: hidden;
}


/* CONTAINER */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* HEADER */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    z-index: 999;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.logo {
    height: 100px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
/*MENU*/
nav a {
    position: relative;
    text-decoration: none;
    color: #1f2a33;
    font-weight: 500;
    transition: 0.3s;
}

/* LINE */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #facc15;
    transition: width 0.3s ease;
}

/* HOVER */
nav a:hover::after {
    width: 100%;
}

/* ACTIVE */
nav a.active::after {
    width: 100%;
}

.btn-header {
    background: #f2b21b;
    color: #0b1120;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-header:hover {
    transform: scale(1.05);
}

/* HAMBURGER (HIDDEN IN THE DESKTOP) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #1f2a33;
    border-radius: 5px;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* MOBILE */
@media(max-width: 900px){

    /* Hides normal menu (but maintains structure) */
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        max-width: 300px;
        height: 60vh;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        border-radius: 20px 0 0px 20px;
    }

    .logo {
        height: 60px;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 25px;
    }

    /* SHOW BUTTON */
    .menu-toggle {
        display: flex;
    }

    /* HIDE BUTTON IN MOBILE */
    .btn-header {
        display: none;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 997;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}


/* HERO */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
    animation: leftFade 1s ease forwards;
}

.hero-text h1 {
    
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.2;
}

.hero-text p {
    margin-bottom: 30px;
    color: #555;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #f2b21b;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-whatsapp {
    border: 2px solid #f2b21b;
    padding: 14px 25px;
    border-radius: 8px;
    text-decoration: none;
    color: #f2b21b;
    transition: 0.3s;
}


.btn-whatsapp:hover {
    background: #f2b21b;
    color: #fff;
    transform: translateY(-3px);
}

img {
    max-width: 100%;
    display: block;
}

.hero-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.hero-image img:hover {
    transform: scale(1.03);
}

.hero-image {
    overflow: hidden;
    border-radius: 20px;
}

.stores {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stores img {
    width: 180px;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    border-radius: 12px;
}

.stores img:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stores img:active {
    transform: scale(0.95);
}

/* SECTIONS */
section {
    padding: 80px 0;
}
/*
h2 {
    text-align: center;
    margin-bottom: 40px;
}*/


.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(250,204,21,0.2), transparent);
    opacity: 0;
    transition: 0.4s;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
}

/* COMPANIES */
.empresas {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    overflow: hidden;
}

.empresas-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.empresas-content p {
    text-align: left;
}

.empresas-text {
    flex: 1;
}

.empresas-text h2 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.3;
}

.empresas-text .sub {
    font-size: 18px;
    margin-bottom: 25px;
    color: #cbd5e1;
}

.vantagens h3, p {
    text-align: center;

}

.beneficios {
    list-style: none;
    margin-bottom: 30px;
}

.beneficios li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* BUTTON */
.cta {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #facc15;
    color: #000;
    padding: 14px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(250,204,21,0.4);
}

.btn-secondary {
    border: 2px solid #fff;
    padding: 14px 25px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

/* PICTURES */
.empresas-image {
    flex: 1;
    position: relative;
}

.empresas-image img {
    width: 100%;
    border-radius: 20px;
    transition: 0.4s;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* EFFECT hover imagem */
.empresas-image:hover img {
    transform: scale(1.05) rotate(-1deg);
}

/* Glow atrás da imagem */
.empresas-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(250,204,21,0.2), transparent);
    top: 0;
    left: 0;
    z-index: -1;
    filter: blur(40px);
}

/* RESPONSIVES */
@media (max-width: 900px) {
    .empresas-content {
        flex-direction: column;
        text-align: center;
    }

    .cta {
        justify-content: center;
    }
}

.hidden {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* VISION MISSION VALUE */
.mvw {
    padding: 100px 20px;
    background: #0b1120;
    color: #fff;
    text-align: center;
}

.mvw-title {
    font-size: 38px;
    margin-bottom: 10px;
}

.mvw-sub {
    color: #94a3b8;
    margin-bottom: 60px;
    font-size: 18px;
}

.mvw-img {
    position: relative;
    display: inline-block;
}

.mvw-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(250,204,21,0.3), transparent);
    top: 0;
    left: 0;
    filter: blur(20px);
    z-index: -1;
}

.mvw-img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 15px;
    transition: 0.4s;
    background: #0f172a;
    padding: 10px;
}

/* HOVER NA IMAGEM */
.mvw-card:hover .mvw-img img {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 10px 30px rgba(250,204,21,0.3);
}

/* GRID */
.mvw-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CARD */
.mvw-card {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    padding: 30px;
    border-radius: 20px;
    width: 300px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* BORDA GLOW */
.mvw-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(120deg, #facc15, transparent, #facc15);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

/* HOVER */
.mvw-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* ICON */
.icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* TITULO */
.mvw-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

/* TEXTO */
.mvw-card p {
    color: #cbd5e1;
    font-size: 15px;
    text-align: center;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .mvw-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* APP */
.app-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.app-text {
    flex: 1;
}

.app-image img {
    max-width: 300px;
}

.app {
    text-align: center;
}

@media(max-width: 900px){
    .app-content {
        flex-direction: column;
    }

    .app-image img {
        max-width: 250px;
    }
}

/* CONTATO */
.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

form input, form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

form button {
    background: #f2b21b;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
}

/* FOOTER */
.footer {
    background: #1f2a33;
    color: white;
    text-align: center;
    padding: 40px 0;
    text-align: center;
}

.logo-footer {
    height: 80px;
    margin-bottom: 15px;
    display: block;
    margin: 0 auto 15px;
}

.footer a {
    color: #f2b21b;
    margin: 0 10px;
}

/* RESPONSIVES */
@media (max-width: 900px) {
    .footer {
        font-size: 15px;
    }
}


/* CONTATO */
.contato {
    padding: 100px 20px;
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #fff;
}

.contato-box {
    max-width: 900px;
    margin: auto;
    background: #0f172a;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.contato-text {
    text-align: center;
    margin-bottom: 40px;
}

.contato-text h2 {
    font-size: 22px;
    line-height: 1.3;
}

.contato-text p {
    color: #94a3b8;
    text-align: left;
    align-items: left;
}

/* ============================= */
/* FORMULÁRIO MODERNO COMPLETO */
/* ============================= */

.sec-contato-form {
    padding: 90px 20px;
    background: linear-gradient(135deg, #020617, #0f172a);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h2 {
    font-size: 32px;
    color: #fff;
}

/* CARD FORM */
.contato-form {
    width: 100%;
    max-width: 600px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;

    background: #0f172a;
    border-radius: 16px;
    padding: 30px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ============================= */
/* FLOATING LABEL */
/* ============================= */

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* INPUTS */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 12px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);

    background: rgba(255,255,255,0.03);
    color: #fff;
    font-size: 14px;

    outline: none;
    transition: 0.3s;
}

/* LABEL */
.form-group label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s;
}

/* FLOAT EFFECT */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 6px;
    font-size: 11px;
    color: #facc15;
}

/* FOCUS */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #facc15;
    box-shadow: 0 0 0 2px rgba(250,204,21,0.15);
}

/* TEXTAREA */
.form-group textarea {
    min-height: 90px;
    resize: none;
}

/* FULL WIDTH */
.form-group.full-width {
    grid-column: span 2;
}

/* ============================= */
/* PRIVACIDADE */
/* ============================= */

.form-privacy {
    grid-column: span 2;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #94a3b8;
}

.form-privacy input {
    accent-color: #facc15;
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin-top: 3px;
}

.form-privacy label {
    cursor: pointer;
    line-height: 1.4;
}

/* ============================= */
/* RECAPTCHA */
/* ============================= */

.g-recaptcha {
    grid-column: span 2;
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

@media (max-width: 600px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}

/* ============================= */
/* BOTÃO */
/* ============================= */

.btn-enviar-contato {
    grid-column: span 2;
    padding: 14px 25px;
    border: none;
    border-radius: 10px;
    background: #facc15;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    max-width: 250px;
    display: block;
    margin: 20px auto 0;
    justify-self: center;

}

.btn-enviar-contato:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(250,204,21,0.4);
}

/* CLICK */
.btn-enviar-contato:active {
    transform: scale(0.98);
}

/* ============================= */
/* RESPONSIVO */
/* ============================= */

@media (max-width: 768px) {

    .contato-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width,
    .form-privacy,
    .btn-enviar-contato,
    .g-recaptcha {
        grid-column: span 1;
    }
}

/* ============================= */
/* LOADING BUTTON */
/* ============================= */

.btn-enviar-contato.loading {
    pointer-events: none;
    opacity: 0.8;
    position: relative;
}

/* TEXTO SOME */
.btn-enviar-contato.loading span {
    opacity: 0;
}

/* SPINNER */
.btn-enviar-contato.loading::after {
    content: "";
    width: 18px;
    height: 18px;
    border: 3px solid #000;
    border-top: 3px solid transparent;
    border-radius: 50%;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/*POPUP*/

/* OVERLAY */
.popup-sucesso {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.7);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}

/* BOX */
.popup-box {
    background: #fff;
    padding: 35px 30px;
    border-radius: 18px;
    text-align: center;
    max-width: 380px;
    width: 90%;

    animation: popupFade 0.4s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* CHECK */
.check-container {
    margin-bottom: 15px;
}

.checkmark {
    width: 70px;
    height: 70px;
    display: block;
    margin: 0 auto;
}

.checkmark-circle {
    stroke: #22c55e;
    stroke-width: 3;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: strokeCircle 0.6s ease forwards;
}

.checkmark-check {
    stroke: #22c55e;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: strokeCheck 0.4s 0.6s ease forwards;
}

/* TEXTOS */
.popup-box h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.popup-box p {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
}

/* BOTÃO */
.popup-box button {
    background: #facc15;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.popup-box button:hover {
    transform: scale(1.05);
}

/* ANIMAÇÕES */
@keyframes strokeCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes strokeCheck {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes popupFade {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/*CONTATO*/
.contato-full {
    padding: 100px 20px;
    background: #020617;
    color: #fff;
    text-align: center;
}

.contato-title {
    font-size: 36px;
    margin-bottom: 10px;
}

.contato-sub {
    color: #94a3b8;
    margin-bottom: 50px;
}

/* GRID */
.contato-grid {
    display: flex;
    gap: 40px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

/* INFO */
.contato-info {
    flex: 1;
    min-width: 300px;
    background: #0f172a;
    padding: 30px;
    border-radius: 20px;
    text-align: left;
}

/* ITEM */
.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    margin-bottom: 5px;
    color: #facc15;
}

.info-item p{
    text-align: left;
}

/* SOCIAL */
.social {
    margin-top: 20px;
}

.social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 10px;
    background: #1e293b;
    padding: 5px;
    border-radius: 100px;
    transition: 0.3s;
}

.siga-nos {
    color: #facc15;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.social a img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.social a:hover {
    background: #facc15;
    color: #000;
    transform: translateY(-3px);
}


/* MAPA */
.contato-mapa {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.contato-mapa iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
}

.contato-mapa iframe {
    transition: 0.4s;
}

.contato-mapa:hover iframe {
    transform: scale(1.03);
}

.link-contato {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.link-contato:hover {
    color: #facc15;
}



/* RESPONSIVO */
@media (max-width: 900px) {
    .contato-grid {
        flex-direction: column;
    }
}


/* WHATSAPP */
.zap-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
}

.zap-btn img {
    width: 60px;
    animation: pulse 2s infinite;
}

.zap-btn img:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ANIMAÇÃO */
@keyframes leftFade {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVO */
@media(max-width: 900px) {

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .grid {
        grid-template-columns: 1fr 1fr;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

}

/* ESTADO INICIAL (ESCONDIDO) */
.hidden-left,
.hidden-right,
.hidden-bottom {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* DIREÇÕES EFEITOS */
.hidden-left {
    transform: translateX(-60px);
}

.hidden-right {
    transform: translateX(60px);
}

.hidden-bottom {
    transform: translateY(60px);
}

/* QUANDO APARECE */
.show {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.card:nth-child(1) { transition-delay: 0.1s; }
.card:nth-child(2) { transition-delay: 0.2s; }
.card:nth-child(3) { transition-delay: 0.3s; }
.card:nth-child(4) { transition-delay: 0.4s; }

/*cookies*/

#cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #020617;
    color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

#cookie-banner button {
    background: #facc15;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
}

h1 {
    font-size: clamp(28px, 5vw, 48px);
}

h2 {
    font-size: clamp(22px, 4vw, 36px);
    text-align: center;
}

h1, h2 {
    word-break: break-word;
}