:root {
    --ara-green: #063A27;
    --ara-green-dark: #032115;
    --ind-yellow: #FFB81C; /* Industrial/Caterpillar Yellow */
    --ind-yellow-hover: #E5A110;
    --carbon: #1A1A1A;
    --carbon-light: #2C2C2C;
    --gray-bg: #F4F5F7;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--carbon);
    background-color: var(--gray-bg);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

/* Header */
.header {
    background-color: var(--ara-green);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-bottom: 3px solid var(--ind-yellow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-group {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 1.1;
    color: var(--white);
}

.logo-group span {
    color: var(--ind-yellow);
}

.logo-group small {
    font-size: 14px;
    font-weight: 400;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--border-color);
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--ind-yellow);
}

.btn-whatsapp-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    transition: background 0.2s;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.btn-whatsapp-header:hover {
    background-color: #20BA56;
}

/* ═══════════════════════════════════════════════════════
   HERO — Magistral Full-Bleed Cinematic
   ═══════════════════════════════════════════════════════ */

/* Keyframe animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.6); opacity: 0.4; }
}
@keyframes scroll-drop {
    0%   { transform: translateY(0);  opacity: 1; }
    80%  { transform: translateY(18px); opacity: 0; }
    100% { transform: translateY(0);  opacity: 0; }
}
@keyframes spec-slide {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero {
    position: relative;
    width: 100%;
    height: 100dvh;       /* use dvh so it accounts for mobile address bar */
    max-height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ── Background image (the machine, full-bleed) ── */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;  /* keep machine on right half */
    display: block;
}

/* Smart overlay:
   Left side almost opaque dark-green → right side transparent
   Machine on right is 100% visible. Text on left is readable. */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(2, 22, 13, 0.97) 0%,
        rgba(3, 33, 21, 0.92) 30%,
        rgba(6, 58, 39, 0.60) 55%,
        rgba(6, 58, 39, 0.10) 75%,
        rgba(0,0,0,0) 100%
    );
}

/* Bottom vignette for depth */
.hero-fade-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(2,12,8,0.7) 0%, transparent 100%);
    z-index: 1;
}

/* ── Diagonal yellow accent bar ── */
.hero-accent-bar {
    position: absolute;
    top: 0; left: 0;
    width: 8px;
    height: 100%;
    background: var(--ind-yellow);
    z-index: 3;
}

/* ── Content container ── */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    width: 55%;          /* never wider than 55% of screen */
    padding: 0 50px 0 70px;
    display: flex;
    flex-direction: column;
    gap: 16px;           /* tighter vertical rhythm */
}

/* ── Top badge tag ── */
.hero-top-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 184, 28, 0.12);
    border: 1px solid rgba(255, 184, 28, 0.4);
    padding: 8px 16px;
    color: var(--ind-yellow);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: fit-content;
    animation: fadeInLeft 0.7s ease both;
    animation-delay: 0.1s;
}
.hero-tag-dot {
    width: 8px; height: 8px;
    background: var(--ind-yellow);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

/* ── Main Headline ── */
.hero-title {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0;
    animation: fadeInLeft 0.7s ease both;
    animation-delay: 0.25s;
}
.hero-title-line1 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(14px, 1.8vw, 26px);
    color: rgba(255,255,255,0.75);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.hero-title-line2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(32px, 5.5vw, 80px);
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: 2px;
}
.hero-title-accent {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(42px, 7vw, 100px);
    color: var(--ind-yellow);
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -2px;
    -webkit-text-stroke: 2px var(--ind-yellow);
}
.hero-accent-peru { display: block; }

/* ── Subtitle ── */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    animation: fadeInLeft 0.7s ease both;
    animation-delay: 0.4s;
}

/* ── CTA Buttons ── */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 0.7s ease both;
    animation-delay: 0.55s;
}
.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 20px;
    padding: 16px 34px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
}
.hero-cta-primary:hover {
    background: #1fb558;
    transform: translateY(-2px);
}
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    padding: 12px 24px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.hero-cta-secondary:hover {
    border-color: var(--ind-yellow);
    background: rgba(255,184,28,0.08);
}

/* ── Animated Stats ── */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.15);
    animation: fadeInUp 0.7s ease both;
    animation-delay: 0.7s;
}
.hero-stat { text-align: left; }
.hero-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--ind-yellow);
    line-height: 1;
}
.hero-stat-num::after { content: '+'; font-size: 22px; }
.hero-stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hero-stat-sep {
    width: 1px; height: 45px;
    background: rgba(255,255,255,0.2);
}

