/* 
   RCAM - Dark Tech Design System 
   Version: 2.0
*/

/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Colors */
    --primary: #ff6600;
    /* Neon Orange */
    --primary-dark: #cc5200;
    --primary-glow: rgba(255, 102, 0, 0.5);

    --bg-main: #050505;
    /* Deep Black */
    --bg-secondary: #0f0f0f;
    /* Dark Gray */
    --bg-card: rgba(20, 20, 20, 0.7);

    --text-main: #ffffff;
    --text-muted: #a0a0a0;

    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(10, 10, 10, 0.85);

    /* Typography */
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* =========================================
   2. TYPOGRAPHY
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
}

.text-highlight {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.text-center {
    text-align: center;
}

/* =========================================
   3. COMPONENTS
   ========================================= */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* =========================================
   4. LAYOUT & HEADER
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    /* Refined height */
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.header.scrolled {
    height: 70px;
    background: rgba(5, 5, 5, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
    /* Reduced from 200px */
    width: auto;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 4px;
    color: var(--primary);
    font-weight: 600;
    font-family: var(--font-heading);
}

.btn-nav:hover {
    background: var(--primary);
    color: #fff;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(5, 5, 5, 0.4) 0%, rgba(5, 5, 5, 0.95) 90%);
    z-index: -1;
}

.hero-hud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 102, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 102, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

/* =========================================
   6. ABOUT SECTION
   ========================================= */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.image-frame {
    position: relative;
    padding: 20px;
}

.image-frame img {
    border-radius: 4px;
    filter: grayscale(100%) contrast(1.2);
    transition: 0.5s;
}

.image-frame:hover img {
    filter: grayscale(0%) contrast(1);
}

.frame-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    transition: 0.3s;
}

.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.image-frame:hover .frame-corner {
    width: 100%;
    height: 100%;
}

/* =========================================
   7. SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.card-features i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* =========================================
   8. CAROUSEL
   ========================================= */
.carousel-area {
    padding: 40px 0;
    background: #000;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.slide {
    width: 300px;
    height: 200px;
    margin: 0 10px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-320px * 6));
    }

    /* Adjust based on item count */
}

/* =========================================
   9. DIFFERENTIALS
   ========================================= */
.differentials {
    background: var(--bg-secondary);
}

.diff-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.diff-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.diff-item:hover {
    border-color: var(--primary);
    background: rgba(255, 102, 0, 0.05);
}

.diff-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.diff-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.diff-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   10. CONTACT SECTION
   ========================================= */
.contact {
    background: url('../img/monitoramento.jpg') no-repeat center center/cover;
    position: relative;
    padding: 100px 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.contact-box {
    position: relative;
    z-index: 1;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    overflow: hidden;
}

.contact-form-wrapper {
    padding: 50px;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 12px 0;
    background: #111;
    /* Changed from transparent to dark to fix dropdown issue */
    border: none;
    border-bottom: 1px solid #444;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.input-group input {
    background: transparent;
    /* Keep input transparent */
}

/* Fix for Select Options Visibility */
.input-group select option {
    background-color: #000 !important;
    color: #fff !important;
    padding: 10px;
}

.input-group label {
    position: absolute;
    top: 12px;
    left: 0;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.3s;
}

.input-group input:focus,
.input-group input:not(:placeholder-shown) {
    border-bottom-color: var(--primary);
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--primary);
}

.contact-info-wrapper {
    background: var(--primary);
    padding: 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-preview {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    height: 150px;
}

/* =========================================
   11. FOOTER
   ========================================= */
.footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid #222;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #222;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* =========================================
   12. MEDIA QUERIES (RESPONSIVENESS)
   ========================================= */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

    .contact-info-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        justify-content: center;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 40px;
    }

    .nav-link {
        font-size: 1.5rem;
    }


}

.input-group input:focus,
.input-group input:not(:placeholder-shown) {
    border-bottom-color: var(--primary);
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--primary);
}

