@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&display=swap');

:root {
    --primary-red: #E21F26;
    --dark-bg: #111111;
    --topbar-accent: #333333;
    --white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    background-color: #000;
    color: var(--white);
    line-height: 1.4;
    overflow-x: hidden;
}

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

/* Top Bar */
#top-bar {
    background-color: #000000;
    height: 45px;
    z-index: 1001;
    position: relative;
    overflow: hidden;
}

#top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-right: 30px;
}

.social-icons a {
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
}

.contact-info {
    display: flex;
    height: 100%;
}

.info-block {
    display: flex;
    align-items: center;
    padding: 0 35px;
    background-color: #2a2a2a;
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transform: skew(-25deg);
    margin-right: 5px;
    height: 100%;
    transition: var(--transition);
    border-right: 2px solid #000;
}

.info-block:last-child {
    margin-right: -40px; /* Offset the skew on the last block */
    padding-right: 60px;
}

.info-block > * {
    transform: skew(25deg);
}

.info-block i {
    margin-right: 12px;
    font-size: 14px;
    color: var(--white);
    transition: var(--transition);
}

.info-block:hover {
    background-color: #1a1a1a;
}

.info-block:hover .text,
.info-block:hover i {
    color: var(--primary-red);
}

/* Header */
header {
    padding: 30px 0;
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    border-bottom: none;
}

header::before {
    display: none;
}

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

.logo img {
    height: 140px;
    width: auto;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.8));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    transition: var(--transition);
    text-shadow: 0 4px 10px rgba(0,0,0,0.9);
}

nav ul li a.active {
    color: var(--primary-red);
}

nav ul li a:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
    display: inline-block;
}

/* Hero Section Slider */
#hero {
    position: relative;
    height: 100vh;
    min-height: 1050px;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-global-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/Neon-Spotlight-2-scaled-1.webp');
    background-size: cover;
    background-position: center;
    z-index: -3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(153,0,0,0.6) 100%);
    z-index: -2;
}

.hero-slider {
    position: relative;
    width: 100%;
    flex-grow: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: static;
    gap: 20px;
    padding: 0;
}

.hero-content {
    max-width: 35%;
    flex-shrink: 0;
    z-index: 2;
    padding-left: 60px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out 0.3s;
}

.slide.active .hero-content {
    opacity: 1;
    transform: translateX(0);
}

.thin-hero-title {
    font-weight: 300 !important;
    margin-bottom: 5px !important;
}

.hero-titles h3 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    color: #ffffff;
    text-transform: uppercase;
    opacity: 0.9;
}

.hero-titles h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-titles h1 {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--white);
}

.btn-conoce {
    display: inline-flex;
    align-items: center;
    background: none;
    padding: 0;
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: var(--transition);
}

.btn-conoce .arrow {
    display: inline-block;
    margin-left: 10px;
    color: var(--primary-red);
    font-size: 20px;
    transition: var(--transition);
}

.btn-conoce:hover {
    transform: none;
}

.btn-conoce:hover .arrow {
    transform: translateX(10px);
}

.hero-truck {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%) translateX(100px);
    width: 80%;
    max-width: 1700px;
    z-index: 1;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

.slide.active .hero-truck {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.hero-truck img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

/* Barra decorativa eliminada */
.truck-graphic-edge {
    display: none;
}

/* Features Glassmorphism */
.hero-features-glass {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), #900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(226, 31, 38, 0.4);
    transition: var(--transition);
}

.feature-item:hover .icon-circle {
    transform: scale(1.1) translateY(-5px);
}

.feature-item p {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
}

.feature-clickable {
    cursor: pointer;
    transition: var(--transition);
}

.feature-clickable:hover {
    background: rgba(226, 31, 38, 0.15);
    border-radius: 12px;
}

/* Bottom Social Links - oculto */
.hero-bottom-social {
    display: none;
}