/* ── Floating spec tags (right side) ── */
.hero-spec-tags {
    position: absolute;
    right: 40px;
    bottom: 120px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.spec-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(6, 58, 39, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 184, 28, 0.35);
    border-left: 4px solid var(--ind-yellow);
    padding: 12px 18px;
    color: var(--white);
    animation: spec-slide 0.7s ease both;
    min-width: 220px;
}
.spec-tag:first-child { animation-delay: 0.9s; }
.spec-tag:last-child  { animation-delay: 1.1s; }
.spec-tag-icon { font-size: 24px; }
.spec-tag-title {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--white);
}
.spec-tag-sub {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--ind-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Scroll hint ── */
.hero-scroll-hint {
    position: absolute;
    bottom: 35px;
    left: 80px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.45);
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px; height: 50px;
    background: rgba(255, 184, 28, 0.5);
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: var(--ind-yellow);
    animation: scroll-drop 1.8s ease-in-out infinite;
}

/* ── GUARANTEES (keep from before) ── */


.guarantees {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.guarantees-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
}

.g-icon {
    color: var(--ara-green);
}

.g-text h3 {
    font-size: 18px;
    margin-bottom: 2px;
    color: var(--carbon);
}

.g-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.g-divider {
    width: 2px;
    height: 40px;
    background-color: var(--border-color);
}

@media (max-width: 900px) {
    .g-divider { display: none; }
}

/* Fleet Catalog */
.fleet {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.fleet-header {
    background-color: var(--ara-green);
    color: var(--white);
    padding: 15px 30px;
    margin-bottom: 30px;
    border-left: 10px solid var(--ind-yellow);
    display: inline-block;
}

.mt-large {
    margin-top: 60px;
}

.fleet-category-title {
    font-size: 32px;
    letter-spacing: 2px;
}

.fleet-grid {
    display: grid;
    gap: 20px;
}

.grid-5 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 800px;
}

.machine-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.machine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--ara-green);
}

.mc-brand {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--carbon);
    color: var(--ind-yellow);
    font-family: var(--font-heading);
    padding: 2px 8px;
    font-size: 14px;
    z-index: 2;
}

.mc-model {
    text-align: center;
    font-size: 36px;
    color: var(--ara-green);
    margin-top: 30px;
    margin-bottom: 10px;
    line-height: 1;
}

.mc-image-placeholder {
    height: 160px;
    background-color: #E8EBEA;
    margin: 0 15px;
    position: relative;
    border-bottom: 2px solid var(--ind-yellow);
    overflow: hidden;
}

.mc-image-placeholder.retro {
    height: 200px;
}

.mc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.machine-card:hover .mc-image {
    transform: scale(1.08);
}

.img-mockup {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    opacity: 0.2;
}

.mc-specs {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 20px;
    padding: 15px 0;
    color: var(--carbon-light);
}

.mc-price {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--carbon);
    margin-bottom: 20px;
    padding: 0 10px;
    background-color: var(--ara-green);
    color: white;
    padding: 10px 0;
}

.mc-currency {
    font-size: 16px;
    vertical-align: super;
}

.mc-tax {
    font-size: 14px;
    color: var(--ind-yellow);
}

.btn-quote {
    display: block;
    text-align: center;
    background-color: #25D366;
    color: white;
    font-family: var(--font-heading);
    font-size: 20px;
    padding: 15px 0;
    transition: background 0.2s;
    margin-top: auto;
}

.btn-quote:hover {
    background-color: #128C7E;
}

.btn-detail {
    display: block;
    width: calc(100% - 20px);
    margin: 0 10px 8px;
    text-align: center;
    background-color: var(--ara-green);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 16px;
    padding: 10px 0;
    border: 2px solid var(--ind-yellow);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 1px;
}

.btn-detail:hover {
    background-color: var(--ind-yellow);
    color: var(--carbon);
}

/* Contact Massive */
.contact-massive {
    background-color: var(--ara-green-dark);
    color: var(--white);
    padding: 60px 20px;
    border-top: 5px solid var(--ind-yellow);
    position: relative;
}

.cm-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    text-align: left;
}

.cm-info-col {
    flex: 1;
    min-width: 280px;
}

.cm-info-col h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 10px;
}

.cm-info-col p {
    font-size: 24px;
    color: var(--border-color);
    margin-bottom: 40px;
}

.cm-form-col {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.06);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.cm-form-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--ind-yellow);
    margin-bottom: 20px;
    text-align: center;
}