.contact-info-wrapper {
    background: var(--primary);
    padding: 50px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-preview {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    height: 150px;
}

/* =========================================
   11. FOOTER
   ========================================= */
.footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid #222;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #222;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* =========================================
   12. MEDIA QUERIES (RESPONSIVENESS)
   ========================================= */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

    .contact-info-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        gap: 0;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        justify-content: center;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 40px;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        padding: 0 20px;
    }

    .diff-wrapper {
        flex-direction: column;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* =========================================
   13. UTILITY CLASSES (BOOTSTRAP-LIKE)
   ========================================= */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

/* Fix for Nav Button breaking */
.btn-nav {
    white-space: nowrap;
}

/* Fix for Mobile Landscape Hero Section */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding-top: 100px;
        /* Increase padding to clear nav */
    }

    .map-preview {
        margin-top: 20px;
        border-radius: 8px;
        overflow: hidden;
        height: 150px;
    }

    /* =========================================
   11. FOOTER
   ========================================= */
    .footer {
        background: #000;
        padding: 60px 0 20px;
        border-top: 1px solid #222;
    }

    .footer-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid #222;
    }

    .footer-logo-img {
        height: 40px;
        margin-bottom: 10px;
    }

    .footer-social {
        display: flex;
        gap: 15px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        background: #1a1a1a;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        transition: 0.3s;
    }

    .footer-social a:hover {
        background: var(--primary);
        transform: translateY(-3px);
    }

    .footer-bottom {
        text-align: center;
        color: #666;
        font-size: 0.9rem;
    }

    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: #25d366;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        z-index: 1001;
        transition: 0.3s;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    /* =========================================
   12. MEDIA QUERIES (RESPONSIVENESS)
   ========================================= */
    @media (max-width: 992px) {
        .about-grid {
            grid-template-columns: 1fr;
        }

        .contact-box {
            grid-template-columns: 1fr;
        }

        .contact-info-wrapper {
            order: -1;
        }
    }

    @media (max-width: 768px) {
        .hamburger {
            display: block;
            z-index: 1001;
        }

        .nav-menu {
            position: fixed;
            left: -100%;
            top: 0;
            gap: 0;
            flex-direction: column;
            background-color: #000;
            width: 100%;
            height: 100vh;
            text-align: center;
            transition: 0.3s;
            justify-content: center;
            z-index: 1000;
        }

        .nav-menu.active {
            left: 0;
        }

        .nav-links {
            flex-direction: column;
            gap: 40px;
        }

        .nav-link {
            font-size: 1.5rem;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero-actions {
            flex-direction: column;
            padding: 0 20px;
        }

        .diff-wrapper {
            flex-direction: column;
        }

        .footer-top {
            flex-direction: column;
            text-align: center;
            gap: 30px;
        }
    }

    /* =========================================
   13. UTILITY CLASSES (BOOTSTRAP-LIKE)
   ========================================= */
    .row {
        display: flex;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

    .col-md-6 {
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
    }

    @media (min-width: 768px) {
        .col-md-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    .d-flex {
        display: flex !important;
    }

    .align-items-center {
        align-items: center !important;
    }

    /* Fix for Nav Button breaking */
    .btn-nav {
        white-space: nowrap;
    }

    /* Fix for Mobile Landscape Hero Section */
    @media (max-height: 500px) and (orientation: landscape) {
        .hero {
            padding-top: 100px;
            /* Increase padding to clear nav */
            height: auto;
            /* Allow content to flow if it's taller than screen */
            min-height: 100vh;
        }

        .hero-content {
            padding-top: 20px;
            padding-bottom: 40px;
        }
    }

    /* =========================================
   14. LANDING PAGE SPECIFIC STYLES
   ========================================= */

    /* [FIX] 1. Responsividade e Overflow-X */
    body {
        overflow-x: hidden;
    }

    /* [FIX] 2. Hero Section Overlay fix (Mobile Landscape) */
    @media (max-width: 991px) and (orientation: landscape) {
        .hero {
            padding-top: 80px;
        }
    }

    /* [FIX] 3. Botão "Avaliação Gratuita" */
    .nav-menu .btn-nav {
        white-space: nowrap;
        font-size: 0.9rem;
    }

    /* Accordion */
    .accordion {
        max-width: 800px;
        margin: 0 auto;
    }

    .accordion-item {
        background: var(--bg-card);
        border: 1px solid var(--glass-border);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
    }

    .accordion-header {
        width: 100%;
        padding: 20px;
        background: rgba(255, 255, 255, 0.02);
        border: none;
        text-align: left;
        color: #fff;
        font-family: var(--font-heading);
        font-size: 1.1rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: 0.3s;
    }

    .accordion-header:hover {
        background: rgba(255, 102, 0, 0.1);
        color: var(--primary);
    }


}

to {
    opacity: 1;
    transform: translateY(0);
}


/* Price Cards */
.price-card {
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    position: relative;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.15);
}

.price-card.featured {
    border-color: var(--primary);
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(255, 102, 0, 0.05));
}