.social-links-minimal {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.social-links-minimal a {
    color: var(--white);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.6;
    transition: var(--transition);
}

.social-links-minimal a:hover {
    opacity: 1;
    color: var(--primary-red);
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float img {
    width: 35px;
}

/* Misión & Visión Section */
#mision-vision {
    background-color: #8B1426;
    padding: 130px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

#mision-vision::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.22;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

.mision-vision-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.mision {
    margin-bottom: 70px;
}

.mision h2, .vision h2 {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #ffffff;
}

.mision p, .vision p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

/* Inventario Section */
#inventario {
    background-color: #f9f9f9;
    padding: 100px 0;
    color: #333;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 900;
    color: #000;
    margin-bottom: 0;
    text-transform: none;
}

.traktos-title {
    display: block;
    font-size: 56px;
    font-weight: 300;
    color: var(--primary-red);
    margin-top: -10px;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.inventory-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.inventory-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-tag {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    padding: 15px 20px 5px;
    letter-spacing: 1px;
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.inventory-card:hover .card-image img {
    transform: scale(1.1);
}

.card-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.price-tag {
    background-color: var(--primary-red);
    color: #fff;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 900;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 13px;
    color: #666;
}

.card-features i {
    color: #999;
    margin-right: 5px;
}

.btn-card {
    display: block;
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    border-radius: 4px;
    transition: var(--transition);
    margin-top: auto;
}

.btn-card:hover {
    background-color: var(--primary-red);
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
}

.btn-pagination {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.btn-pagination:hover:not([disabled]) {
    background-color: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

.btn-pagination[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 10px;
}

.page-btn {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    padding: 5px 10px;
    transition: var(--transition);
}

.page-btn:hover, .page-btn.active {
    color: var(--primary-red);
}

.inventory-card.hidden {
    display: none !important;
}

/* Financiamiento Section */
#financiamiento {
    background-image: url('assets/Neon-Spotlight-2-scaled-1.webp');
    background-size: cover;
    background-position: center;
    padding: 120px 0 0; 
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid rgba(226, 31, 38, 0.2);
}

#financiamiento::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

#financiamiento .container {
    position: relative;
    z-index: 10;
}

.financiamiento-header {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 10;
}

.financiamiento-header p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 600;
}

.financiamiento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch;
    position: relative;
    z-index: 10;
}

.financiamiento-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    cursor: pointer;
}

.financiamiento-card:hover {
    transform: translateY(-10px);
    background: rgba(226, 31, 38, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}

.financiamiento-card h3 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    min-height: 58px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.financiamiento-card p {
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
    flex-grow: 1;
}

.btn-opciones {
    background-color: #000;
    color: #fff;
    padding: 12px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: transform 0.2s ease;
}

.btn-opciones:hover {
    transform: scale(0.95);
    background-color: #fff;
    color: #8B1426;
}

/* Interactive Road Styling */
.financiamiento-interactive-road {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    position: relative;
    height: 250px;
}

.road-line {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8B1426, #ff4d66, #8B1426, transparent);
    box-shadow: 0 0 20px #8B1426, 0 0 10px #ff4d66;
    border-radius: 50%;
}

.interactive-truck {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1); /* Spring-like animation */
    z-index: 10;
    filter: drop-shadow(0 20px 25px rgba(0,0,0,0.9));
}

/* Clean Testimonios Section */
.clean-testimonios {
    padding: 100px 0;
    background-color: #fcfcfc;
}

.clean-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.clean-section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}

.clean-section-header .accent-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    margin: 0 auto;
    border-radius: 2px;
}

.clean-testimonio-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.clean-testimonio-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 100%;
    min-height: 450px;
}

.clean-testimonio-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.visual-overlay h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.clean-testimonio-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.clean-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    position: relative;
    border-left: 4px solid var(--primary-red);
    transition: transform 0.3s ease;
}

.clean-card:hover {
    transform: translateX(10px);
}

.clean-quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: #f4f4f4;
    z-index: 1;
}

.clean-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.clean-author-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.clean-author-block img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.clean-author-info {
    display: flex;
    flex-direction: column;
}

.clean-author-info strong {
    font-size: 16px;
    color: #222;
}

.clean-author-info span {
    font-size: 13px;
    color: #888;
}

