:root {
    --color-background: #000000;
    --color-text: #ffffff;
    --color-accent: #ed6b0d;
    --color-dark: #1a1a1a;
    --color-gray: #333333;
    --color-light-gray: #666666;
}

/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    padding: 0;
    margin: 0;
    background-color: var(--color-background);
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h2 {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

/* Hero Section */
.hero {
    padding: 100px 0 50px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-text);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-text);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #ff7a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(237, 107, 13, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-text);
    color: var(--color-background);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.car-protection-demo {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.car-before, .car-after {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 120px;
}

.car-before {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #ef4444;
}

.car-after {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid #22c55e;
}

.car-before i, .car-after i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.arrow {
    font-size: 2rem;
    color: white;
}

/* Problem Section */
.problem-section {
    padding: 50px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/problem-bg.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 0;
    color: var(--color-text);
}

/* Eliminar espacio entre hero y problem */
.hero + .problem-section {
    margin-top: 0;
    padding-top: 50px;
}

.problem-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.problem-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--color-text);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.problem-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.problem-card i {
    font-size: 3rem;
    color: #ef4444;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.problem-card p {
    color: var(--color-text);
}

/* Video container */
.video-container {
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    height: auto;
}

.video-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
    display: block;
}

@media (max-width: 768px) {
    .video-wrapper iframe {
        height: 250px;
    }
    
    .video-container {
        margin: 1.5rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .video-wrapper {
        height: auto;
        max-height: 250px;
    }
    
    /* Ajustes para tarjetas de beneficios en móvil */
    .benefit-header {
        gap: 0.75rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: 1.25rem;
    }
    
    .benefit-card h3 {
        font-size: 1.25rem;
    }
}

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

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    border-radius: 15px;
    background: var(--color-gray);
    transition: transform 0.3s ease;
    border: 1px solid var(--color-light-gray);
}

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

.benefit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--color-text);
    line-height: 1.2;
}

.benefit-card p {
    color: var(--color-text);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('images/services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-text);
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--color-text);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    overflow: hidden;
}

.service-card.featured {
    border: 3px solid #2563eb;
    transform: scale(1.05);
}

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

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

/* Service card images */
.service-image {
    margin: -2rem -2rem 1.5rem -2rem;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.service-tag {
    background: var(--color-accent);
    color: var(--color-text);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-card p {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.service-features i {
    color: #22c55e;
    margin-right: 0.5rem;
}

.btn-service {
    background: var(--color-accent);
    color: var(--color-text);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-service:hover {
    background: #ff7a1a;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--color-dark);
    color: var(--color-text);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-text);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-gray);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-light-gray);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--color-text);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Google Review Style */
.google-review {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.google-logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.google-logo svg {
    width: 24px;
    height: 24px;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    color: var(--color-text);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.stars {
    color: #FFD700;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.review-text {
    color: var(--color-light-gray);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Legacy styles for backward compatibility */
.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
}

.author-info span {
    color: var(--color-text);
    font-size: 0.875rem;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--color-dark);
    color: var(--color-text);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--color-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid var(--color-light-gray);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.feature-card p {
    color: var(--color-text);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/cta-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-text);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text);
}

.location-info {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--color-dark);
    color: var(--color-text);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--color-light-gray);
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #64748b;
}

.close:hover {
    color: #1e293b;
}

.modal-content h2 {
    margin-bottom: 2rem;
    color: var(--color-text);
    text-align: center;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--color-light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--color-gray);
    color: var(--color-text);
}

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

/* Estilos para checkbox de marketing */
.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--color-accent);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.checkbox-label span.checkmark {
    display: none;
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-text);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--color-text);
}