.cm-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.cm-form-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.cm-form-input::placeholder {
    color: rgba(255,255,255,0.45);
}

.cm-form-input:focus {
    border-color: var(--ind-yellow);
    background: rgba(255,255,255,0.12);
}

.cm-form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    resize: vertical;
    margin-bottom: 16px;
    box-sizing: border-box;
    transition: border-color 0.2s, background 0.2s;
}

.cm-form-textarea::placeholder {
    color: rgba(255,255,255,0.45);
}

.cm-form-textarea:focus {
    border-color: var(--ind-yellow);
    background: rgba(255,255,255,0.12);
}

.cm-form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: var(--ind-yellow);
    color: var(--ara-green-dark);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.cm-form-btn:hover {
    background: var(--ind-yellow-hover);
    transform: translateY(-1px);
}

.cm-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: var(--white);
    color: var(--ara-green-dark);
    padding: 20px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.2s;
    margin-bottom: 50px;
}

.cm-whatsapp-btn:hover {
    transform: scale(1.05);
}

.cm-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 18px;
    color: var(--border-color);
}

.cm-detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Main Footer */
.site-footer {
    background-color: #0f1a13;
    padding: 16px 20px;
    border-top: 4px solid var(--ind-yellow);
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom p {
    margin-bottom: 2px;
}

/* Float WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    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: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Logo Image */
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* ── Brands Section ── */
.brands-section {
    background-color: var(--white);
    padding: 50px 20px;
    border-bottom: 1px solid var(--border-color);
}
.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.brands-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--carbon);
    margin-bottom: 10px;
}
.brands-sub {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}
.brands-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.brand-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 200px;
    transition: box-shadow 0.2s, transform 0.2s;
    background: var(--white);
}
.brand-logo-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.brand-logo-img {
    height: 90px;
    width: auto;
    max-width: 260px;
    display: block;
    object-fit: contain;
}
.brand-logo-svg {
    height: 50px;
    width: auto;
    display: block;
}
.brand-logo-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ── Testimonials Section ── */
.testimonials-section {
    background-color: var(--gray-bg);
    padding: 70px 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.testimonials-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--ara-green-dark);
    margin-bottom: 10px;
}
.testimonials-sub {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}
.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.testimonial-card {
    background: var(--white);
    border-radius: 10px;
    padding: 35px 30px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    text-align: left;
    border-top: 4px solid var(--ind-yellow);
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}
.testimonial-stars {
    color: var(--ind-yellow);
    font-size: 18px;
    margin-bottom: 12px;
}
.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--ara-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 18px;
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--carbon);
}
.testimonial-company {
    font-size: 12px;
    color: #888;
}

/* ── Mid-page CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, var(--ara-green-dark) 0%, var(--ara-green) 100%);
    padding: 60px 20px;
    text-align: center;
    border-top: 4px solid var(--ind-yellow);
    border-bottom: 4px solid var(--ind-yellow);
}
.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
}
.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--white);
    margin-bottom: 10px;
}
.cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}
.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--ind-yellow);
    color: var(--ara-green-dark);
    font-family: var(--font-heading);
    font-size: 22px;
    padding: 16px 40px;
    border-radius: 50px;
    transition: transform 0.2s, background 0.2s;
}
.cta-banner-btn:hover {
    background-color: var(--ind-yellow-hover);
    transform: scale(1.05);
}

/* SEO FAQ Section */
.seo-faq {
    background-color: var(--white);
    padding: 60px 20px;
    border-top: 1px solid var(--border-color);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-title {
    font-size: 32px;
    color: var(--ara-green-dark);
    margin-bottom: 40px;
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
    background-color: var(--gray-bg);
    padding: 25px;
    border-left: 5px solid var(--ind-yellow);
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 22px;
    color: var(--carbon);
    margin-bottom: 15px;
    text-transform: none; /* Make questions more readable */
}

.faq-item p {
    font-size: 16px;
    color: var(--carbon-light);
    line-height: 1.6;
}

.faq-item strong {
    color: var(--ara-green);
}

/* ═══════════════════════════════════════════════
   MODAL — Ficha de Producto
   ═══════════════════════════════════════════════ */

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--white);
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    border-radius: 8px;
    overflow-y: auto;
    display: flex;
    flex-direction: row;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: var(--carbon);
    color: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: var(--ara-green);
}