.price-card.featured::after {
    content: 'MAIS POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.price-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.price-value {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 5px;
}

.price-value small {
    font-size: 1rem;
    color: var(--text-muted);
}

.price-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.9rem;
    min-height: 40px;
}

.price-features {
    text-align: left;
    margin-bottom: 30px;
}

.price-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
}

.price-features i {
    color: var(--primary);
}

.setup-note {
    font-size: 0.8rem;
    color: var(--primary);
    margin-top: 15px;
    font-weight: 600;
    padding: 10px;
    border: 1px dashed var(--primary);
    border-radius: 6px;
}

/* Pain Point Section */
.pain-point-section {
    background-color: var(--bg-card);
    padding: 60px 0;
}

.pain-point-item {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

.pain-point-item.reverse {
    flex-direction: row-reverse;
}

.pain-point-content {
    flex: 1;
}

.pain-point-content h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.pain-point-visual {
    flex: 1;
}

.pain-point-visual img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid var(--glass-border);
}

/* Communication Section */
.communication-section {
    background-color: var(--bg-secondary);
    padding: 60px 0;
}

.communication-item {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

.communication-item.reverse {
    flex-direction: row-reverse;
}

.communication-content {
    flex: 1;
}

.communication-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.communication-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.communication-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.communication-visual img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 10px;
    border: 3px solid var(--glass-border);
}

@media (max-width: 768px) {

    .pain-point-item,
    .pain-point-item.reverse,
    .communication-item,
    .communication-item.reverse {
        flex-direction: column;
        text-align: center;
    }


}

/* =========================================
   15. NEW GEMINI SECTIONS (STATS & SOLUTIONS)
   ========================================= */

