:root {
    --bg-color: #0d0d0d;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #242424;
    --primary: #e60000;
    --primary-hover: #b30000;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #333333;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
}

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

.btn-outline {
    background-color: transparent;
    border-color: var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 13, 13, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 40px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Typography elements */
.section-badge {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Hero Section */
.hero {
    padding: 240px 0 80px;
    background: 
        radial-gradient(ellipse at 50% 60%, rgba(230, 0, 0, 0.25) 0%, rgba(13, 13, 13, 0) 50%),
        url('assets/hex_grid.svg?v=24') repeat center top,
        #0d0d0d;
    background-size: 100% 100%, 28px 50px, 100% 100%;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--bg-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.red-dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: blinkDot 1.5s infinite;
}

.black-dot {
    width: 12px;
    height: 12px;
    background-color: #000;
    border-radius: 50%;
    border: 1px solid #333; /* subtle border so it doesn't vanish entirely on dark grey */
}

@keyframes blinkDot {
    0%, 100% { background-color: var(--primary); box-shadow: 0 0 10px var(--primary); }
    50% { background-color: #000; box-shadow: none; }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 1000px;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto 30px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    background-color: #141415;
    border-radius: 6px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

/* Before / After Section */
.before-after-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
}

.trust-badge .stars {
    color: #ffb400;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Image Comparison Slider */
.image-comparison {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 2 / 1;
    height: auto;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border: 1px solid var(--border-color);
}

.images-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.images-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.before-image-wrapper img {
    max-width: none; /* Width is dynamically controlled by JS */
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--primary);
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background-color: #1a1a1c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #ff9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.slider-button i {
    font-size: 0.9rem;
}

.ba-tag {
    position: absolute;
    background-color: rgba(22, 22, 24, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.ba-tag i {
    font-size: 1.1rem;
}

.tag-text {
    display: flex;
    flex-direction: column;
}

.tag-text strong {
    font-size: 0.8rem;
    color: #fff;
    line-height: 1.2;
}

.tag-text span {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-family: monospace;
    letter-spacing: 0.5px;
}

.text-right {
    text-align: right;
}

.tag-top-left-1 { top: 20px; left: 20px; }
.tag-top-left-2 { top: 80px; left: 20px; }
.tag-bottom-left { 
    bottom: 20px; 
    left: 20px; 
    font-size: 0.7rem; 
    font-family: monospace;
    font-weight: bold;
    color: #888;
    padding: 8px 12px;
}

.tag-top-right-1 { top: 20px; right: 20px; }
.tag-top-right-2 { top: 80px; right: 20px; }
.tag-bottom-right { 
    bottom: 20px; 
    right: 20px; 
    font-size: 0.7rem; 
    font-family: monospace;
    font-weight: bold;
    color: #fff;
    padding: 8px 12px;
}

.comparison-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #141416;
    padding: 12px 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    border-top: none;
}

.comparison-bar .bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: bold;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-text strong {
    color: #fff;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(230, 0, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.orange-bars {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 150px;
    background: linear-gradient(to right, transparent 20%, #ff4500 20%, #ff4500 40%, transparent 40%, transparent 60%, #ff4500 60%, #ff4500 80%, transparent 80%);
    opacity: 0.8;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.tab-btn {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.tab-btn.active, .tab-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.services-content {
    display: none;
}

.services-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(to bottom, rgba(230,0,0,0.05), var(--bg-tertiary));
}

.popular-tag {
    position: absolute;
    top: 0;
    right: 30px;
    background-color: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 0 0 4px 4px;
}

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

.card-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    background-color: rgba(255,255,255,0.05);
    padding: 4px 8px;
    border-radius: 4px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.card-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    min-height: 60px;
}

.card-features {
    margin-bottom: 30px;
}

.card-features li {
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ddd;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.partners-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.authorized-dealer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, #111112 0%, #0a0a0b 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dealer-brand {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.dealer-logo {
    max-width: 250px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.2));
}

.dealer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.dealer-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 0, 0, 0.05);
    transform: translateY(-2px);
}

.dealer-video {
    flex: 0 0 60%;
}

/* Slanted Video Thumbnail */
.video-thumbnail-container {
    position: relative;
    width: 100%;
    height: 250px;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    overflow: hidden;
    padding-left: 20px;
}

.skew-wrapper {
    transform: skewX(-20deg);
    overflow: hidden;
}

.image-wrapper {
    flex-grow: 1;
    position: relative;
    background: #000;
}

.unskew-img {
    transform: skewX(20deg) scale(1.3);
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: -10%;
}

.play-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
    transform: skewX(20deg);
}

