/* 
=========================================================
  CHEFÃO GUINCHO - STYLESHEET
  DESIGN: PREMIUM DARK MODE & SAFETY YELLOW
=========================================================
*/

/* --- Variables --- */
:root {
    --primary: #FFC700;
    --primary-hover: #E6B300;
    --primary-glow: rgba(255, 199, 0, 0.4);

    --bg-darkest: #0A0C10;
    --bg-dark: #12151C;
    --bg-card: rgba(30, 34, 45, 0.6);
    --bg-card-hover: rgba(40, 46, 60, 0.8);

    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --text-dark: #111827;

    --border-color: rgba(255, 255, 255, 0.08);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-darkest);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
}

.text-dark {
    color: var(--text-dark) !important;
}

.position-relative {
    position: relative;
}

.container-z {
    z-index: 10;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

strong {
    color: var(--primary);
    font-weight: 700;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn i {
    font-size: 1.3rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

.btn-giant {
    padding: 1.5rem 3rem;
    font-size: 1.4rem;
    border-radius: var(--radius-md);
}

.btn-gradient {
    background: linear-gradient(135deg, #FFC700, #FF9900);
    color: var(--text-dark);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 199, 0, 0.05);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1EBE5D;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo {
    height: 50px;
    width: 50px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--text-main);
    letter-spacing: 1px;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    padding-bottom: 5px;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--primary);
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/1 (1).webp') center/cover no-repeat;
    z-index: 0;
    opacity: 0.4;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 12, 16, 1) 0%, rgba(10, 12, 16, 0.8) 50%, rgba(10, 12, 16, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 700px;
    animation: slideUp 0.8s ease-out forwards;
}

.hero-video-wrapper {
    margin-bottom: 1.5rem;
    display: none;
    /* Oculto no desktop */
}

.hero-gif-video {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    object-fit: cover;
    pointer-events: none;
    /* Prevents clicking on it */
}

.badge-pulse {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 199, 0, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 var(--primary-glow);
    animation: pulsing 2s infinite;
}

.hero h1 {
    color: #fff;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #E5E7EB;
}

.hero-subtext {
    font-size: 1rem;
    font-weight: 500;
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    opacity: 0.8;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.curve-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 5;
}

.curve-bottom svg {
    width: 100%;
    height: auto;
}

/* --- Base Sections --- */
.section-padding {
    padding: 6rem 0;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.alt-bg {
    background-color: var(--bg-dark);
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.align-center {
    align-items: center;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

/* --- Glassmorphism --- */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.glass-panel-dark {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 199, 0, 0.3);
}

/* --- Intro Section --- */
.intro-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
}

.intro-img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-left: 4px solid var(--primary);
}

.exp-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.exp-text {
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.2;
    text-transform: uppercase;
}

/* --- Reasons Grid --- */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 199, 0, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 2rem;
    transition: var(--transition);
}

.reason-card:hover .reason-icon {
    background: var(--primary);
    color: var(--text-dark);
    transform: rotate(5deg) scale(1.1);
}

/* --- Vehicles Category --- */
.vehicle-list {
    margin-top: 2rem;
}

.vehicle-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.v-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.vehicle-list h4 {
    margin-bottom: 0.2rem;
    font-size: 1.3rem;
    color: #fff;
}

.vehicle-list p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.image-grid {
    position: relative;
    height: 600px;
}

.v-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    border-radius: var(--radius-md);
    z-index: 2;
    border: 5px solid var(--bg-darkest);
}

.v-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border-radius: var(--radius-md);
    z-index: 3;
    border: 5px solid var(--bg-darkest);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.aesthetic-box {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 80%;
    height: 80%;
    border: 2px dashed var(--primary);
    border-radius: var(--radius-md);
    z-index: 1;
    opacity: 0.4;
    transform: rotate(-3deg);
}

/* --- Locations --- */
.map-bg {
    position: relative;
    background: url('img/1 (4).webp') center/cover fixed;
}

.locations-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 16, 0.9);
}

.bairros-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem;
    margin-top: 3rem;
}

