:root {
    /* Brand Colors based on the Logo */
    --primary-green: #0A4F2A; /* Deep dark green */
    --secondary-green: #2B7A4B; 
    --accent-orange: #F36621;
    --accent-yellow: #F4A81D;
    --light-green: #8DC63F;
    
    /* UI Colors */
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --dark-text: #212529;
    --gray-text: #6c757d;
    --border-color: #e9ecef;
    
    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    
    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 15px 30px rgba(10, 79, 42, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography utilities */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.section-title span {
    color: var(--accent-orange);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-orange {
    background-color: var(--accent-orange);
    color: var(--white);
}

.btn-orange:hover {
    background-color: #e05510;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.nav-cta {
    background-color: var(--accent-orange) !important;
    color: var(--white) !important;
    animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 102, 33, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(243, 102, 33, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(243, 102, 33, 0);
    }
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

/* Logo CSS construction */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-green), var(--accent-yellow), var(--accent-orange), var(--primary-green));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.logo-circle::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background-color: white;
    border-radius: 50%;
    z-index: 1;
}

.logo-text-small {
    position: relative;
    z-index: 2;
    font-size: 0.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

.logo-text-main {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-green);
}

.brand-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}
.carousel-inner {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.carousel-inner::-webkit-scrollbar {
    display: none;
}
.carousel-item {
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: start;
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    color: var(--dark-text);
    transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--accent-orange);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0;
    background-color: var(--light-bg);
    overflow: hidden;
}

/* Dynamic background shape */
.hero-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(141, 198, 63, 0.1), rgba(244, 168, 29, 0.1));
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--accent-orange);
}

.minimal-title {
    font-size: 3rem !important;
    font-weight: 500 !important;
    color: var(--dark-text) !important;
    letter-spacing: -0.5px;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
}

.highlight-next {
    font-weight: 800;
    color: var(--primary-green) !important;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.highlight-next i {
    color: var(--accent-orange);
    font-size: 2.2rem;
    transform: translateY(2px);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.badge {
    background-color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-green);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-alert {
    background-color: #fee2e2;
    color: #ef4444;
}

.hero-price {
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 20px;
    border-radius: 15px;
    color: var(--white);
    display: inline-block;
    box-shadow: var(--shadow-lg);
}

.hero-price p {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.hero-price h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin: 5px 0;
}

.hero-price h2 span {
    font-size: 1.2rem;
    font-weight: 600;
}

.promo-text {
    font-size: 1rem !important;
    color: var(--accent-yellow);
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-video-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    aspect-ratio: 16/9;
    width: 100%;
    background-color: transparent;
}

.video-splash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #052a16; /* Fixes native black background flash on mobile */
    z-index: 2;
    transition: opacity 1s ease, transform 1s ease;
}

.video-splash.fade-out {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
}

.splash-logo {
    width: 60%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e9ecef;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-placeholder::after {
    content: 'Foto da Moto (Inserir Imagem)';
    color: var(--gray-text);
    font-weight: 600;
}

.shineray-placeholder {
    background: linear-gradient(45deg, #212529, #343a40);
}
.shineray-placeholder::after { color: white; content: 'Shineray JEF 150S'; }

.honda-placeholder {
    background: linear-gradient(45deg, #dc3545, #c82333);
}
.honda-placeholder::after { color: white; content: 'Honda CG 125i Vermelha'; }

.honda160-placeholder {
    background: linear-gradient(45deg, #17a2b8, #138496);
}
.honda160-placeholder::after { color: white; content: 'Honda CG 160'; }


/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--accent-orange);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: center;
}

.plan-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.featured-plan {
    border: 2px solid var(--accent-orange);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.featured-plan:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
}

.plan-header h3 {
    font-size: 2.5rem;
    color: var(--primary-green);
    font-weight: 800;
}

.plan-header .brand {
    color: var(--gray-text);
    font-weight: 600;
}

.plan-image {
    height: 200px;
    margin-bottom: 20px;
}

.plan-image .image-placeholder {
    height: 100%;
    border-radius: 10px;
}

.plan-price {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-from {
    font-size: 0.9rem;
    color: var(--gray-text);
    display: block;
}

.plan-price h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-text);
}

.plan-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--dark-text);
}

.plan-features li i {
    color: var(--primary-green);
    margin-top: 5px;
}

.btn-plan {
    width: 100%;
    background-color: var(--light-bg);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-plan:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.featured-plan .btn-plan {
    background-color: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}

/* Coverage Pages Specifics */
.coverage-hero {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.coverage-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.coverage-hero span {
    color: var(--accent-yellow);
}

.coverage-details {
    padding: 80px 0;
    background-color: var(--white);
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.coverage-info h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.coverage-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.radius-info {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-orange);
}

.radius-info i {
    font-size: 2.5rem;
    color: var(--accent-orange);
}

.radar-map {
    width: 100%;
    aspect-ratio: 1;
    background-color: #e9ecef;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Removed the generic background dot pattern to let the map shine through */
}

.map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.radar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 79, 42, 0.2); /* Loca Next Green tint over map */
    z-index: 5;
    pointer-events: none;
}

.center-pin {
    font-size: 3rem;
    color: var(--primary-green);
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.pulse {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(243, 102, 33, 0.4);
    border-radius: 50%;
    animation: pulse-animation 2s infinite;
    z-index: 8;
    pointer-events: none;
}

@keyframes pulse-animation {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(8); opacity: 0; }
}

.seo-cities {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.seo-cities h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.city-link {
    background-color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--dark-text);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.city-link:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.city-link.highlight {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.city-link.highlight:hover {
    background-color: var(--accent-orange);
    color: var(--white);
}

.cta-coverage {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.cta-coverage h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: #052a16;
    color: var(--white);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-info p {
    color: #a0aec0;
    max-width: 300px;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.footer-links ul li {
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-contact p {
    color: #a0aec0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white) !important;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent-orange);
    color: var(--white) !important;
    transform: translateY(-3px);
}

.footer-contact i {
    color: var(--accent-orange);
}

.footer-bottom {
    background-color: #031c0e;
    padding: 20px 0;
    text-align: center;
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-plan {
        transform: none;
    }
    
    .featured-plan:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
    transition: var(--transition);
}

.floating-contact-btn:hover {
    background-color: var(--secondary-green);
    transform: translateY(-5px);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-text);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent-orange);
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.modal-header p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

.lead-form .form-group {
    margin-bottom: 15px;
}

.lead-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-text);
}

.lead-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-main);
    transition: var(--transition);
}

.lead-form input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(10, 79, 42, 0.1);
}

.form-status {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-status.success {
    color: var(--primary-green);
}

.form-status.error {
    color: #ef4444;
}

@media (max-width: 768px) {
    .floating-contact-btn {
        bottom: 80px;
        left: 20px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}
