/* ============================================
   D'EUROPE MOTORS - CSS V3 OPTIMIZED
   Clean, No Duplications, Mobile-First
   ============================================ */

/* CSS Variables */
:root {
    --vw-blue: #001E50;
    --vw-blue-light: #00396B;
    --accent-red: #EF4444;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-900: #1A1A1A;
    --gray-700: #4A4A4A;
    --gray-500: #6B7280;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --success: #10B981;
    --warning: #F59E0B;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Inter', sans-serif;
    
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    
    --z-base: 1;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* ============================================
   HEADER - DYNAMIC & RESPONSIVE
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: var(--z-sticky);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 0.35rem 0;
}

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

/* Logo Container */
.logo-container {
    background: var(--white);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.header.scrolled .logo-container {
    padding: 0.3rem 0.85rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

/* Logo Sizes */
.logo {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
}

.header.scrolled .logo {
    height: 50px;
}

@media (min-width: 768px) {
    .header {
        padding: 0.75rem 0;
    }
    
    .header.scrolled {
        padding: 0.5rem 0;
    }
    
    .logo-container {
        padding: 0.5rem 1.25rem;
    }
    
    .header.scrolled .logo-container {
        padding: 0.35rem 1rem;
    }
    
    .logo {
        height: 100px;
    }
    
    .header.scrolled .logo {
        height: 60px;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Phone Link */
.phone-link {
    display: none;
}

@media (min-width: 768px) {
    .phone-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 700;
        font-size: var(--text-lg);
        color: var(--white);
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-full);
        border: 1px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }
    
    .header.scrolled .phone-link {
        color: var(--vw-blue);
        background: rgba(0, 30, 80, 0.08);
        border-color: rgba(0, 30, 80, 0.15);
    }
    
    .phone-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: var(--text-base);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--vw-blue);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--vw-blue-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-accent {
    background: #DC2626;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-accent:hover {
    background: #B91C1C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-whatsapp {
    background: #128C40;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 1.25rem;
    font-size: var(--text-sm);
}

.btn-whatsapp:hover {
    background: #0F7335;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-whatsapp span {
    display: none;
}

@media (min-width: 768px) {
    .btn-whatsapp {
        padding: 0.75rem 1.5rem;
        font-size: var(--text-base);
    }
    
    .btn-whatsapp span {
        display: inline;
    }
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--vw-blue);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: var(--text-lg);
}

.btn i {
    font-size: 1.125rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--vw-blue);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 30, 80, 0.95) 0%, rgba(0, 57, 107, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
    padding-top: 120px;
}

@media (min-width: 768px) {
    .hero-content {
        padding-top: 0;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .hero-badge {
        padding: 0.75rem 1.5rem;
        font-size: var(--text-sm);
        margin-bottom: var(--space-lg);
    }
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: var(--space-md);
    letter-spacing: -0.03em;
}

.hero-highlight {
    color: var(--accent-red);
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 700px;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-md);
    }
}

.hero-ctas .btn-accent {
    background: #DC2626;
    font-weight: 800;
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: var(--space-lg) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--vw-blue), var(--vw-blue-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 30, 80, 0.2);
}

.stat-value {
    font-size: var(--text-3xl);
    font-weight: 900;
    color: var(--vw-blue);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--gray-700);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   VALUE SECTION
   ============================================ */

.value-section {
    padding: var(--space-3xl) 0;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--vw-blue);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: var(--text-xl);
    color: var(--gray-700);
    line-height: 1.6;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.value-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--vw-blue);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--vw-blue), var(--vw-blue-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.value-card h3 {
    font-size: var(--text-2xl);
    color: var(--vw-blue);
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   LOCATION SECTION
   ============================================ */

.location-cta {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.location-grid-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .location-grid-v2 {
        grid-template-columns: 55fr 45fr;
        gap: var(--space-2xl);
    }
}

.map-column {
    order: 2;
}

@media (min-width: 1024px) {
    .map-column {
        order: 1;
    }
}

.info-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    order: 1;
}

@media (min-width: 1024px) {
    .info-column {
        order: 2;
    }
}

.map-container-v2 {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
    min-height: 450px;
}

.map-container-v2 iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.info-block {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--vw-blue);
    transition: all var(--transition-base);
}

.info-block:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.info-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.info-header i {
    font-size: 1.5rem;
    color: var(--vw-blue);
}

.info-header h3 {
    font-size: var(--text-xl);
    color: var(--vw-blue);
    margin: 0;
}

.address {
    font-size: var(--text-lg);
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    font-weight: 500;
}

/* Schedule */
.schedule {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--gray-100);
}

.schedule-item:last-of-type {
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: var(--space-sm);
}

.schedule-item .day {
    font-weight: 600;
    color: var(--gray-900);
    font-size: var(--text-base);
}

.schedule-item .time {
    color: var(--gray-700);
    font-size: var(--text-base);
}

.schedule-item .closed {
    color: #DC2626;
    font-weight: 800;
}