.bairro-zone h4 {
    color: var(--primary);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.bairro-zone p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.bairro-zone i {
    font-size: 2rem;
    color: #fff;
    opacity: 0.5;
}

/* --- Benefits --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    background: var(--bg-card);
    border: 1px solid rgba(255, 199, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, var(--primary), transparent);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon::after {
    opacity: 0.4;
    transform: rotate(90deg);
}

/* --- Massive CTA --- */
.cta-massive {
    padding: 4rem 0 8rem 0;
}

.cta-box {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 4rem;
    background: linear-gradient(135deg, rgba(30, 34, 45, 0.8), rgba(15, 17, 22, 0.9));
}

.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--primary), transparent, var(--primary));
    z-index: -1;
    border-radius: inherit;
    opacity: 0.5;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-note i {
    color: var(--primary);
}

.cta-img-wrapper {
    flex: 0 0 400px;
}

.cta-img-round {
    border-radius: 50%;
    border: 5px solid var(--primary);
    box-shadow: 0 0 50px rgba(255, 199, 0, 0.2);
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* --- FAQ --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question.active {
    color: var(--primary);
    border-bottom: 1px solid var(--border-color);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
}

/* --- Neighborhoods List Section --- */
.neighborhoods-list-section {
    padding-bottom: 8rem;
}

.neighborhoods-grid {
    column-count: 3;
    column-gap: 2rem;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.nb-item {
    break-inside: avoid;
    margin-bottom: 0.5rem;
}

.nb-item a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
    display: block;
    padding: 0.2rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nb-item a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* --- Footer --- */
.site-footer {
    background: #050608;
    padding-top: 5rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 80px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    opacity: 0.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.map-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.map-link:hover {
    text-decoration: underline;
}

.map-container {
    margin-bottom: 2rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* --- Float Action --- */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: floatAnim 3s ease-in-out infinite;
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.1);
    background: #1EBE5D;
}

/* --- Animations --- */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulsing {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 199, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 199, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 199, 0, 0);
    }
}

@keyframes floatAnim {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.float-anim {
    animation: floatAnim 6s ease-in-out infinite;
}

/* --- Responsiveness --- */
@media (max-width: 992px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
        margin-bottom: 3rem;
    }

    .experience-badge {
        right: 20px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .cta-img-wrapper {
        flex: none;
        width: 250px;
        margin: 0 auto;
    }

    .cta-note {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .neighborhoods-grid {
        column-count: 2;
    }
}

/* --- Mobile Fixed CTA --- */
.mobile-fixed-cta {
    display: none;
    /* Hidden on desktop */
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
        /* Space for fixed CTA */
    }

    .desktop-nav {
        display: none;
    }

    .hero-video-wrapper {
        display: inline-block;
        /* Exibido apenas no celular */
    }

    /* Simplified for mobile, can add hamburger later */
    .nav-btn {
        display: none;
    }

    .section-padding {
        padding: 4rem 0;
    }

    .image-grid {
        height: 400px;
    }

    .v-img-1 {
        width: 80%;
    }

    .v-img-2 {
        width: 70%;
    }

    .bairros-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    /* Show Mobile CTA only on mobile */
    .mobile-fixed-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--bg-darkest);
        padding: 10px;
        box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        gap: 10px;
        border-top: 1px solid var(--border-color);
    }

    .btn-whatsapp-mobile,
    .btn-primary-mobile {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.8rem;
        border-radius: var(--radius-sm);
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.1rem;
        color: white;
        text-decoration: none;
    }

    .btn-whatsapp-mobile {
        background-color: #25D366;
    }

    .btn-primary-mobile {
        background-color: var(--primary);
        color: var(--text-dark);
    }

    .mobile-fixed-cta svg {
        width: 20px;
        height: 20px;
    }

    .neighborhoods-grid {
        column-count: 1;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cta-box {
        padding: 1.5rem 1rem;
    }

    .btn-giant {
        padding: 1rem;
        font-size: 1.1rem;
        width: 100%;
    }

    .cta-img-wrapper {
        width: 100%;
        max-width: 200px;
    }
}