@media (max-width: 992px) {
    .testimonio-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .testimonio-cards {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .testimonio-card {
        margin-left: 0;
        padding: 30px;
    }
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: transform 0.35s ease, opacity 0.35s ease;
    transform-origin: center;
}

/* =============================================
   BREAKPOINT: LAPTOP (≤ 1280px)
   ============================================= */
@media (max-width: 1280px) {
    .container {
        max-width: 1100px;
    }
    .hero-titles h1 {
        font-size: 42px;
    }
    .hero-titles h2 {
        font-size: 34px;
    }
    .hero-truck {
        width: 60%;
        right: -3%;
    }
    .inventory-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =============================================
   BREAKPOINT: TABLET GRANDE / LAPTOP PEQUEÑO (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
    }
    .hero-titles h1 {
        font-size: 36px;
    }
    .hero-titles h2 {
        font-size: 28px;
    }
    .hero-truck {
        width: 65%;
        right: -8%;
    }
    .inventory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .financiamiento-grid {
        gap: 20px;
    }
    .financiamiento-card {
        padding: 40px 20px;
    }
    .clean-testimonio-wrapper {
        gap: 25px;
    }
}

/* Marcas Section */
#marcas {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
    overflow: hidden;
}

.marcas-header {
    margin-bottom: 50px;
}

.marcas-header h3 {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin: 0;
}

.marcas-header .red-title {
    font-size: 56px;
    font-weight: 300;
    color: var(--primary-red);
    margin: 0;
    text-transform: lowercase;
}

.marcas-slider-fullwidth {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background-color: #fafafa;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.marcas-track {
    display: flex;
    width: calc(280px * 20); /* 10 marcas * 2 bloques * 280px cada una */
    animation: scrollBrands 40s linear infinite;
}

.marca-item {
    width: 280px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 40px;
}

.marca-item img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
    filter: grayscale(0.5);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.marca-item:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-280px * 10)); /* Desplaza un bloque completo */
    }
}

/* Contacto Section Redesign */
#contacto {
    padding: 120px 0;
    background-color: #080808;
    background-image: radial-gradient(circle at 10% 20%, rgba(226, 31, 38, 0.05) 0%, transparent 40%);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.contacto-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.contacto-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Info Panel Styles */