/* ── Left: Gallery ── */
.modal-gallery {
    flex: 0 0 420px;
    background: var(--gray-bg);
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.modal-gallery-main {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    background: var(--white);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.modal-gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.modal-gallery-thumb {
    width: 70px;
    height: 52px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    transition: border-color 0.2s;
    background: var(--white);
}

.modal-gallery-thumb:hover,
.modal-gallery-thumb.active {
    border-color: var(--ind-yellow);
}

/* ── Right: Info ── */
.modal-info {
    flex: 1;
    padding: 30px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.modal-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
}

.modal-brand {
    font-family: var(--font-heading);
    font-size: 14px;
    background: var(--carbon);
    color: var(--ind-yellow);
    padding: 2px 10px;
    letter-spacing: 1px;
}

.modal-model {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--ara-green);
    margin: 0;
    line-height: 1;
}

.modal-tag {
    font-family: var(--font-body);
    font-size: 13px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-desc {
    font-size: 15px;
    color: var(--carbon-light);
    line-height: 1.6;
    margin: 0;
}

.modal-price-box {
    background: var(--ara-green);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 36px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    width: fit-content;
}

.modal-price-currency {
    font-size: 18px;
}

.modal-price-tax {
    font-size: 14px;
    color: var(--ind-yellow);
    font-weight: 400;
}

/* ── Specs Table ── */
.modal-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
    background: var(--gray-bg);
    padding: 16px 20px;
    border-left: 4px solid var(--ind-yellow);
}

.modal-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.modal-spec-item:last-child,
.modal-spec-item:nth-last-child(2) {
    border-bottom: none;
}

.modal-spec-label {
    color: #888;
    font-weight: 500;
}

.modal-spec-value {
    font-weight: 700;
    color: var(--carbon);
}

/* ── Features ── */
.modal-features {
    padding: 0;
    margin: 0;
}

.modal-features-title {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--ara-green);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.modal-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-features-list li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 14px;
    color: var(--carbon-light);
}

.modal-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--ind-yellow);
    border-radius: 50%;
}

/* ── Download Section ── */
.modal-download {
    background: var(--gray-bg);
    padding: 20px;
    border-radius: 4px;
    border: 1px dashed var(--border-color);
}

.modal-download-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--ara-green);
    margin: 0 0 4px;
    letter-spacing: 1px;
}

.modal-download-sub {
    font-size: 13px;
    color: #888;
    margin: 0 0 14px;
}

.download-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    min-width: 0;
}

.form-input:focus {
    border-color: var(--ara-green);
    box-shadow: 0 0 0 2px rgba(6,58,39,0.1);
}

.btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--ara-green);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    letter-spacing: 1px;
}

.btn-download:hover:not(:disabled) {
    background: var(--ara-green-dark);
}

.btn-download:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-download.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* ── WhatsApp CTA ── */
.btn-modal-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 22px;
    padding: 16px;
    border-radius: 4px;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    letter-spacing: 1px;
    margin-top: auto;
}

.btn-modal-whatsapp:hover {
    background: #1fb558;
    transform: translateY(-2px);
    color: var(--white);
}

/* ── Scrollbar modal ── */
.modal-container::-webkit-scrollbar {
    width: 6px;
}

.modal-container::-webkit-scrollbar-track {
    background: var(--gray-bg);
}

