/* ===== VARIABLES CSS ===== */
:root {
    /* Colores mediterráneos vibrantes */
    --primary-color: #2563eb;
    --secondary-color: #f97316;
    --accent-color: #059669;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-secondary: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --gradient-accent: linear-gradient(135deg, #059669 0%, #047857 100%);
    --gradient-hero: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(249, 115, 22, 0.8) 100%);

    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Tipografía */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    /* Espaciado */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 12px;
    --border-radius-lg: 20px;

    /* Transiciones */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease-in-out;
}

/* ===== RESET Y BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== UTILIDADES ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* ===== NAVEGACIÓN ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color);
}

.nav-brand .logo svg {
    width: 32px;
    height: 32px;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-cta {
    font-size: 14px;
    padding: 10px 20px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== SECCIONES GENERALES ===== */
section {
    padding: var(--section-padding);
}

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

.section-header h2 {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICIOS PREVIEW ===== */
.services-preview {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.service-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--success-color);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 14px;
    color: var(--text-color);
}

.service-price {
    margin-bottom: 24px;
}

.price {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ===== WHY CHOOSE US ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.advantage-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.advantage-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

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

/* ===== FORMULARIO DE CONTACTO ===== */
.contact-form-section {
    background: var(--gradient-primary);
    color: white;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-family: var(--font-secondary);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.form-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cleaning-contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background: var(--text-color);
    color: white;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    position: relative;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ===== CALCULADORA DE PRESUPUESTO ===== */
.quote-calculator-section {
    background: #f8fafc;
}

.quote-calculator {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.calculator-header {
    text-align: center;
    margin-bottom: 40px;
}

.calculator-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.calculator-header p {
    color: var(--text-light);
}

.calc-row {
    margin-bottom: 24px;
}

.calc-row label {
    display: block;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.calc-row select,
.calc-row input[type="range"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.calc-row select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.range-value {
    display: inline-block;
    margin-top: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.calc-result {
    background: var(--gradient-primary);
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 30px;
}

.price-display {
    margin-bottom: 12px;
}

.price-amount {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
}

.price-unit {
    font-size: 1rem;
    opacity: 0.9;
    margin-left: 8px;
}

.price-details {
    opacity: 0.8;
}

/* ===== TESTIMONIOS ===== */
.testimonials {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

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

.testimonial-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    fill: currentColor;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.author-info h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== ZONA DE COBERTURA ===== */
.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.coverage-info h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 24px;
}

.coverage-zones {
    display: grid;
    gap: 16px;
    margin-bottom: 30px;
}

.zone-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.zone-item:hover,
.zone-item.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.zone-item:hover svg,
.zone-item.active svg {
    color: white;
}

.zone-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    transition: var(--transition);
}

.coverage-note {
    padding: 20px;
    background: var(--gradient-accent);
    color: white;
    border-radius: var(--border-radius);
}

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

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

.footer-section h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p,
.footer-section li {
    margin-bottom: 8px;
    opacity: 0.8;
}

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

.footer-section a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: none; /* Hide social links */
}

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

.legal-info {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.8;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.copyright {
    font-size: 14px;
    opacity: 0.6;
}

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

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

.pulse {
    animation: pulse 2s infinite;
}

/* ===== RESPONSIVE DESIGN (Solo Desktop) ===== */
@media (max-width: 1440px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .hero-stats {
        gap: 40px;
    }

    .coverage-content {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 720px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 30px;
    }

    .coverage-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .coverage-zones {
        grid-template-columns: 1fr;
    }
}/*
===== ESTILOS ESPECÍFICOS PARA SERVICIOS ===== */

/* Hero de Servicios */
.services-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.services-hero h1 {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Secciones de Servicios */
.services-section {
    padding: 80px 0;
}

.bg-light {
    background: #f8fafc;
}

/* Grid de Servicios Detallados */
.services-detailed-grid {
    display: grid;
    gap: 40px;
}

.service-detailed-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.service-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    height: 160px;
}

.service-image svg {
    width: 60px;
    height: 60px;
    color: white;
}

.service-info h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.service-description {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.service-price-info .price {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-price-info .duration {
    background: var(--gradient-accent);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.service-details h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin: 24px 0 16px;
    font-size: 1.1rem;
}

.service-checklist {
    list-style: none;
    margin-bottom: 24px;
}

.service-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.service-checklist svg {
    width: 18px;
    height: 18px;
    color: var(--success-color);
    flex-shrink: 0;
}

.extra-services,
.frequency-options,
.schedule-options,
.equipment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.extra-tag,
.freq-tag,
.schedule-tag,
.equipment-tag {
    background: var(--gradient-secondary);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.freq-tag {
    background: var(--gradient-accent);
}

.schedule-tag {
    background: var(--gradient-primary);
}

.equipment-tag {
    background: #6b7280;
}

/* Servicios Especializados */
.specialized-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.specialized-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.specialized-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.specialized-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.specialized-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.specialized-card p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.specialized-price {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.specialized-features {
    list-style: none;
    text-align: left;
}

.specialized-features li {
    color: var(--text-color);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.specialized-features li::before {
    content: '•';
    color: var(--success-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-secondary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive para Servicios */
@media (max-width: 1024px) {
    .service-detailed-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-image {
        height: 120px;
        margin: 0 auto;
        max-width: 200px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .services-detailed-grid {
        gap: 30px;
    }

    .service-detailed-card {
        padding: 30px 20px;
    }

    .specialized-services-grid {
        grid-template-columns: 1fr;
    }

    .extra-services,
    .frequency-options,
    .schedule-options,
    .equipment-list {
        justify-content: center;
    }
}/*
 ===== ESTILOS ESPECÍFICOS PARA TARIFAS ===== */

/* Hero de Tarifas */
.pricing-hero {
    background: var(--gradient-secondary);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.pricing-hero h1 {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Calculadora Avanzada */
.advanced-calculator-section {
    padding: 80px 0;
    background: #f8fafc;
}

.advanced-calculator {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.calculator-steps {
    display: flex;
    background: var(--gradient-primary);
    color: white;
    padding: 0;
}

.step {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    position: relative;
    transition: var(--transition);
}

.step.active {
    background: rgba(255, 255, 255, 0.2);
}

.step.completed {
    background: var(--success-color);
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step.active .step-number {
    background: white;
    color: var(--primary-color);
}

.step.completed .step-number {
    background: rgba(255, 255, 255, 0.3);
}

.step-title {
    font-weight: 500;
    font-size: 14px;
}

.calculator-content {
    padding: 40px;
    min-height: 400px;
}

.calculator-step {
    transition: var(--transition);
}

.calculator-step.hidden {
    display: none;
}

.calculator-step h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
}

/* Opciones de Servicio */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-option {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.service-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.service-option.selected {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.option-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.option-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.service-option h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.service-option p {
    font-size: 14px;
    color: var(--text-light);
}

/* Formulario de Detalles */
.details-form {
    display: grid;
    gap: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 12px;
}

.range-display {
    text-align: center;
    margin-top: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.number-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #f8fafc;
    border-radius: var(--border-radius);
    padding: 16px;
}

.number-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.number-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.number-selector span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    min-width: 30px;
    text-align: center;
}

#frecuencia-select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 16px;
    background: white;
}

/* Extras Grid */
.extras-grid {
    display: grid;
    gap: 16px;
}

.extra-option {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.extra-option:hover {
    border-color: var(--primary-color);
}

.extra-option:has(input:checked) {
    border-color: var(--success-color);
    background: rgba(16, 185, 129, 0.05);
}

.extra-checkbox {
    position: relative;
}

.extra-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.extra-info {
    flex: 1;
}

.extra-info h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.extra-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.extra-price {
    font-weight: 600;
    color: var(--success-color);
}

/* Resultado del Presupuesto */
.quote-result {
    text-align: center;
}

.quote-summary {
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-bottom: 30px;
}

.quote-summary h3 {
    color: white;
    margin-bottom: 24px;
}

.quote-breakdown {
    margin-bottom: 24px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.breakdown-item.total {
    border-bottom: none;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 16px;
    margin-top: 16px;
    font-size: 1.2rem;
    font-weight: 700;
}

.quote-details {
    display: grid;
    gap: 12px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.detail-item svg {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.quote-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Navegación de la Calculadora */
.calculator-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

/* Tabla de Precios */
.pricing-table-section {
    padding: 80px 0;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.pricing-table {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.pricing-table:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.table-header {
    background: var(--gradient-primary);
    color: white;
    padding: 30px;
    text-align: center;
}

.table-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.table-header p {
    opacity: 0.9;
}

.table-content {
    padding: 30px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
}

.price-row:last-child {
    border-bottom: none;
}

.service-name strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 4px;
}

.service-name small {
    color: var(--text-light);
    font-size: 14px;
}

.service-price {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--primary-color);
}

/* Factores de Precio */
.pricing-factors-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.factor-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.factor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.factor-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.factor-card h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

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

/* Garantías y Pago */
.guarantees-payment-section {
    padding: 80px 0;
}

.guarantees-payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.guarantees-card,
.payment-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.guarantees-card h3,
.payment-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 24px;
}

.guarantee-list {
    display: grid;
    gap: 20px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guarantee-item svg {
    width: 24px;
    height: 24px;
    color: var(--success-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.guarantee-item h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.guarantee-item p {
    color: var(--text-light);
    font-size: 14px;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: var(--border-radius);
}

.payment-method svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

.payment-note {
    background: rgba(37, 99, 235, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 16px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.payment-note p {
    margin: 0;
    color: var(--text-color);
    font-size: 14px;
}

/* CTA Final */
.final-cta-section {
    background: var(--gradient-accent);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta-content h2 {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive para Tarifas */
@media (max-width: 1024px) {
    .calculator-steps {
        flex-direction: column;
    }

    .step {
        justify-content: flex-start;
        padding: 16px 20px;
    }

    .guarantees-payment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .calculator-content {
        padding: 30px 20px;
    }

    .calculator-navigation {
        padding: 20px;
        flex-direction: column;
        gap: 16px;
    }

    .service-options {
        grid-template-columns: 1fr;
    }

    .pricing-tables {
        grid-template-columns: 1fr;
    }

    .factors-grid {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== ESTILOS ESPECÍFICOS PARA RESERVAS ===== */

/* Hero de Reservas */
.booking-hero {
    background: var(--gradient-accent);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.booking-hero h1 {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.booking-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    opacity: 0.9;
}

.hero-features .feature-item svg {
    width: 20px;
    height: 20px;
}

/* Sistema de Reservas */
.booking-system-section {
    padding: 80px 0;
    background: #f8fafc;
}

.booking-system {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.booking-steps {
    display: flex;
    background: var(--gradient-primary);
    color: white;
}

.booking-steps .step {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 20px;
    position: relative;
    transition: var(--transition);
}

.booking-steps .step.active {
    background: rgba(255, 255, 255, 0.2);
}

.booking-steps .step.completed {
    background: var(--success-color);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.booking-steps .step.active .step-number {
    background: white;
    color: var(--primary-color);
}

.step-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-info p {
    font-size: 14px;
    opacity: 0.8;
}

.booking-content {
    padding: 40px;
    min-height: 500px;
}

.booking-step h2 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
}

/* Selección de Servicios */
.service-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-selection-grid .service-card {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.service-selection-grid .service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.service-selection-grid .service-card.selected {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.service-selection-grid .service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.service-selection-grid .service-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.service-selection-grid .service-card h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.service-selection-grid .service-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.service-price {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.service-duration {
    font-size: 12px;
    color: var(--text-light);
}

/* Selección de Fecha y Hora */
.datetime-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.calendar-section h3,
.time-section h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

#booking-calendar {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.time-slot {
    padding: 12px;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.time-slot:hover {
    border-color: var(--primary-color);
}

.time-slot.selected {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.time-slot.unavailable {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.5;
}

.frequency-selection h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.frequency-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.frequency-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f8fafc;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.frequency-option:hover {
    background: #e5e7eb;
}

.frequency-option input[type="radio"] {
    margin: 0;
}

/* Formulario de Detalles */
.booking-details-form {
    display: grid;
    gap: 30px;
}

.booking-details-form .form-section h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

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

.booking-details-form .form-group {
    display: flex;
    flex-direction: column;
}

.booking-details-form .form-group label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.booking-details-form input,
.booking-details-form select,
.booking-details-form textarea {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

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

.extras-selection {
    display: grid;
    gap: 16px;
}

.booking-details-form .extra-checkbox {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.booking-details-form .extra-checkbox:hover {
    border-color: var(--primary-color);
}

.booking-details-form .extra-checkbox:has(input:checked) {
    border-color: var(--success-color);
    background: rgba(16, 185, 129, 0.05);
}

.special-options {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.special-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

/* Resumen de Reserva */
.booking-summary {
    display: grid;
    gap: 30px;
}

.summary-card {
    background: #f8fafc;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    border: 2px solid #e5e7eb;
}

.summary-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 24px;
    text-align: center;
}

.summary-section {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.summary-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-section h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.summary-total {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.total-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.total-note {
    opacity: 0.8;
}

.confirmation-actions {
    text-align: center;
}

.terms-acceptance {
    margin-bottom: 24px;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    cursor: pointer;
}

.confirmation-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-light);
}

/* Navegación de Reservas */
.booking-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

/* Información de Reservas */
.booking-info-section {
    padding: 80px 0;
}

.booking-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.info-card h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

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

/* Modal de Confirmación */
.booking-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-confirmation-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.booking-confirmation-modal .modal-content {
    position: relative;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

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

.confirmation-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.booking-confirmation-modal h2 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.confirmation-details {
    background: #f8fafc;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 24px 0;
    text-align: left;
}

.confirmation-details .detail {
    margin-bottom: 8px;
}

.confirmation-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

/* ===== ESTILOS ESPECÍFICOS PARA SOBRE NOSOTROS ===== */

/* Hero de Sobre Nosotros */
.about-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Nuestra Historia */
.our-story-section {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.story-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.story-timeline {
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.story-stats {
    display: grid;
    gap: 20px;
}

.stat-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 14px;
}

/* Valores */
.values-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.value-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.value-card h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

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

/* Equipo */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.team-member {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-photo {
    position: relative;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 16px;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.member-social a:hover {
    background: var(--secondary-color);
    color: white;
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 16px;
}

.member-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: var(--gradient-accent);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

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

.team-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

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

.team-stat .stat-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.team-stat .stat-info h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.team-stat .stat-info p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Certificaciones */
.certifications-section {
    padding: 80px 0;
    background: #f8fafc;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.certification-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.cert-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.certification-card h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.certification-card p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.cert-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cert-details span {
    font-size: 14px;
    color: var(--text-light);
}

/* Testimonios Detallados */
.detailed-testimonials-section {
    padding: 80px 0;
}

.detailed-testimonials {
    display: grid;
    gap: 40px;
}

.detailed-testimonial {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.detailed-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.detailed-testimonial .testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.detailed-testimonial .testimonial-rating svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    fill: currentColor;
}

.detailed-testimonial blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 30px;
    font-style: italic;
}

.detailed-testimonial .testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.detailed-testimonial .testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.author-details p {
    color: var(--text-light);
    margin-bottom: 4px;
}

.client-since {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

/* CTA de Sobre Nosotros */
.about-cta-section {
    background: var(--gradient-secondary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-cta-section h2 {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.about-cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ESTILOS ESPECÍFICOS PARA CONTACTO ===== */

/* Hero de Contacto */
.contact-hero {
    background: var(--gradient-accent);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 20px 24px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-option .option-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-option .option-icon svg {
    width: 24px;
    height: 24px;
}

.contact-option .option-info h3 {
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-option .option-info p {
    opacity: 0.8;
    font-size: 14px;
}

/* Formulario Principal de Contacto */
.main-contact-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.contact-form-container .form-header {
    background: var(--gradient-primary);
    color: white;
    padding: 40px;
    text-align: center;
}

.contact-form-container .form-header h2 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-form-container .form-header p {
    opacity: 0.9;
}

.main-contact-form {
    padding: 40px;
}

.form-sections {
    display: grid;
    gap: 40px;
}

.main-contact-form .form-section {
    padding-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
}

.main-contact-form .form-section:last-child {
    border-bottom: none;
}

.main-contact-form .form-section h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

.service-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service-type-option {
    cursor: pointer;
}

.service-type-option input[type="radio"] {
    display: none;
}

.service-type-option .option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-type-option:hover .option-content {
    border-color: var(--primary-color);
}

.service-type-option input[type="radio"]:checked + .option-content {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.service-type-option .option-content svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

.service-type-option .option-content span {
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
    font-size: 14px;
}

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

.main-contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.main-contact-form .form-group label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

.main-contact-form input,
.main-contact-form select,
.main-contact-form textarea {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

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

.main-contact-form .extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.main-contact-form .extra-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.main-contact-form .extra-option:hover {
    border-color: var(--primary-color);
}

.main-contact-form .extra-option:has(input:checked) {
    border-color: var(--success-color);
    background: rgba(16, 185, 129, 0.05);
}

.special-preferences {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.preference-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.form-submit .form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-light);
}

/* Información de Contacto */
.contact-info-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.contact-card h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.contact-detail {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Mapa y Cobertura */
.map-coverage-section {
    padding: 80px 0;
    background: #f8fafc;
}

.map-coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.map-container {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

#contact-map {
    width: 100%;
    height: 400px;
}

.coverage-info h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 24px;
}

.coverage-zones {
    display: grid;
    gap: 30px;
}

.zone-category {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
}

.zone-category h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.zone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.zone-item {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.zone-price {
    font-weight: 600;
    color: var(--success-color);
}

.coverage-note {
    display: flex;
    gap: 16px;
    background: rgba(37, 99, 235, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-top: 30px;
}

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

.note-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.note-content h4 {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.note-content p {
    color: var(--text-light);
    line-height: 1.5;
}

/* FAQ de Contacto */
.contact-faq-section {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* CTA Final de Contacto */
.contact-final-cta {
    background: var(--gradient-secondary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-final-cta h2 {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-final-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-final-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive para páginas adicionales */
@media (max-width: 1024px) {
    .story-content,
    .map-coverage-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .datetime-selection {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .booking-details-form .form-row,
    .main-contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .service-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-contact-form .extras-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-option {
        width: 100%;
        max-width: 300px;
    }

    .service-type-grid {
        grid-template-columns: 1fr;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .frequency-options {
        grid-template-columns: 1fr;
    }

    .booking-navigation,
    .contact-final-cta .cta-buttons,
    .about-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .story-timeline::before {
        left: 15px;
    }

    .timeline-year {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

/* ===== ESTILOS PARA PÁGINAS LEGALES ===== */

.legal-page {
    padding: 120px 0 80px;
    background: #f8fafc;
    min-height: 100vh;
}

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

.legal-header h1 {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
}

.last-updated {
    color: var(--text-light);
    font-size: 14px;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: var(--shadow-sm);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-section h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin: 24px 0 16px;
}

.legal-section p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 20px;
}

.legal-section li {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 8px;
}

.info-box {
    background: rgba(37, 99, 235, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 20px 0;
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
}

.info-box ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.info-box li {
    margin-bottom: 8px;
    padding-left: 0;
}

/* Grids para finalidades y derechos */
.purpose-grid,
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.purpose-card,
.right-card {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.purpose-card:hover,
.right-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.purpose-icon,
.right-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.purpose-icon svg,
.right-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.purpose-card h3,
.right-card h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.purpose-card p,
.right-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.legal-basis {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
    background: rgba(37, 99, 235, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-block;
}

/* Tabla de retención */
.retention-table {
    background: #f8fafc;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 20px 0;
}

.retention-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}

.retention-row:last-child {
    border-bottom: none;
}

.retention-type,
.retention-period {
    padding: 16px 20px;
}

.retention-type {
    background: white;
    font-weight: 500;
    color: var(--text-color);
}

.retention-period {
    background: #f8fafc;
    color: var(--text-light);
}

/* Ejercer derechos */
.exercise-rights {
    background: rgba(16, 185, 129, 0.05);
    border-left: 4px solid var(--success-color);
    padding: 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 24px 0;
}

.exercise-rights h3 {
    color: var(--success-color);
    margin-bottom: 16px;
}

/* Enlaces legales */
.legal-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--secondary-color);
}

/* Información de contacto */
.contact-info {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: var(--border-radius);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item span {
    color: var(--text-color);
}

/* Responsive para páginas legales */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .purpose-grid,
    .rights-grid {
        grid-template-columns: 1fr;
    }

    .retention-row {
        grid-template-columns: 1fr;
    }

    .retention-type {
        border-bottom: 1px solid #e5e7eb;
    }

    .legal-section h2 {
        font-size: 1.3rem;
    }
}/*
 ===== ESTILOS ADICIONALES PARA PÁGINAS LEGALES ===== */

/* Servicios en términos y condiciones */
.services-list {
    display: grid;
    gap: 20px;
    margin: 24px 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 20px;
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.service-item .service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-item .service-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.service-details h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.service-details p {
    color: var(--text-light);
    margin: 0;
}

/* Información de precios */
.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.pricing-card {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.pricing-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.pricing-card h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.pricing-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Política de cancelación */
.cancellation-policy {
    display: grid;
    gap: 20px;
    margin: 24px 0;
}

.policy-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8fafc;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 20px;
}

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

.policy-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.policy-content h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.policy-content p {
    color: var(--text-light);
    margin: 0;
}

/* Resumen de protección de datos */
.data-protection-summary,
.data-compliance {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.protection-item,
.compliance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(37, 99, 235, 0.05);
    padding: 12px 20px;
    border-radius: 20px;
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.protection-item svg,
.compliance-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.protection-item span,
.compliance-item span {
    font-weight: 500;
    color: var(--text-color);
}

/* ===== ESTILOS ESPECÍFICOS PARA AVISO LEGAL ===== */

/* Tarjeta de datos de empresa */
.company-data-card {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin: 24px 0;
    box-shadow: var(--shadow-md);
}

.company-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.company-logo {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo svg {
    width: 40px;
    height: 40px;
    color: white;
}

.company-name h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.company-name p {
    color: var(--text-light);
    margin: 0;
}

.company-details {
    display: grid;
    gap: 12px;
}

.detail-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.detail-row:last-child {
    border-bottom: none;
}

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

.detail-value {
    color: var(--text-light);
}

/* Grid de datos registrales */
.registry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.registry-card {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.registry-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.registry-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.registry-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.registry-card h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.registry-details p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 14px;
}

.registry-details p:last-child {
    margin-bottom: 0;
}

/* Propiedad intelectual */
.intellectual-property {
    display: grid;
    gap: 20px;
    margin: 24px 0;
}

.ip-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f8fafc;
    border-radius: var(--border-radius);
    padding: 20px;
    border-left: 4px solid var(--secondary-color);
}

.ip-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ip-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.ip-content h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.ip-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Información de cookies */
.cookies-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.cookie-type {
    background: rgba(249, 115, 22, 0.05);
    border: 2px solid rgba(249, 115, 22, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
}

.cookie-type h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.cookie-type p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Seguros y certificaciones */
.insurance-certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.cert-card {
    background: white;
    border: 2px solid var(--success-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.cert-card .cert-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.cert-card .cert-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.cert-card h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}

.cert-details p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 14px;
}

.cert-details p:last-child {
    margin-bottom: 0;
}

/* Información de jurisdicción */
.jurisdiction-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.jurisdiction-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(37, 99, 235, 0.05);
    border: 2px solid rgba(37, 99, 235, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
}

.jurisdiction-item svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.jurisdiction-item h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.jurisdiction-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
}

/* Responsive para páginas legales adicionales */
@media (max-width: 768px) {
    .company-header {
        flex-direction: column;
        text-align: center;
    }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .detail-label {
        font-size: 14px;
    }

    .registry-grid,
    .insurance-certifications {
        grid-template-columns: 1fr;
    }

    .pricing-info {
        grid-template-columns: 1fr;
    }

    .data-protection-summary,
    .data-compliance {
        flex-direction: column;
        align-items: center;
    }

    .jurisdiction-info {
        grid-template-columns: 1fr;
    }

    .policy-item,
    .ip-item {
        flex-direction: column;
        text-align: center;
    }
}