/* ============================================================
   Gapski Elétrica — styles.css
   Versão: 20260526
   ============================================================ */

:root {
    --black: #000000;
    --black-light: #111111;
    --yellow: #FFF35A;
    --yellow-hover: #e6da51;
    --white: #FFFFFF;
    --grey: #CCCCCC;
    --bg-light: #F4F4F6;
    --radius: 12px;
    --transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3 {
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================================
   SKIP LINK (acessibilidade)
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--yellow);
    color: var(--black);
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--black);
    outline-offset: 2px;
}

/* ============================================================
   FOCO VISÍVEL
   ============================================================ */
:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* ============================================================
   ÍCONES SVG INLINE
   ============================================================ */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

.icon-sm svg {
    width: 14px;
    height: 14px;
}

.icon-md svg {
    width: 20px;
    height: 20px;
}

.icon-whatsapp svg {
    width: 22px;
    height: 22px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.3333%);
    }
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   BUTTON
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    min-height: 44px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
    white-space: normal;
}

.btn-primary {
    background-color: var(--yellow);
    color: var(--black);
}

.btn-primary:hover {
    background-color: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 243, 90, 0.4);
}

.btn-primary:focus-visible {
    outline: 3px solid var(--black);
    outline-offset: 3px;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: transparent;
    transition: background-color 0.4s ease, padding 0.4s ease,
        backdrop-filter 0.4s ease, box-shadow 0.4s ease;
    padding: 30px 0;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 35px;
    width: auto;
    display: block;
}

.nav-menu ul {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.nav-menu a:hover {
    color: var(--yellow);
    opacity: 0.8;
}

.nav-menu a:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-toggle:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}

.mobile-toggle svg {
    width: 26px;
    height: 26px;
    display: block;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: 180px 0 100px;
    color: var(--white);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/herobackground.webp');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero-content>* {
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-text-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--yellow);
    border: 1px solid var(--yellow);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    animation-delay: 0.1s;
}

.hero h1 {
    font-size: 54px;
    margin-bottom: 20px;
    animation-delay: 0.2s;
}

.hero p {
    font-size: 18px;
    color: var(--grey);
    margin-bottom: 35px;
    animation-delay: 0.3s;
    max-width: 500px;
}

.hero .btn {
    animation-delay: 0.4s;
}

.hero-features {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    animation-delay: 0.5s;
    flex-wrap: wrap;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--grey);
    font-weight: 500;
}

.hero-features .icon {
    color: var(--yellow);
}

/* ============================================================
   SERVICE TAPE
   ============================================================ */
.service-tape {
    background-color: var(--black);
    color: var(--white);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    border-bottom: 1px solid #222;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.service-tape:hover .tape-content {
    animation-play-state: paused;
}

.tape-content {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    animation: scroll 50s linear infinite;
    padding-left: 80px;
}

.tape-content span {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tape-content .icon {
    color: var(--yellow);
}

/* ============================================================
   UTILITY
   ============================================================ */
.mt-20 {
    margin-top: 20px;
}

/* ============================================================
   AUTHORITY
   ============================================================ */
.authority {
    background: var(--white);
}

.auth-claim {
    text-align: center;
    font-size: 15px;
    color: #555;
    font-weight: 500;
    margin-bottom: 35px;
    letter-spacing: 0.2px;
}

.auth-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.auth-box {
    display: flex;
    align-items: center;
}

.auth-box img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.text-auth {
    font-size: 14px;
    line-height: 1.4;
    border-left: 2px solid var(--yellow);
    padding-left: 15px;
}

.auth-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.auth-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.auth-gallery img:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 243, 90, 0.8);
    box-shadow: 0 15px 35px rgba(255, 243, 90, 0.15);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services.section-padding {
    padding: 100px 0;
}

.services-heading {
    text-align: center;
    margin-bottom: 40px;
}

.services-heading h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.services-heading p {
    font-size: 16px;
    color: #555;
}