.contacto-info-panel {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.accent-tag {
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.contacto-info-panel h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.red-text {
    color: var(--primary-red);
}

.contacto-info-panel p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    line-height: 1.6;
    max-width: 400px;
}

.quick-contact-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(226, 31, 38, 0.1);
    border: 1px solid rgba(226, 31, 38, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 20px;
}

.text-box span {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.text-box strong {
    font-size: 18px;
    color: #fff;
}

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

.social-circle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-circle:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

/* Form Card Styles */
.form-premium-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.form-header {
    margin-bottom: 35px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 800;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.input-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.input-group select option {
    background-color: #111;
    color: #fff;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.2);
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    background: rgba(226, 31, 38, 0.05);
    border-color: var(--primary-red);
}

.input-group input:focus + .input-icon,
.input-group select:focus + .input-icon {
    color: var(--primary-red);
}

.btn-submit-premium {
    width: 100%;
    background: var(--primary-red);
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(226, 31, 38, 0.2);
}

.btn-submit-premium:hover {
    background: #e60000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(226, 31, 38, 0.4);
}

.btn-submit-premium i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-submit-premium:hover i {
    transform: translateX(5px) rotate(-10deg);
}

/* Background Image Decoration */
.contacto-image {
    position: absolute;
    right: -15%;
    top: 50%;
    transform: translateY(-50%);
    width: 90%;
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
}

.contacto-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

@media (max-width: 992px) {
    .contacto-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contacto-info-panel {
        text-align: center;
        align-items: center;
    }
    .contacto-info-panel p {
        margin: 0 auto;
    }
    .quick-contact-list {
        align-items: center;
    }
    .info-social {
        justify-content: center;
    }
    .contacto-image {
        display: none;
    }
    .form-premium-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contacto-info-panel h2 {
        font-size: 32px;
    }
    .form-premium-card {
        padding: 25px 20px;
    }
}

/* Footer Section */
#footer {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.footer-cta {
    background: linear-gradient(90deg, #990000 0%, var(--primary-red) 100%);
    padding: 30px 0;
}

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

.cta-text {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-phone {
    font-size: 24px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-phone i {
    font-size: 28px;
}

.cta-social {
    display: flex;
    gap: 20px;
}

.cta-social a {
    color: #fff;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cta-social a:hover {
    transform: scale(1.2);
}

.footer-main {
    background-color: #222;
    padding: 60px 0;
    background: linear-gradient(180deg, #333 0%, #111 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

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

.footer-links-col {
    display: flex;
    flex-direction: column;
}

.footer-heading-skew {
    background: linear-gradient(90deg, var(--primary-red) 0%, #990000 100%);
    padding: 8px 30px;
    transform: skew(-20deg);
    margin-bottom: 25px;
    display: inline-block;
    border-radius: 2px;
}

.footer-heading-skew h4 {
    color: #fff;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    transform: skew(20deg);
    text-transform: none;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 11px;
    color: #777;
    letter-spacing: 1px;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
    color: #fff;
}

/* =============================================
   BREAKPOINT: TABLET / MÓVIL GRANDE (≤ 992px)
   ============================================= */
@media (max-width: 992px) {
    /* Top Bar */
    #top-bar {
        display: none;
    }

    /* Header */
    header {
        top: 0;
        padding: 12px 0;
        background: rgba(0,0,0,0.85);
        backdrop-filter: blur(10px);
        position: fixed;
    }
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .logo img {
        height: 90px;
    }

    /* Hamburger visible */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Nav mobile overlay */
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.96);
        z-index: 9999;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    nav.open {
        display: flex;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    nav ul li a {
        font-size: 24px;
        letter-spacing: 3px;
    }

    /* Hero */
    #hero {
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 0;
    }
    .hero-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 40px;
        padding-bottom: 180px;
        gap: 30px;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding-right: 0;
    }
    .hero-btns {
        display: flex;
        justify-content: center;
    }
    .hero-titles h3 {
        font-size: 16px;
    }
    .hero-titles h2 {
        font-size: 26px;
    }
    .hero-titles h1 {
        font-size: 32px;
    }
    .hero-truck {
        width: 88%;
        max-width: 500px;
        position: relative;
        transform: translateX(100px);
    }
    .slide.active .hero-truck {
        transform: translateX(0);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .hero-features-glass {
        bottom: 30px;
    }

    /* Misión/Visión */
    #mision-vision {
        padding: 80px 0;
    }
    .mision h2, .vision h2 {
        font-size: 36px;
    }
    .mision p, .vision p {
        font-size: 20px;
    }

    /* Inventario */
    .inventory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Financiamiento */
    .financiamiento-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto 50px;
    }
    .interactive-truck {
        width: 320px;
    }

    /* Testimonios */
    .clean-testimonio-wrapper {
        grid-template-columns: 1fr;
    }
    .clean-testimonio-visual {
        min-height: 300px;
    }
    .testimonio-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .testimonio-cards {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .testimonio-card {
        margin-left: 0;
        padding: 30px;
    }

    /* Contacto */
    .contacto-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        padding: 40px 20px;
    }
    .contacto-image {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }
    .contacto-form-container {
        width: 100%;
        padding-left: 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-logo {
        grid-column: span 2;
        text-align: center;
    }
}

/* =============================================
   BREAKPOINT: MÓVIL (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
    /* Header */
    header {
        padding: 10px 0;
    }
    .logo img {
        height: 70px;
    }

    /* Hero */
    #hero {
        padding-top: 100px;
        padding-bottom: 0;
    }
    .hero-container {
        padding-top: 20px;
        padding-bottom: 160px;
        gap: 15px;
    }
    .hero-content {
        padding-right: 0;
    }
    .hero-titles h2 {
        font-size: 22px;
    }
    .hero-titles h1 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    .hero-truck {
        width: 90%;
        max-width: 420px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px;
    }
    .hero-features-glass {
        position: relative;
        bottom: auto;
        margin-top: -40px;
    }

    /* Sections general */
    #mision-vision {
        padding: 60px 0;
    }
    .mision h2, .vision h2 {
        font-size: 30px;
    }
    .mision p, .vision p {
        font-size: 18px;
    }
    #inventario {
        padding: 70px 0;
    }
    .section-title h2 {
        font-size: 28px;
    }
    .traktos-title {
        font-size: 44px;
    }

    /* Inventario 1 columna */
    .inventory-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    /* Financiamiento */
    #financiamiento {
        padding: 80px 0 0;
    }
    .financiamiento-header p {
        font-size: 15px;
    }
    .interactive-truck {
        width: 260px;
    }

    /* Contacto form */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-cta-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .cta-text {
        font-size: 15px;
    }
    .cta-phone {
        font-size: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-logo {
        grid-column: span 1;
    }

    /* WhatsApp */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }

    /* Social bottom hero */
    .hero-bottom-social {
        display: none;
    }
}