/* Schedule Status */
.schedule-status {
    padding: var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.schedule-status.status-open {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border-color: #10B981;
}

.schedule-status.status-closed {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border-color: #EF4444;
}

.schedule-status.status-urgent {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-color: #F59E0B;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: #F59E0B;
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    50% {
        border-color: #EF4444;
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
    }
}

.status-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.status-icon.status-urgent {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.status-text {
    flex: 1;
}

.status-text strong {
    display: block;
    font-size: var(--text-base);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.status-text p {
    font-size: var(--text-sm);
    color: var(--gray-700);
    line-height: 1.5;
    margin: 0;
}

.schedule-status.status-open .status-text strong {
    color: #047857;
}

.schedule-status.status-closed .status-text strong {
    color: #DC2626;
}

.schedule-status.status-urgent .status-text strong {
    color: #D97706;
}

/* CTA Block */
.cta-block {
    background: linear-gradient(135deg, var(--vw-blue) 0%, var(--vw-blue-light) 100%);
    color: var(--white);
    border-left: 4px solid var(--accent-red);
}

.cta-block:hover {
    transform: translateX(0);
    box-shadow: var(--shadow-xl);
}

.cta-block .info-header h3,
.cta-block .info-header i {
    color: var(--white);
}

.cta-block p {
    color: var(--white) !important;
}

.cta-buttons-v2 {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vw-blue), var(--accent-red), var(--vw-blue));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    height: 75px;
    width: auto;
    margin-bottom: var(--space-md);
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-base);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.footer-section h3 {
    color: var(--white);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-section h3 i {
    color: var(--accent-red);
    font-size: 1.25rem;
}

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

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links a i {
    color: var(--vw-blue-light);
    width: 20px;
}

.footer-links a:hover i {
    color: var(--accent-red);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--vw-blue-light);
    border-color: var(--accent-red);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 30, 80, 0.4);
}

.social-link.social-whatsapp:hover {
    background: #128C40 !important;
    border-color: #0F7335 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    margin-bottom: var(--space-xs);
}

.footer-credits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-credits i {
    color: var(--accent-red);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-section:first-child {
        text-align: center;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #128C40;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-2xl);
    cursor: pointer;
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
    background: #0F7335;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: #128C40;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-white { color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--space-lg); }

/* ============================================
   REVIEW WIDGET
   ============================================ */

.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.reviews-widget {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 30, 80, 0.08);
    overflow: hidden;
    margin-top: 40px;
}

/* Header de Reviews */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: linear-gradient(135deg, #001E50 0%, #003580 100%);
    color: white;
    gap: 20px;
    flex-wrap: wrap;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-number {
    font-size: 3.5em;
    font-weight: 900;
    line-height: 1;
    color: #FFD700;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rating-info .stars {
    color: #FFD700;
    font-size: 1.3em;
    display: flex;
    gap: 3px;
}

.reviews-count {
    font-size: 0.95em;
    opacity: 0.9;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.google-badge i {
    font-size: 1.5em;
}

/* Slider Wrapper */
.reviews-slider-wrapper {
    position: relative;
    padding: 50px 80px;
    background: white;
}

.reviews-slider {
    overflow: hidden;
    border-radius: 12px;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    min-width: 100%;
    padding: 0 15px;
}

.review-content {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 35px;
    border-left: 4px solid #001E50;
    position: relative;
}

.review-content::before {
    content: '"';
    font-size: 5em;
    color: #001E50;
    opacity: 0.08;
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 30, 80, 0.1);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #001E50 0%, #003580 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5em;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 30, 80, 0.2);
}

.author-info h3 {
    font-size: 1.2em;
    color: #001E50;
    margin-bottom: 6px;
    font-weight: 700;
}

.review-stars {
    color: #FFD700;
    font-size: 1.1em;
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
}

.review-date {
    color: #666;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-text {
    color: #444;
    line-height: 1.8;
    font-size: 1.05em;
    position: relative;
    padding-left: 10px;
}

/* Navegación del Slider */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #001E50;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
    font-size: 1.3em;
    box-shadow: 0 4px 15px rgba(0, 30, 80, 0.2);
}

.slider-nav:hover {
    background: #FF6B00;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Dots de Navegación */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 25px 0;
    background: white;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.slider-dot:hover {
    background: #999;
    transform: scale(1.2);
}

.slider-dot.active {
    background: #001E50;
    width: 35px;
    border-radius: 6px;
}

/* CTA para dejar reseña */
.reviews-cta {
    text-align: center;
    padding: 35px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid rgba(0, 30, 80, 0.1);
}

.reviews-cta p {
    margin-bottom: 15px;
    color: #444;
    font-size: 1.05em;
    font-weight: 500;
}

.reviews-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-header {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .rating-summary {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .rating-number {
        font-size: 2.8em;
    }

    .google-badge {
        width: 100%;
        justify-content: center;
    }

    .reviews-slider-wrapper {
        padding: 40px 55px;
    }

    .slider-nav {
        width: 42px;
        height: 42px;
        font-size: 1.1em;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

    .review-content {
        padding: 25px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2em;
    }

    .author-info h3 {
        font-size: 1.05em;
    }

    .review-text {
        font-size: 0.98em;
    }

    .reviews-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .reviews-slider-wrapper {
        padding: 30px 45px;
    }

    .review-content {
        padding: 20px;
    }

    .rating-number {
        font-size: 2.2em;
    }

    .rating-info .stars {
        font-size: 1.1em;
    }

    .slider-nav {
        width: 38px;
        height: 38px;
        font-size: 1em;
    }
}