.video-thumbnail-container:hover .play-overlay {
    background: rgba(0,0,0,0.2);
}

.video-thumbnail-container:hover .play-circle {
    transform: scale(1.1);
    background: var(--primary);
    border-color: var(--primary);
}

.play-circle {
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex; justify-content: center; align-items: center;
    font-size: 24px; color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.stripe {
    width: 40px;
    flex-shrink: 0;
}

.red-stripe {
    background: #cc0000;
}

.orange-stripe {
    background: linear-gradient(to bottom, #ff3300, #ff8800);
}

/* Video Modal */
.video-modal {
    display: none; 
    position: fixed; 
    z-index: 9999; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.15);
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgba(255,255,255,0.05);
    font-size: 3rem;
}

.testimonial-card .stars {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 0.8rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.client-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-car {
    font-size: 0.75rem;
    font-weight: 700;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-form {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 12px 15px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-group label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-map-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.map-placeholder {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-bg {
    width: 100%;
    height: 100%;
    background-color: #222;
    background-image: linear-gradient(#333 1px, transparent 1px), linear-gradient(90deg, #333 1px, transparent 1px);
    background-size: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin {
    font-size: 3rem;
    color: var(--primary);
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.5));
}

.map-info-box {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary);
    padding: 20px;
    border-radius: 4px;
    width: 250px;
}

.map-info-box h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 10px;
}

.map-info-box p {
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.75rem;
    background-color: #000;
}

.btn-sm:hover {
    background-color: #333;
}

.contact-quick-info {
    display: flex;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 1.5rem;
    background-color: rgba(230,0,0,0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
}

.info-item .value {
    font-size: 0.9rem;
    font-weight: 700;
}

/* Footer */
.footer {
    padding: 80px 0 20px;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
}

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

.footer-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 20px 0;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.footer-col ul li {
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a:hover {
    color: #fff;
}

/* RESERVAS PAGE STYLES */
.reserva-page .navbar {
    position: relative;
    background-color: var(--bg-color);
}

.reserva-main {
    padding: 60px 0 100px;
}

.reserva-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.reserva-header {
    margin-bottom: 40px;
}

.badge-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.badge-row .section-badge {
    margin-bottom: 0;
    font-size: 0.7rem;
}

.reserva-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
}

.reserva-perks {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 40px;
}

.perk {
    flex: 1;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
}

.perk small {
    color: var(--text-muted);
    font-weight: 400;
}

.step-section {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

.step-section:last-of-type {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: none;
}

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

.step-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
}

.step-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.step-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.select-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.select-card:hover {
    border-color: #555;
}

.select-card.active {
    border-color: var(--primary);
    background: linear-gradient(to bottom, rgba(230,0,0,0.05), var(--bg-secondary));
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.select-card.active .card-icon {
    color: #fff;
}

.check-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    color: var(--border-color);
}

.select-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 5px;
}

.select-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.size-tag {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.treatment-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.treatment-tabs button {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.treatment-tabs button.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.subsection-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.upgrades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.upgrade-card {
    display: flex;
    align-items: center;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 15px;
    cursor: pointer;
}

.upgrade-card.active {
    border-color: var(--primary);
}

.checkbox-wrapper {
    margin-right: 15px;
}

.checkbox-wrapper input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.upgrade-info {
    flex: 1;
}

.upgrade-info h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.upgrade-info p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.upgrade-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
}

/* Calendar & Times */
.datetime-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.calendar-container {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
}

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

.calendar-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.calendar-nav button {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    padding: 5px;
}

.calendar-nav button:hover {
    color: #fff;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.calendar-table th {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    padding-bottom: 10px;
}

.calendar-table td {
    padding: 10px 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
}

.calendar-table td:not(.disabled):not(.empty):hover {
    background-color: rgba(255,255,255,0.1);
}

.calendar-table td.active {
    background-color: var(--primary);
    color: #fff;
}

.calendar-table td.disabled {
    color: #444;
    cursor: not-allowed;
}

.calendar-legend {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
}

.time-slots h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 15px;
}

.slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.time-btn {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 15px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
}

.time-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slot-status {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.time-btn.active .slot-status {
    color: rgba(255,255,255,0.8);
}

.time-notice {
    background-color: rgba(230,0,0,0.05);
    border: 1px solid rgba(230,0,0,0.2);
    padding: 15px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Form inputs (Reserva) */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.input-with-icon input {
    padding-left: 45px;
}

/* Sidebar Live Telemetry */
.sidebar-sticky {
    position: sticky;
    top: 20px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-header {
    background-color: var(--bg-tertiary);
    padding: 15px 20px;
    border-bottom: 1px solid var(--primary);
}

.sidebar-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.sidebar-hero-image {
    position: relative;
    height: 180px;
}

.sidebar-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-tag-left, .sidebar-tag-right {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.sidebar-tag-left {
    left: 0;
    background-color: var(--primary);
}

.sidebar-tag-right {
    right: 0;
}

.sidebar-content {
    padding: 25px;
}

.summary-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
}

.summary-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.summary-row-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.summary-row-main h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    max-width: 70%;
}

.summary-price-main {
    font-family: var(--font-heading);
    font-weight: 800;
}

.summary-price-main .price-big {
    font-size: 1.4rem;
}

.summary-warranty {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    margin-top: 5px;
}

.summary-details {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-color);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.detail-label {
    color: var(--text-muted);
}

.detail-value {
    font-weight: 600;
}

.text-white { color: #fff; }

.summary-upgrades {
    margin-bottom: 20px;
}

.upgrade-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.icon-small { font-size: 0.7rem; }

.vip-benefits {
    background-color: rgba(255,255,255,0.02);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.vip-title {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.vip-benefits ul li {
    font-size: 0.75rem;
    margin-bottom: 8px;
    color: #ccc;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.sidebar-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.total-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.total-desc {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.total-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
}

.btn-whatsapp {
    padding: 15px;
    font-size: 1rem;
    margin-bottom: 15px;
}

.sidebar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.response-time {
    color: var(--text-muted);
}

.dot-small { font-size: 6px; }

.pdf-link {
    text-decoration: underline;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 2.5rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .section-header-row { flex-direction: column; align-items: flex-start; gap: 20px; }
    .about-container, .contact-container { grid-template-columns: 1fr; }
    .cards-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .reserva-layout { grid-template-columns: 1fr; }
    .step-cards { grid-template-columns: repeat(2, 1fr); }
    .datetime-grid { grid-template-columns: 1fr; }
    .sidebar-sticky { position: relative; top: 0; margin-top: 0px; }
    
    .authorized-dealer-content {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }
    
    .dealer-brand {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .dealer-video {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-actions { flex-direction: column; }
    .services-tabs { flex-direction: column; }
    .footer-container { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .step-cards { grid-template-columns: 1fr; }
    .upgrades-grid { grid-template-columns: 1fr; }
}

.logo img { height: 120px !important; max-height: 120px !important; width: auto !important; object-fit: contain; }
.sidebar-logo { max-height: 70px !important; width: auto; margin-right: 15px; }
.footer-col.brand-col .logo img { height: 120px !important; max-height: 120px !important; width: auto !important; object-fit: contain; }

/* SERVICES V2 (2x2 Grid) */
.services-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.service-card-v2 {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card-v2.border-red {
    border-top: 4px solid var(--primary);
}

.service-card-v2.border-gray {
    border-top: 4px solid var(--text-muted);
}

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

.card-v2-badge {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-v2-badge.badge-red {
    background-color: var(--primary);
    color: white;
}

.card-v2-badge.badge-gray {
    background-color: #2A2A2A;
    color: white;
}

.card-v2-header i {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.service-card-v2.border-red .card-v2-header i {
    color: var(--primary);
}

.card-v2-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.card-v2-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-v2-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-v2-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-v2-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.card-v2-features i {
    margin-top: 3px;
    font-size: 1.1rem;
}

.card-v2-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: auto;
}

.footer-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-label strong {
    color: white;
    font-weight: 800;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-dark {
    background-color: #2A2A2A;
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-dark:hover {
    background-color: #3A3A3A;
}

.free-diagnosis-banner {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.diagnosis-icon {
    background-color: rgba(230, 0, 0, 0.1);
    color: var(--primary);
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.diagnosis-text {
    flex-grow: 1;
}

.diagnosis-text h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.diagnosis-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.diagnosis-action {
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .services-grid-2x2 {
        grid-template-columns: 1fr;
    }
    .free-diagnosis-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* --- EXPERIMENTAL SCROLL HEADER --- */
.navbar {
    transition: background-color 0.4s ease, padding 0.4s ease, transform 0.4s ease;
}

.nav-container {
    transition: all 0.4s ease;
}

.nav-mobile-logo {
    display: none; /* Hidden by default to not break normal desktop header */
}

@media (min-width: 769px) {
    .navbar.scrolled {
        background-color: transparent !important;
        pointer-events: none;
        padding: 10px 0;
        backdrop-filter: none;
    }

    .navbar.scrolled .logo,
    .navbar.scrolled .btn {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-20px);
        transition: all 0.4s ease;
    }

    .navbar.scrolled .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 300px;
        background-color: rgba(13, 13, 13, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding-top: 100px;
        padding-bottom: 30px;
        align-items: center;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
        z-index: 1001;
        overflow-x: hidden;
        
        /* Hidden state */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: scale(0);
        transform-origin: top right;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s;
    }

    .navbar.scrolled .mobile-menu-btn {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background-color: var(--primary);
        padding: 10px 15px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
        position: fixed;
        top: 20px;
        right: 20px;
        margin: 0;
        transition: all 0.4s ease;
        z-index: 1002;
    }

    .navbar.scrolled .nav-links.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: scale(1) !important;
    }

    .nav-links.active a {
        margin: 15px 0;
        font-size: 1.2rem;
    }

    .nav-links.active .nav-mobile-logo {
        display: block;
        width: 120px;
        margin-top: 15px;
        margin-bottom: 20px;
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        overflow: hidden; /* No scroll per user request */
        background-color: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 20px 20px;
        text-align: center;
        z-index: 1000;
        justify-content: flex-start; /* Stack items closer together */
        gap: 15px;
    }
    
    .nav-links.active a {
        margin: 10px 0;
    }

    .nav-mobile-logo {
        display: none !important; /* Hide logo in mobile menu dropdown */
    }
}

/* Partners Section Banner */
.authorized-dealer-content {
    display: flex;
    background-color: #050505;
    border: 1px solid #222;
    border-radius: 8px;
    max-width: 1200px;
    width: 100%;
    margin: 30px auto;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.dealer-brand {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 2;
}

.dealer-logo {
    max-width: 250px;
    margin-bottom: 25px;
}

.dealer-link {
    display: inline-block;
    color: #fff;
    border: 1px solid #ff0000;
    border-radius: 4px;
    padding: 10px 24px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.dealer-link .arrow {
    color: #ff0000;
    margin-left: 10px;
    font-weight: 800;
}

.dealer-link:hover {
    background: #ff0000;
}

.dealer-link:hover .arrow {
    color: #fff;
}

.dealer-video-section {
    flex: 1 1 55%;
    min-width: 55%;
    position: relative;
    height: 100%;
}

.video-box {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 15px; /* adjust based on logo space */
    right: 20px; /* spacing from the right container edge */
    transform: skewX(-20deg); /* \ slant on both sides */
    border: 2px solid #ff0000;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255,0,0,0.15); /* Red glow */
    background-color: #000; /* Fallback */
    z-index: 10;
}

.video-box img {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    width: calc(100% + 40px); /* Fill the box perfectly */
    height: calc(100% + 40px);
    object-fit: cover;
    transform: skewX(20deg); /* Un-skew */
    opacity: 1;
    transition: opacity 0.3s;
}

.video-box:hover img {
    opacity: 1;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: skewX(20deg); /* Un-skew play button */
    pointer-events: none;
}

.play-circle {
    width: 65px;
    height: 65px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.4rem;
    background: rgba(0,0,0,0.5);
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.video-box:hover .play-circle {
    transform: scale(1.1);
    background: rgba(255,0,0,0.8);
    border-color: #ff0000;
}

.play-circle i {
    margin-left: 4px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .authorized-dealer-content {
        flex-direction: column;
        height: auto;
    }
    .dealer-brand {
        padding: 40px 20px;
    }
    .dealer-video-section {
        height: 220px;
        width: 100%;
    }
    .video-box {
        left: 20px;
        right: 20px;
        transform: skewX(-10deg);
    }
    .video-box img, .play-overlay {
        transform: skewX(10deg);
    }
}

/* Partners Section V2 */
.partners-section-v2 {
    position: relative;
    background-color: #0b0b0b;
    overflow: hidden;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.partners-bg-shapes {
    position: absolute;
    top: 0;
    left: -20%;
    width: 45%;
    height: 100%;
    background: var(--primary);
    transform: skewX(25deg);
    z-index: 0;
}
.partners-bg-shapes::after {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    width: 15px;
    height: 100%;
    background: var(--primary);
}

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

.partners-video-v2 {
    flex: 1;
    max-width: 50%;
}

.video-box-v2 {
    position: relative;
    border: 3px solid #fff; 
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-box-v2 img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-box-v2:hover img {
    transform: scale(1.05);
}

.video-box-v2 .play-overlay {
    transform: none;
}

.video-box-v2:hover .play-overlay {
    background: rgba(0,0,0,0.2);
}

.video-box-v2:hover .play-circle {
    transform: scale(1.1);
    background: var(--primary);
    border-color: var(--primary);
}

.partners-content-v2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    text-align: right;
}

.partners-badge-v2 {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.partners-title-v2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.partners-logo-v2 {
    max-width: 320px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.15));
}

.partners-desc-v2 {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
}

.partners-link-v2 {
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.partners-link-v2:hover {
    opacity: 0.8;
}

.partners-link-v2 .arrow {
    color: var(--primary);
    font-weight: bold;
}

@media (max-width: 992px) {
    .partners-container-v2 {
        flex-direction: column;
        gap: 40px;
    }
    .partners-bg-shapes {
        width: 100%;
        left: -80%;
        transform: skewX(15deg);
    }
    .partners-video-v2 {
        max-width: 100%;
        order: 2;
    }
    .partners-content-v2 {
        align-items: center;
        text-align: center;
        order: 1;
    }
    .partners-desc-v2 {
        max-width: 100%;
    }
}

/* Custom Toast Notification */
.custom-toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: #1a1a1a;
    border: 1px solid var(--border-color);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    font-weight: 500;
    min-width: 300px;
    justify-content: center;
}

.custom-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.custom-toast.error .toast-icon {
    color: var(--primary-color);
}

.custom-toast.success .toast-icon {
    color: #4CAF50;
}

/* Scroll to Top Button */
.scroll-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #e60000;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: background-color 0.3s, transform 0.3s;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
}

/* Mobile Nav Extra Elements */
html.menu-open, body.menu-open {
    overflow: hidden !important;
}

.nav-mobile-socials-container {
    display: none;
}
.nav-mobile-btn {
    display: none !important;
}

@media (min-width: 769px) {
    .navbar.scrolled .nav-links.active {
        padding-top: 50px;
    }
    .navbar.scrolled .nav-links.active .nav-mobile-socials-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-left: 35px;
        margin-bottom: 15px;
    }
    .navbar.scrolled .nav-links.active .socials-label {
        color: #fff;
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    .navbar.scrolled .nav-links.active .nav-mobile-socials {
        display: flex;
        gap: 15px;
    }
    .navbar.scrolled .nav-links.active .nav-mobile-socials a {
        margin: 0;
        font-size: 1.2rem;
        color: #fff;
        opacity: 0.8;
        transition: opacity 0.3s;
    }
    .navbar.scrolled .nav-links.active .nav-mobile-socials a:hover {
        opacity: 1;
        color: var(--primary);
    }
    .navbar.scrolled .nav-links.active .nav-mobile-btn {
        display: inline-block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        margin: 10px auto 10px auto;
        padding: 8px 15px;
        font-size: 0.8rem;
        width: 75%;
        text-align: center;
        background-color: #ff0000 !important;
        color: #fff !important;
        border: none !important;
    }
    .navbar.scrolled .nav-links.active .nav-mobile-btn i {
        margin-right: 5px;
    }
    .navbar.scrolled .nav-links.active a {
        margin: 5px 0; /* Tightened links */
        font-size: 1rem;
    }
    .navbar.scrolled .nav-links.active .nav-mobile-logo {
        margin-top: 5px;
        margin-bottom: 10px;
        max-height: 60px !important;
        width: auto !important;
    }
}

@media (max-width: 768px) {
    .nav-links.active {
        padding: 15px 0 10px 0;
    }
    .nav-links.active .nav-mobile-socials-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-left: 35px;
        margin-bottom: 10px;
    }
    .nav-links.active .socials-label {
        color: #fff;
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    .nav-links.active .nav-mobile-socials {
        display: flex;
        gap: 15px;
    }
    .nav-links.active .nav-mobile-socials a {
        margin: 0;
        font-size: 1.2rem;
        color: #fff;
        opacity: 0.8;
    }
    .nav-links.active .nav-mobile-btn {
        display: inline-block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        margin: 10px auto 10px auto;
        padding: 8px 15px;
        font-size: 0.8rem;
        width: 75%;
        max-width: 250px;
        text-align: center;
        background-color: #ff0000 !important;
        color: #fff !important;
        border: none !important;
    }
    .nav-links.active .nav-mobile-btn i {
        margin-right: 5px;
    }
    .nav-links.active a {
        margin: 0; /* Removing extra margins as we use gap */
        font-size: 0.95rem;
    }
    .nav-links.active .nav-mobile-btn {
        margin-top: 15px;
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .step-cards { grid-template-columns: 1fr; }
    .treatment-tabs { flex-direction: column; }
    .treatment-tabs button { width: 100%; margin-bottom: 5px; }
    .upgrades-grid { grid-template-columns: 1fr; }
    .hero { padding: 120px 0 40px; }
    .hero-title { font-size: 2rem; }
    .hero-actions .btn { padding: 10px 15px !important; font-size: 0.8rem !important; }
    
    .tag-top-left-1, .tag-top-left-2, .tag-top-right-1, .tag-top-right-2, .ba-tag {
        display: none !important;
    }
    
    .comparison-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 15px !important;
        align-items: center;
    }
    
    .stat-item { padding: 15px 10px; }
    .stat-item h3 { font-size: 1.1rem; }
    .stat-item p { font-size: 0.65rem; }
    
    .contact-quick-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .card-v2-header {
        gap: 15px;
        align-items: flex-start;
    }
    
    .logo img {
        height: 60px !important;
        max-height: 60px !important;
    }
    
    .footer-col.brand-col .logo img {
        height: 80px !important;
        max-height: 80px !important;
    }
    
    .bottom-links a, .footer-bottom p {
        font-size: 0.65rem;
    }
    
    .reserva-perks {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .perk {
        font-size: 0.7rem;
    }
    
    .card-v2-footer .btn-sm {
        padding: 8px 12px !important;
        font-size: 0.7rem !important;
    }
    
    .nav-container > .btn {
        display: none !important;
    }
    .nav-links.active .nav-mobile-logo {
        margin-top: 5px;
        margin-bottom: 10px;
        max-height: 60px !important;
        width: auto !important;
    }
}