/* Stats Impact Section */
.stats-impact-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-secondary) 100%);
    padding: 80px 0;
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid-conversion {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item-conversion {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.stat-item-conversion:hover {
    background: rgba(255, 102, 0, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-number-large {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.stat-label-small {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Solutions Grid */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.solution-item {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.solution-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.icon-box-problem {
    font-size: 2.5rem;
    margin-bottom: 25px;
    display: inline-block;
    padding: 15px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    color: var(--primary);
}

.solution-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
}

.solution-item p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.solution-result {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.solution-result i {
    color: var(--primary);
    margin-top: 4px;
}

.solution-result p {
    margin: 0;
    font-size: 0.9rem;
    color: #ddd;
}

/* CTA Glow Button */
.btn-cta-glow {
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 102, 0, 0.7);
    }

    100% {
        box-shadow: 0 0 15px rgba(255, 102, 0, 0.4);
    }
}

/* Collaborative Teaser */
.collaborative-teaser {
    background: linear-gradient(90deg, var(--bg-secondary) 0%, #000 100%);
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-main);
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    5% {
        clip: rect(70px, 9999px, 90px, 0);
    }

    10% {
        clip: rect(40px, 9999px, 20px, 0);
    }

    15% {
        clip: rect(90px, 9999px, 10px, 0);
    }

    20% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    100% {
        clip: rect(50px, 9999px, 60px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    5% {
        clip: rect(90px, 9999px, 10px, 0);
    }

    10% {
        clip: rect(40px, 9999px, 20px, 0);
    }

    15% {
        clip: rect(70px, 9999px, 90px, 0);
    }

    20% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    100% {
        clip: rect(50px, 9999px, 60px, 0);
    }
}

/* =========================================
   16. QUICK WINS - ADDITIONAL STYLES
   ========================================= */

/* Testimonials */
.testimonials {
    background: var(--bg-main);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: 0.3s;
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.customer-visual {
    margin-bottom: 20px;
}

.customer-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 3px solid var(--primary);
    padding: 5px;
}

.customer-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #fff;
}

.customer-info {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.customer-quote {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.customer-rating {
    color: #ffcc00;
}

.customer-rating span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Global Accordion (FAQ) */
.faq-section {
    background: var(--bg-secondary);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    text-align: left;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.accordion-header:hover {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
}

.accordion-header.active::after {
    content: '-';
}

.accordion-body {
    display: none;
    padding: 20px;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    font-size: 0.95rem;
}

.accordion-body.active {
    display: block;
    animation: fadeInAccordion 0.5s;
}

@keyframes fadeInAccordion {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form UX Improvements */
.input-group {
    position: relative;
}

.validation-icon {
    position: absolute;
    right: 10px;
    top: 15px;
    font-size: 1.1rem;
}

input:valid~.validation-icon i {
    display: block !important;
}

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Urgency Badge Hero */
.urgency-badge {
    animation: flash-border 2s infinite;
}

@keyframes flash-border {
    0% {
        border-color: #FF4500;
    }

    50% {
        border-color: #fff;
    }

    100% {
        border-color: #FF4500;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
    }
}

/* Phase 2: How It Works & Plans */

.how-it-works {
    background: var(--bg-secondary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    text-align: center;
}

.process-item:hover {
    background: rgba(255, 102, 0, 0.05);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.process-item h4 {
    margin-bottom: 15px;
    color: #fff;
}

.process-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Plans Section */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.plan-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.plan-card.featured {
    border-color: var(--primary);
    background: rgba(255, 102, 0, 0.03);
    transform: scale(1.05);
    z-index: 2;
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-desc {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ddd;
}

.plan-features i {
    color: var(--primary);
}

.price-note {
    font-size: 0.8rem;
    color: #555;
    margin-top: 15px;
    text-align: center;
}

/* Team & Fleet Authority */
.authority-visual {
    background: #050505;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.authority-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- PHASE 3: TRUST & POLISH --- */

/* Trust Badges Section */
.trust-badges {
    background: rgba(10, 10, 10, 0.4);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 102, 0, 0.1);
    border-bottom: 1px solid rgba(255, 102, 0, 0.1);
    backdrop-filter: blur(10px);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #cc5200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
    animation: floatBadge 3s ease-in-out infinite;
}

.trust-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Button Glow Refinement */
.btn-glow,
.btn-cta-glow {
    position: relative;
    overflow: hidden;
    transition: 0.4s !important;
}

.btn-glow::after,
.btn-cta-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn-glow:hover,
.btn-cta-glow:hover {
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
    transform: translateY(-2px);
}

.btn-glow:hover::after,
.btn-cta-glow:hover::after {
    opacity: 1;
}

/* Form Validation UX */
.input-group input:focus {
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.1);
}

/* Hero Visual Refinement */
.hero-content .image-frame {
    animation: floatHero 5s ease-in-out infinite;
}

@keyframes floatHero {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* Form Message Feedback */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-family: var(--font-heading);
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.form-message.success {
    display: block;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.form-message.error {
    display: block;
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid #e74c3c;
    color: #e74c3c;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}