/* =============================================
   BREAKPOINT: MÓVIL PEQUEÑO (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Header */
    .logo img {
        height: 60px;
    }

    /* Hero */
    #hero {
        padding-top: 90px;
    }
    .hero-container {
        padding-bottom: 140px;
        gap: 10px;
    }
    .hero-titles h3 {
        font-size: 13px;
        letter-spacing: 2px;
    }
    .hero-titles h2 {
        font-size: 18px;
    }
    .hero-titles h1 {
        font-size: 20px;
    }
    .hero-content {
        padding-right: 0;
    }
    .hero-truck {
        width: 95%;
        max-width: 360px;
    }
    .btn-conoce {
        font-size: 13px;
        padding: 12px 22px;
    }

    /* Sections */
    #mision-vision {
        padding: 50px 0;
    }
    .mision h2, .vision h2 {
        font-size: 26px;
    }
    .mision p, .vision p {
        font-size: 16px;
    }
    #inventario {
        padding: 50px 0;
    }
    .section-title h2 {
        font-size: 24px;
    }
    .traktos-title {
        font-size: 36px;
    }
    .card-image {
        height: 200px;
    }

    /* Financiamiento */
    .financiamiento-card h3 {
        font-size: 22px;
    }
    .financiamiento-card p {
        font-size: 14px;
    }

    /* Testimonios */
    .clean-card {
        padding: 25px 20px;
    }
    .clean-section-header h2 {
        font-size: 26px;
    }

    /* Marcas */
    .marcas-header h3 {
        font-size: 24px;
    }
    .marcas-header .red-title {
        font-size: 40px;
    }

    /* Contacto */
    .contacto-title-banner h2 {
        font-size: 18px;
    }
    .contacto-title-banner {
        padding: 10px 40px;
    }

    /* Footer */
    .footer-heading-skew h4 {
        font-size: 14px;
    }
    .cta-text {
        font-size: 13px;
    }
    .cta-phone {
        font-size: 18px;
    }
    .footer-cta {
        padding: 20px 0;
    }
}

/* =============================================
   TRUCK DETAIL MODAL
   ============================================= */
.truck-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.truck-modal-container {
    background: linear-gradient(160deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(226, 31, 38, 0.25);
    border-radius: 20px;
    width: 100%;
    max-width: 980px;
    max-height: 92vh;
    overflow: hidden;
    position: relative;
    transform: translateY(50px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.06);
}

.truck-modal-overlay.open .truck-modal-container {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: background 0.25s, border-color 0.25s, transform 0.3s;
    line-height: 1;
}

.modal-close-btn:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: rotate(90deg);
}

/* --- Layout --- */
.modal-body {
    display: grid;
    grid-template-columns: 55% 45%;
    height: 560px;
    max-height: 92vh;
}

/* --- Gallery (left) --- */
.modal-gallery {
    position: relative;
    background: #000;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.modal-slides-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.modal-slides-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
}

/* Nav arrows */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 36px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    line-height: 1;
}

.modal-nav:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-50%) scale(1.08);
}

.modal-prev { left: 14px; }
.modal-next { right: 14px; }

/* Dots */
.modal-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.modal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    border: none;
    padding: 0;
}

.modal-dot.active {
    background: var(--primary-red);
    transform: scale(1.4);
}

/* Slide counter */
.modal-slide-counter {
    position: absolute;
    top: 14px;
    left: 16px;
    background: rgba(0,0,0,0.55);
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 5;
    display: none;
}