.modal-container::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Large desktop tweak */
@media (max-width: 1280px) {
    .hero-spec-tags { right: 20px; }
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        padding: 100px 50px 80px 60px;
        max-width: 540px;
    }
    .hero-spec-tags {
        right: 16px;
        bottom: 100px;
    }
    .spec-tag { min-width: 180px; }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-list { display: none; }

    .btn-whatsapp-header {
        padding: 6px 10px;
        font-size: 11px;
        gap: 6px;
    }
    .btn-whatsapp-header svg {
        width: 16px;
        height: 16px;
    }
    .hero-content {
        padding: 16px 12px 12px 12px;
        max-width: 100%;
        gap: 4px;
    }

    .hero-top-tag {
        font-size: 9px;
        padding: 4px 10px;
        gap: 6px;
        letter-spacing: 1px;
    }
    .hero-tag-dot { width: 5px; height: 5px; }

    .guarantees { 
        margin-top: 0; 
    }
    
    .guarantees-container {
        padding: 15px 10px;
        gap: 12px;
        justify-content: center;
    }
    
    .guarantee-item {
        min-width: 45%;
        flex: 1 1 45%;
        gap: 6px;
        flex-direction: column;
        text-align: center;
    }

    .g-icon svg {
        width: 26px;
        height: 26px;
    }

    .g-text h3 {
        font-size: 11px;
        margin-bottom: 0;
    }

    .g-text p {
        font-size: 10px;
    }

    /* On small screens push spec tags below the fold / hide */
    .hero-spec-tags { display: none; }

    .hero-scroll-hint { left: 36px; }

    .hero-title-line1 { font-size: 16px; letter-spacing: 3px; }
    .hero-title-line2 { font-size: 32px; }
    .hero-title-accent { font-size: 36px; }
    .hero-accent-peru { padding-top: 4px; }

    .hero-subtitle { font-size: 14px; }

    .hero-cta-group { flex-wrap: wrap; }
    .hero-cta-primary { font-size: 12px; padding: 6px 12px; box-shadow: none; }
    .hero-cta-secondary { font-size: 11px; padding: 8px 14px; }

    .hero-stat-num { font-size: 14px; }
    .hero-stats { gap: 4px; padding-top: 4px; }
    .hero-stat-label { font-size: 8px; }
    .hero-stat-sep { height: 24px; }

    /* Contact section — mobile */
    .contact-massive {
        padding: 40px 16px 50px;
    }

    .cm-content {
        flex-direction: column;   /* stack info col + form col vertically */
        gap: 32px;
        text-align: center;
    }

    .cm-info-col {
        min-width: 0;
        width: 100%;
    }

    .cm-info-col h2 {
        font-size: 30px;
        margin-bottom: 6px;
    }

    .cm-info-col p {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .cm-whatsapp-btn {
        font-size: 20px;
        padding: 14px 20px;
        width: 100%;
        justify-content: center;
        border-radius: 6px;
    }

    .cm-details {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        font-size: 13px;
        margin-top: 20px;
    }

    .cm-form-col {
        min-width: 0;
        width: 100%;
        padding: 20px 16px;
    }

    .cm-form-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    /* Stack each row to single column on mobile */
    .cm-form-row {
        flex-direction: column;
        gap: 10px;
    }

    .cm-form-input {
        width: 100%;
        font-size: 15px;
        padding: 12px 14px;
    }

    .cm-form-textarea {
        font-size: 15px;
    }


    /* Fleet grid on mobile */
    .fleet { margin: 20px auto; }
    .grid-5 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }

    /* Modal mobile */
    .modal-container {
        flex-direction: column;
        max-height: 85vh;
    }

    .modal-gallery {
        flex: none;
        padding: 12px;
    }

    .modal-gallery-main {
        aspect-ratio: 16/9;
    }

    .modal-info {
        padding: 20px;
    }

    .modal-model {
        font-size: 26px;
    }

    .modal-price-box {
        font-size: 28px;
        padding: 10px 16px;
    }

    .modal-specs {
        grid-template-columns: 1fr;
        padding: 12px 16px;
    }

    .modal-spec-item:nth-last-child(2) {
        border-bottom: 1px solid var(--border-color);
    }

    .form-row {
        flex-direction: column;
    }

    .btn-modal-whatsapp {
        font-size: 18px;
        padding: 14px;
    }

    /* New sections mobile */
    .brands-logos { 
        gap: 15px; 
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }
    .brands-logos::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    .brand-logo-item { 
        min-width: 200px; 
        flex: 0 0 auto;
        scroll-snap-align: center;
        padding: 15px 20px; 
    }
    .brand-logo-text { font-size: 22px; }
    .brands-title { font-size: 22px; }


    .testimonials-grid { flex-direction: column; align-items: center; }
    .testimonial-card { max-width: 100%; min-width: 0; }
    .testimonials-title { font-size: 26px; }

    .cta-banner h2 { font-size: 28px; }
    .cta-banner p { font-size: 15px; }
    .cta-banner-btn { font-size: 18px; padding: 14px 28px; }

    /* Contact form mobile */
    .cm-content { flex-direction: column; gap: 30px; text-align: center; }
    .cm-info-col { text-align: center; }
    .cm-info-col h2 { font-size: 32px; }
    .cm-info-col p { font-size: 18px; }
    .cm-whatsapp-btn { margin-left: auto; margin-right: auto; }
    .cm-details { align-items: center; }
    .cm-form-row { flex-direction: column; gap: 0; }
    .cm-form-col { padding: 20px; }

}

/* Very small screens */
@media (max-width: 420px) {
    .hero-title-accent { font-size: 52px; }
    .hero-title-line2  { font-size: 38px; }
    .grid-5 { grid-template-columns: 1fr; }
}