.services-card-dark {
    background: linear-gradient(135deg, #0e0e0e 0%, #151515 100%);
    border: 1px solid rgba(255, 243, 90, 0.05);
    border-radius: 24px;
    padding: 60px;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.services-list-container {
    display: flex;
    gap: 30px;
}

.services-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-col:first-child {
    padding-right: 0;
}

.services-col:last-child {
    padding-left: 0;
}

.services-separator {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 243, 90, 0.15), transparent);
    margin: 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 243, 90, 0.03) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 243, 90, 0.3);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item.no-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.service-item .s-icon {
    color: var(--yellow);
    background: rgba(255, 243, 90, 0.08);
    border: 1px solid rgba(255, 243, 90, 0.15);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.service-item:hover .s-icon {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 0 15px rgba(255, 243, 90, 0.5);
    transform: scale(1.05);
}

.service-item span {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    z-index: 1;
}

.center-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================================
   FEATURE SECTIONS (Automação, Carregador)
   ============================================================ */
.feature-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.feature-container.reverse {
    flex-direction: row-reverse;
}

.ev-container {
    align-items: center;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.ev-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.img-caption {
    font-size: 13px;
    color: #555;
    text-align: center;
    margin-top: 15px;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.feature-text .subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Benefit list (Automação) */
.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.benefit-list .b-icon {
    color: var(--black);
    background: var(--yellow);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 243, 90, 0.2);
}

.benefit-list .b-icon svg {
    width: 20px;
    height: 20px;
}

.benefit-list li div strong {
    display: block;
    margin-bottom: 3px;
    font-size: 16px;
    color: var(--black);
}

.benefit-list li div {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.benefit-list li:hover .b-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 4px 15px rgba(255, 243, 90, 0.4);
}

/* EV list (Carregador) */
.ev-list {
    margin-top: 30px;
}

.ev-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 0;
    border-top: 1px solid #eee;
    color: var(--black);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ev-list li:last-child {
    border-bottom: 1px solid #eee;
}

.ev-list li:hover {
    padding-left: 6px;
}

.ev-list .ev-icon {
    color: var(--black);
    background: var(--yellow);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 243, 90, 0.2);
}

.ev-list .ev-icon svg {
    width: 20px;
    height: 20px;
}

.ev-list li:hover .ev-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 4px 15px rgba(255, 243, 90, 0.4);
}

.cta-container {
    margin-top: 60px;
}

.dark-cta-box-full {
    background: var(--black-light);
    border-radius: var(--radius);
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.dark-cta-box-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.dark-cta-box-full p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
}

.dark-cta-box-full .btn {
    padding: 16px 36px;
    font-size: 16px;
}

/* ============================================================
   QUADROS
   ============================================================ */
.quadros {
    position: relative;
    padding: 160px 0;
    color: var(--white);
}

.quadros-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/quadrosbackground.webp');
    background-size: cover;
    background-position: center;
}

.quadros-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

.quadros-content {
    position: relative;
    z-index: 2;
}

.q-text-box {
    max-width: 650px;
}

.q-tag {
    display: inline-block;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.q-text-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.q-text-box p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 500px;
}

/* ============================================================
   PROJETOS
   ============================================================ */
.projetos-box {
    background: var(--white);
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.projetos-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.p-title-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-right: 50px;
}

.p-icon {
    margin-bottom: 20px;
}

.p-title-area h2 {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.p-title-area p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    max-width: 280px;
}

.p-separator {
    width: 1px;
    background: #e0e0e0;
    margin: 30px 0;
}

.p-list-area {
    flex: 1.2;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p-list-area ul {
    border-top: 1px solid #e0e0e0;
}

.p-list-area li {
    font-size: 15px;
    font-weight: 600;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    color: var(--black);
    transition: all 0.3s ease;
}

.p-list-area li:hover {
    padding-left: 8px;
    color: #000;
}

.p-list-area li .check-icon {
    background-color: var(--yellow);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 243, 90, 0.3);
}

.p-list-area li .check-icon svg {
    width: 12px;
    height: 12px;
    color: var(--black);
}

.p-list-area li:hover .check-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--yellow-hover);
}

.p-cta {
    margin-top: 30px;
    text-align: center;
}

/* ============================================================
   AR CONDICIONADO
   ============================================================ */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #555;
    max-width: 560px;
    margin: -35px auto 45px;
    line-height: 1.6;
}

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

.ar-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #0d0d0d;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 243, 90, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ar-card:hover {
    border-color: rgba(255, 243, 90, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 243, 90, 0.15);
}

.ar-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    opacity: 0.9;
    transition: all 0.4s ease;
}

.ar-card:hover img {
    transform: scale(1.04);
    opacity: 0.7;
}