.modal-slide-counter.visible {
    display: block;
}

/* --- Info Panel (right) --- */
.modal-info {
    padding: 45px 35px 35px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    border-left: 1px solid rgba(255,255,255,0.05);
}

.modal-tag-badge {
    display: inline-block;
    background: rgba(226,31,38,0.12);
    border: 1px solid rgba(226,31,38,0.35);
    color: var(--primary-red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    padding: 5px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    width: fit-content;
}

.modal-title {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.5px;
}

.modal-price-display {
    font-size: 34px;
    font-weight: 900;
    color: var(--primary-red);
    letter-spacing: -1px;
    line-height: 1;
}

/* Specs list */
.modal-specs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 16px;
    flex-grow: 1;
}

.modal-spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-spec-icon {
    width: 34px;
    height: 34px;
    background: rgba(226,31,38,0.1);
    border: 1px solid rgba(226,31,38,0.22);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 13px;
    flex-shrink: 0;
}

.modal-spec-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.modal-spec-label {
    font-size: 9px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.modal-spec-value {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
}

/* CTA button */
.modal-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, #8B0000, var(--primary-red));
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    margin-top: auto;
    box-shadow: 0 8px 25px rgba(226, 31, 38, 0.35);
}

.modal-cta-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(226, 31, 38, 0.5);
}

/* =============================================
   MODAL RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        height: auto;
        max-height: 92vh;
        overflow-y: auto;
    }
    .modal-gallery {
        border-radius: 20px 20px 0 0;
        height: 260px;
        flex-shrink: 0;
    }
    .modal-slides-wrapper,
    .modal-slide {
        height: 260px;
    }
    .modal-info {
        padding: 25px 22px 28px;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .modal-title {
        font-size: 22px;
    }
    .modal-price-display {
        font-size: 26px;
    }
    .truck-modal-container {
        max-height: 96vh;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .truck-modal-overlay {
        padding: 10px;
    }
    .modal-gallery {
        height: 220px;
    }
    .modal-slides-wrapper,
    .modal-slide {
        height: 220px;
    }
    .modal-info {
        padding: 20px 18px 24px;
    }
    .modal-nav {
        width: 38px;
        height: 38px;
        font-size: 28px;
    }
}

/* =============================================
   MARKETING MODAL STYLES
   ============================================= */
.marketing-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

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

.marketing-modal-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border: 1px solid rgba(226, 31, 38, 0.4);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0,0,0,0.8), 0 0 40px rgba(226, 31, 38, 0.2);
    padding: 40px 30px;
    text-align: center;
}

.marketing-modal-overlay.open .marketing-modal-container {
    transform: translateY(0) scale(1);
}

.marketing-icon {
    font-size: 50px;
    color: var(--primary-red);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(226, 31, 38, 0.5);
}

.marketing-modal-content h2 {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.marketing-modal-content p {
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.5;
}

.marketing-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-marketing-primary {
    background-color: var(--white);
    color: #000;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.btn-marketing-primary:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.btn-marketing-whatsapp {
    background-color: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-marketing-whatsapp:hover {
    background-color: #20ba56;
    transform: translateY(-2px);
}

/* =============================================
   MARKETING FLOATING BUTTON
   ============================================= */
.marketing-float-btn {
    position: fixed;
    bottom: 115px; /* Sits above the 60px whatsapp button (40px bottom + 60px height + 15px gap) */
    right: 40px;
    background-color: #000;
    color: #fff;
    border: 1px solid var(--primary-red);
    border-radius: 30px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    z-index: 1000;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    max-width: 280px;
    text-align: left;
    transition: var(--transition);
}

.marketing-float-btn i {
    color: var(--primary-red);
    font-size: 20px;
    flex-shrink: 0;
}

.marketing-float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(226, 31, 38, 0.4);
    background-color: #111;
}

@media (max-width: 768px) {
    .marketing-float-btn {
        bottom: 110px;
        right: 20px;
        max-width: 240px;
        font-size: 11px;
        padding: 10px 15px;
    }
    .whatsapp-float {
        right: 20px;
        bottom: 30px; /* Ensuring it's visible on mobile */
    }
}