.footer-section p {
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--color-accent);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff7a1a;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-light-gray);
    color: var(--color-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hero section más compacto en mobile */
    .hero {
        padding: 80px 0 30px;
        min-height: auto;
        height: auto;
        position: relative;
        overflow: hidden;
        margin-bottom: 0;
        border-bottom: none;
        background-attachment: scroll; /* Fix para mobile */
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .car-protection-demo {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Problem section más compacto en mobile */
    .problem-section {
        padding: 30px 0;
        position: relative;
        overflow: hidden;
        height: auto;
        min-height: auto;
        margin-top: 0;
        border-top: none;
        background-attachment: scroll; /* Fix para mobile */
    }
    
    .problem-section > .container > p {
        margin-bottom: 2rem;
    }
    
    .problem-cards {
        margin-top: 2rem;
        gap: 1.5rem;
        position: relative;
        overflow: hidden;
        height: auto;
    }
    
    .problem-card {
        padding: 1.5rem;
        height: auto;
        min-height: auto;
    }
    
    .problem-cards,
    .benefits-grid,
    .services-grid,
    .testimonials-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-card.featured:hover {
        transform: translateY(-5px);
    }
    
    /* Service images responsive */
    .service-image {
        height: 150px;
        margin: -1.5rem -1.5rem 1rem -1.5rem;
    }
    
    /* Google Review responsive */
    .google-review {
        gap: 0.75rem;
    }
    
    .google-logo {
        width: 35px;
        height: 35px;
    }
    
    .google-logo svg {
        width: 20px;
        height: 20px;
    }
    
    .stars {
        font-size: 0.75rem;
    }
    
    .review-text {
        font-size: 0.7rem;
    }
    
    /* Fix para background-attachment en mobile */
    .services-section,
    .cta-section {
        background-attachment: scroll;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .problem-section h2,
.benefits-section h2,
.services-section h2,
.testimonials-section h2,
.cta-section h2 {
    font-size: 2rem;
    color: var(--color-text);
}
    
    /* Problem section ultra compacto en pantallas muy pequeñas */
    .problem-section {
        padding: 20px 0;
        position: relative;
        overflow: hidden;
        height: auto;
        min-height: auto;
        margin-top: 0;
        border-top: none;
        background-attachment: scroll; /* Fix para mobile */
    }
    
    /* Eliminar espacio entre hero y problem en mobile */
    .hero + .problem-section {
        margin-top: 0;
        padding-top: 20px;
    }
    
    .problem-section > .container > p {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
    
    .problem-cards {
        margin-top: 1.5rem;
        gap: 1rem;
        position: relative;
        overflow: hidden;
        height: auto;
    }
    
    .problem-card {
        padding: 1rem;
        height: auto;
        min-height: auto;
    }
    
    .video-container {
        margin: 1rem 0;
        position: relative;
        overflow: hidden;
    }
    
    .video-wrapper {
        max-height: 200px;
    }
}

/* Texto con acento de marca */
.accent-text {
    color: var(--color-accent);
    font-weight: 600;
}

/* Estilos para mensajes de error y éxito */
.field-error {
    color: #ef4444 !important;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message i {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.success-message h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--color-text);
}

/* Toast notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 3000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.toast-success {
    background: var(--color-accent);
}

.toast-error {
    background: #ef4444;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.problem-card,
.benefit-card,
.service-card,
.testimonial-card,
.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.btn-floating {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(237, 107, 13, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.btn-floating:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(237, 107, 13, 0.4);
}

.btn-floating i {
    font-size: 16px;
}

/* Mostrar CTA flotante solo en mobile */
@media (max-width: 768px) {
    .floating-cta {
        display: block;
    }
} /* Google Rating Badge */
.google-rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(135deg, var(--color-gray) 0%, var(--color-dark) 100%);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid var(--color-light-gray);
    box-shadow: 0 4px 20px rgba(237, 107, 13, 0.1);
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.rating-score .stars {
    color: #FFD700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.review-count {
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 500;
}

.google-badge {
    height: 18px;
    width: auto;
    opacity: 0.9;
}

/* Reviewer Avatar (con inicial) */
.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, #ff8c42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    border: 2px solid var(--color-light-gray);
    flex-shrink: 0;
    text-transform: uppercase;
}

.reviewer-details {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    flex: 1;
}

.google-logo-small {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 4px;
    padding: 2px;
    flex-shrink: 0;
    margin-top: 2px;
}

.review-date {
    color: var(--color-light-gray);
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

/* Verified Badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(52, 168, 83, 0.1);
    border: 1px solid rgba(52, 168, 83, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: #34A853;
}

.verified-badge i {
    font-size: 0.875rem;
}

/* Reviews CTA Button */
.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-reviews {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
}

.btn-reviews:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(237, 107, 13, 0.3);
    border-color: var(--color-accent);
}

.btn-reviews i:first-child {
    font-size: 1.25rem;
}

.btn-reviews i:last-child {
    font-size: 0.875rem;
}

/* Responsive ajustes */
@media (max-width: 768px) {
    .google-rating-badge {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .rating-info {
        align-items: center;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