.ar-label {
    padding: 20px;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.ar-cta {
    margin-top: 40px;
    text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background-color: var(--black);
    color: var(--grey);
    padding: 60px 0 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
    margin-bottom: 20px;
}

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

.footer-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.f-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.f-item .icon {
    color: var(--yellow);
}

.footer-links {
    margin-top: 10px;
    font-size: 13px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-bottom {
    font-size: 13px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.developer-credit a {
    color: #007bff;
    font-weight: 500;
    transition: var(--transition);
}

.developer-credit a:hover {
    opacity: 0.8;
}

/* ============================================================
   COOKIE NOTICE
   ============================================================ */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 243, 90, 0.2);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.cookie-notice--visible {
    transform: translateY(0);
}

.cookie-notice p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    text-align: center;
}

.cookie-notice p a {
    color: var(--yellow);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-notice p a:hover {
    color: var(--white);
}

.cookie-notice-btn {
    flex-shrink: 0;
    background-color: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 50px;
    padding: 9px 24px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    min-height: 44px;
}

.cookie-notice-btn:hover {
    background-color: var(--yellow-hover);
    transform: translateY(-1px);
}

.cookie-notice-btn:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 3px;
}

@media (max-width: 600px) {
    .cookie-notice {
        flex-direction: column;
        gap: 12px;
        padding: 20px 16px;
    }

    .cookie-notice-btn {
        width: 100%;
        padding: 11px 24px;
    }
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #FFF;
    transform: scale(1.08);
}

.whatsapp-float:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 3px;
}

/* ============================================================
   RESPONSIVE — 992px
   ============================================================ */
@media (max-width: 992px) {
    header {
        padding: 20px 0;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        padding: 20px;
        flex-direction: column;
        border-top: 1px solid #333;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 44px;
    }

    .feature-container,
    .feature-container.reverse,
    .projetos-box {
        flex-direction: column;
        text-align: center;
    }

    .feature-image {
        width: 100%;
    }

    .ev-img {
        max-height: 400px;
    }

    .benefit-list li {
        text-align: left;
    }

    .ev-list li {
        text-align: left;
    }

    .dark-cta-box-full {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 25px;
    }

    .dark-cta-box-full p {
        font-size: 20px;
    }

    .projetos-box {
        padding: 50px 30px;
    }

    .p-title-area {
        padding-right: 0;
        padding-bottom: 30px;
    }

    .p-list-area {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 30px;
        width: 100%;
    }

    .ar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-heading h2 {
        font-size: 30px;
    }

    .services-card-dark {
        padding: 50px 40px;
    }

    .services-list-container {
        flex-direction: column;
        gap: 20px;
    }

    .services-col:first-child {
        padding-right: 0;
    }

    .services-col:last-child {
        padding-left: 0;
    }

    .services-separator {
        display: none;
    }

    .q-text-box h2 {
        font-size: 34px;
    }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .auth-gallery {
        grid-template-columns: 1fr;
    }

    .auth-logos {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .text-auth {
        border-left: none;
        border-top: 2px solid var(--yellow);
        padding-left: 0;
        padding-top: 15px;
    }

    .hero {
        padding: 130px 0 80px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ev-img {
        max-height: 300px;
    }

    .services-card-dark {
        padding: 40px 20px;
    }

    .service-item {
        text-align: left;
        align-items: flex-start;
    }

    .service-item .s-icon {
        margin-top: -2px;
    }

    .dark-cta-box-full {
        padding: 30px 20px;
    }

    .quadros {
        padding: 100px 0;
        text-align: center;
    }

    .q-text-box {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .q-text-box h2 {
        font-size: 28px;
    }

    .q-text-box p {
        max-width: 100%;
    }

    .projetos-box {
        padding: 40px 20px;
    }

    .p-list-area li {
        align-items: flex-start;
        text-align: left;
    }

    .p-list-area li .check-icon {
        flex-shrink: 0;
        margin-top: 2px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .services-heading h2 {
        font-size: 26px;
    }

    .services-heading p {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .footer-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-container {
        justify-content: center;
        text-align: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .feature-text h2 {
        font-size: 28px;
    }

    .feature-text .subtitle {
        font-size: 16px;
    }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
    .ar-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   RESPONSIVE — 430px
   ============================================================ */
@media (max-width: 430px) {
    .hero h1 {
        font-size: 30px;
    }

    .btn {
        font-size: 15px;
        padding: 12px 22px;
    }

    .services-card-dark {
        padding: 30px 16px;
    }

    .projetos-box {
        padding: 30px 16px;
    }

    .dark-cta-box-full {
        padding: 24px 16px;
    }
}

/* ============================================================
   RESPONSIVE — 360px
   ============================================================ */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero-text-badge {
        font-size: 11px;
    }

    .nav-menu a {
        font-size: 15px;
    }
}

/* ============================================================
   SCRIPTING DISABLED FALLBACK
   ============================================================ */
@media (scripting: none) {
    .animate-up {
        opacity: 1;
        transform: none;
    }
}

/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}