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

:root {
    --red: #ff0000;
    --black: #000000;
    --white: #ffffff;
    --dark-red: #cc0000;
    --dark-bg: #333333;
}

body {
    font-family: 'Oswald', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

svg {
    max-width: 100%;
    height: auto;
}

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

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 3px solid var(--white);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.header-logo {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    border: 3px solid var(--red);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.logo-header {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-header:hover {
    transform: scale(1.1);
}

.header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--red);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--red);
    text-shadow: 0 0 10px var(--red);
}

.btn-nav {
    background: var(--red);
    color: var(--white);
    border: 3px solid var(--red);
    padding: 10px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: transparent;
    color: var(--red);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.btn-nav::after {
    display: none;
}

/* Mobile Menu Toggle (Hamburguesa) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, #1a0000 100%);
    overflow: hidden;
    padding-top: 80px;
}

/* Ajuste para cuando hay zoom compensado - usa min-height para evitar superposición */
body.zoom-compensated .hero {
    height: auto;
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    animation: pulse-overlay 4s ease-in-out infinite;
}

@keyframes pulse-overlay {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-logo-top {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: logo-float 3s ease-in-out infinite;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    border: 4px solid var(--red);
    box-shadow: 
        0 0 40px rgba(255, 0, 0, 0.6),
        inset 0 0 20px rgba(255, 0, 0, 0.1);
}

.logo-hero {
    height: 120px;
    width: auto;
}

@keyframes logo-float {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-10px) rotate(2deg); }
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.title-logo-container {
    background: var(--white);
    padding: 30px 50px;
    border-radius: 20px;
    border: 5px solid var(--red);
    box-shadow: 
        0 0 50px rgba(255, 0, 0, 0.7),
        inset 0 0 30px rgba(255, 0, 0, 0.1);
    animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% { 
        box-shadow: 
            0 0 50px rgba(255, 0, 0, 0.7),
            inset 0 0 30px rgba(255, 0, 0, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 80px rgba(255, 0, 0, 1),
            inset 0 0 40px rgba(255, 0, 0, 0.2);
    }
}

.title-logo {
    height: clamp(150px, 25vw, 250px);
    width: auto;
    display: block;
}

.title-subtitle {
    display: block;
    color: var(--white);
    font-size: 0.4em;
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.4),
        2px 2px 0 var(--black),
        4px 4px 0 var(--red);
    letter-spacing: 0.3em;
    margin-top: 10px;
}

.hero-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    border: 3px solid var(--white);
    padding: 15px 40px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: border-pulse 2s ease-in-out infinite;
}

.hero-guarantee {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 30px;
    padding: 15px 30px;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid var(--red);
    border-radius: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-guarantee .material-icons {
    font-size: 1.5rem;
    color: var(--red);
    text-shadow: 0 0 10px var(--red);
}

@keyframes border-pulse {
    0%, 100% { 
        box-shadow: 
            0 0 30px rgba(255, 255, 255, 0.4),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 50px rgba(255, 255, 255, 0.7),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

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

.btn-primary, .btn-secondary, .btn-cta {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 20px 40px;
    border: 4px solid var(--red);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.6),
        0 10px 0 var(--dark-red);
}

.btn-primary:hover {
    transform: translateY(5px);
    box-shadow: 
        0 0 50px rgba(255, 0, 0, 0.9),
        0 5px 0 var(--dark-red);
}

.btn-primary.pulse {
    animation: button-pulse 2s ease-in-out infinite;
}

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

.btn-secondary {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}

.btn-secondary:hover {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

/* Floating Bugs */
.floating-bugs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.bug {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.bug-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bug-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    width: 80px;
    height: 80px;
}

.bug-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
    width: 50px;
    height: 50px;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg);
    }
    25% { 
        transform: translate(50px, -50px) rotate(90deg);
    }
    50% { 
        transform: translate(-30px, -100px) rotate(180deg);
    }
    75% { 
        transform: translate(70px, -50px) rotate(270deg);
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--black);
    border-top: 5px solid var(--white);
    border-bottom: 5px solid var(--white);
}

.stats-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 50px;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        2px 2px 0 var(--black);
}

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

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border: 4px solid var(--white);
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--red);
    text-shadow: 
        0 0 20px var(--red),
        2px 2px 0 var(--black);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-plus {
    font-size: 0.6em;
    vertical-align: super;
    margin-left: 2px;
    display: inline-block;
}

.stat-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
}

.stat-description {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    color: var(--white);
    opacity: 0.7;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--black) 0%, #0a0000 100%);
}

.services-section .container {
    text-align: center;
}

.section-logo {
    text-align: center;
    margin: 0 auto 30px;
    animation: logo-pulse 2s ease-in-out infinite;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    border: 4px solid var(--red);
    display: inline-block;
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.5),
        inset 0 0 15px rgba(255, 0, 0, 0.1);
    width: fit-content;
}

.logo-section {
    height: 100px;
    width: auto;
}

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

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 60px;
    text-shadow: 
        0 0 30px var(--red),
        4px 4px 0 var(--black);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    line-height: 1.2;
    text-align: center;
}

.section-title br {
    display: block;
}

.section-icon-left,
.section-icon-right {
    font-size: 1.8em;
    color: var(--red);
    animation: spark 2s ease-in-out infinite;
    text-shadow: 0 0 20px var(--red);
    flex-shrink: 0;
}

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

@keyframes spark {
    0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.2); }
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 5px solid var(--white);
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: visible;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.service-card:hover::after {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 
        0 20px 60px rgba(255, 255, 255, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.1);
}

.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.service-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px var(--red));
}

.service-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.service-card p {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.service-description {
    margin-bottom: 15px;
}

.service-guarantee {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: var(--white);
    margin: 10px 0;
    padding: 10px;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid #00ff00;
    border-radius: 8px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-guarantee .material-icons {
    font-size: 1.2rem;
    color: #00ff00;
}

.service-price-btn {
    font-family: 'Anton', sans-serif;
    font-size: 2.2rem;
    color: var(--white);
    text-shadow: 
        0 0 20px var(--red),
        2px 2px 0 var(--black);
    margin: 15px 0;
    padding: 18px 35px;
    background: var(--red);
    border: 4px solid var(--white);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.6),
        0 10px 0 var(--dark-red);
    animation: price-pulse 2s ease-in-out infinite;
    width: 100%;
    max-width: 300px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-price-btn:hover {
    transform: translateY(5px);
    box-shadow: 
        0 0 50px rgba(255, 0, 0, 0.9),
        0 5px 0 var(--dark-red);
    background: var(--white);
    color: var(--red);
}

.service-note {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: var(--white);
    margin-top: 8px;
    opacity: 0.8;
    font-style: italic;
}

.service-features-compact,
.service-tools-compact {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    color: var(--white);
    margin: 12px 0;
    text-align: center;
    line-height: 1.8;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.feature-item,
.tool-item {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.service-features-compact .material-icons,
.service-tools-compact .material-icons {
    font-size: 1.2rem;
    color: var(--red);
    text-shadow: 0 0 10px var(--red);
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.feature-item span:not(.material-icons),
.tool-item span:not(.material-icons) {
    display: inline-block;
    vertical-align: middle;
}

@keyframes price-pulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    }
    50% { 
        box-shadow: 0 0 40px rgba(255, 0, 0, 0.8);
    }
}

.btn-cotizar {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 15px 30px;
    background: var(--red);
    color: var(--white);
    border: 4px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 15px 0;
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.6),
        0 10px 0 var(--dark-red);
    width: 100%;
    max-width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.btn-cotizar:hover {
    transform: translateY(5px);
    box-shadow: 
        0 0 50px rgba(255, 0, 0, 0.9),
        0 5px 0 var(--dark-red);
    background: var(--white);
    color: var(--red);
}

.service-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 8px 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border: 2px solid var(--white);
    position: absolute;
    top: -15px;
    right: 20px;
    transform: rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--black);
    border-top: 5px solid var(--white);
    border-bottom: 5px solid var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
}

.process-step {
    position: relative;
    padding: 25px 20px;
    border: 4px solid var(--white);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.process-step:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.1);
}

.step-number {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    color: var(--red);
    text-shadow: 
        0 0 20px var(--red),
        3px 3px 0 var(--black);
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.3;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-content h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    border-bottom: 3px solid var(--white);
    padding-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.step-content p {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    line-height: 1.6;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex: 1;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--dark-red) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0, 0, 0, 0.1) 10px,
            rgba(0, 0, 0, 0.1) 20px
        );
    animation: stripe-move 10s linear infinite;
}

@keyframes stripe-move {
    0% { transform: translateX(0); }
    100% { transform: translateX(40px); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    text-shadow: 
        4px 4px 0 var(--black),
        8px 8px 0 rgba(0, 0, 0, 0.5);
    animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.cta-text {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 40px;
    text-shadow: 2px 2px 0 var(--black);
}

.btn-cta {
    background: var(--red);
    color: var(--white);
    border: 4px solid var(--white);
    font-size: 1.5rem;
    padding: 25px 50px;
    box-shadow: 
        0 0 40px rgba(255, 0, 0, 0.6),
        0 15px 0 var(--dark-red);
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(10px);
    box-shadow: 
        0 0 60px rgba(255, 0, 0, 0.9),
        0 5px 0 var(--dark-red);
    background: var(--white);
    color: var(--red);
}

/* Evaluation Section */
.evaluation-section {
    padding: 100px 0;
    background: var(--black);
    border-top: 5px solid var(--white);
    border-bottom: 5px solid var(--white);
}

.evaluation-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.evaluation-step {
    position: relative;
    padding: 30px;
    border: 4px solid var(--white);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.evaluation-step:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.1);
}

.evaluation-note {
    background: rgba(255, 0, 0, 0.1);
    border: 3px solid var(--red);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: left;
}

.evaluation-note p {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    line-height: 1.8;
    font-size: 1rem;
}

.evaluation-note strong {
    color: var(--red);
    text-shadow: 0 0 10px var(--red);
}

.link-button {
    background: transparent;
    border: none;
    color: var(--red);
    text-decoration: underline;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.link-button:hover {
    color: var(--white);
    text-shadow: 0 0 10px var(--red);
}

.disclaimer-content {
    max-width: 900px !important;
    width: 90% !important;
    text-align: left;
    margin: 3% auto !important;
    padding: 40px !important;
}

.disclaimer-content .modal-title {
    text-align: center;
    margin-bottom: 30px;
}

.disclaimer-content .modal-logo {
    text-align: center;
    margin-bottom: 20px;
}

.disclaimer-text {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
}

.disclaimer-text h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: var(--red);
    margin: 25px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: left;
    width: 100%;
}

.disclaimer-text h3:first-child {
    margin-top: 0;
}

.disclaimer-text p {
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    text-align: left;
    width: 100%;
}

.disclaimer-text ul,
.disclaimer-text ol {
    margin: 15px 0 15px 30px;
    padding-left: 20px;
    text-align: left;
    width: calc(100% - 50px);
}

.disclaimer-text li {
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    text-align: left;
    list-style-position: outside;
}

.disclaimer-text strong {
    color: var(--red);
    text-shadow: 0 0 10px var(--red);
}

.pricing-info {
    background: rgba(255, 0, 0, 0.1);
    border: 3px solid var(--red);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: left;
    width: 100%;
}

.pricing-info h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.3rem;
    color: var(--red);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px var(--red);
    text-align: left;
    width: 100%;
}

.pricing-info p {
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    text-align: left;
    width: 100%;
}

.pricing-info ul {
    margin: 15px 0 15px 30px;
    padding-left: 20px;
    text-align: left;
    width: calc(100% - 50px);
}

.pricing-info li {
    margin-bottom: 8px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    text-align: left;
    list-style-position: outside;
}

.disclaimer-note {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid var(--red);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: left;
    width: 100%;
}

.disclaimer-note p {
    margin: 0;
    text-align: left;
}

/* Quality Section */
.quality-section {
    padding: 100px 0;
    background: var(--black);
    border-top: 5px solid var(--white);
    border-bottom: 5px solid var(--white);
}

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

.quality-card {
    background: rgba(255, 255, 255, 0.05);
    border: 4px solid var(--white);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.quality-card:hover::before {
    left: 100%;
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
    border-color: var(--red);
    background: rgba(255, 255, 255, 0.1);
}

.quality-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--red);
    text-shadow: 0 0 20px var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quality-icon.material-icons {
    font-size: 3.5rem;
}

.quality-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.quality-card p {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    line-height: 1.8;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.cta-guarantee {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin: 20px 0 30px;
    padding: 15px 30px;
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid var(--red);
    border-radius: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cta-guarantee .material-icons {
    font-size: 1.8rem;
    color: var(--red);
    text-shadow: 0 0 10px var(--red);
}

.cta-phone {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    text-shadow: 
        3px 3px 0 var(--black),
        0 0 20px rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cta-phone .material-icons {
    font-size: 2.5rem;
    color: var(--white);
    text-shadow: 
        3px 3px 0 var(--black),
        0 0 20px rgba(255, 255, 255, 0.5);
    animation: phone-ring 2s ease-in-out infinite;
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--black);
    border-top: 5px solid var(--white);
}

.footer-content {
    text-align: center;
}

.footer-logo-container {
    margin-bottom: 20px;
    text-align: center;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    border: 3px solid var(--red);
    display: inline-block;
    box-shadow: 
        0 0 25px rgba(255, 0, 0, 0.5),
        inset 0 0 10px rgba(255, 0, 0, 0.1);
}

.logo-footer {
    height: 80px;
    width: auto;
}

.footer-text {
    font-family: 'Oswald', sans-serif;
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

/* Custom Scrollbar Styles */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--red) var(--black);
}

*::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

*::-webkit-scrollbar-track {
    background: var(--black);
    border: 2px solid var(--white);
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    background: var(--red);
    border: 2px solid var(--white);
    border-radius: 10px;
    box-shadow: 
        0 0 10px rgba(255, 0, 0, 0.5),
        inset 0 0 5px rgba(0, 0, 0, 0.3);
}

*::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.8),
        inset 0 0 5px rgba(0, 0, 0, 0.3);
}

*::-webkit-scrollbar-corner {
    background: var(--black);
    border: 2px solid var(--white);
}

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 30px rgba(37, 211, 102, 0.6),
        0 10px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: visible;
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(37, 211, 102, 0.6),
            0 10px 20px rgba(0, 0, 0, 0.3);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 
            0 0 50px rgba(37, 211, 102, 0.9),
            0 15px 30px rgba(0, 0, 0, 0.4);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 
        0 0 60px rgba(37, 211, 102, 1),
        0 20px 40px rgba(0, 0, 0, 0.5);
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.whatsapp-text {
    position: absolute;
    right: 85px;
    background: #25D366;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
    opacity: 1;
    transform: translateX(0);
    pointer-events: none;
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(37, 211, 102, 0.5);
    animation: whatsapp-text-bounce 2s ease-in-out infinite;
    border: 2px solid var(--white);
    z-index: 1001;
}

@keyframes whatsapp-text-bounce {
    0%, 100% {
        transform: translateX(0) translateY(0);
        box-shadow: 
            0 5px 20px rgba(0, 0, 0, 0.4),
            0 0 15px rgba(37, 211, 102, 0.5);
    }
    25% {
        transform: translateX(-5px) translateY(-3px);
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(37, 211, 102, 0.7);
    }
    50% {
        transform: translateX(0) translateY(-5px);
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.6),
            0 0 25px rgba(37, 211, 102, 0.9);
    }
    75% {
        transform: translateX(5px) translateY(-3px);
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-float:hover .whatsapp-text {
    animation: whatsapp-text-bounce-hover 1.5s ease-in-out infinite;
}

@keyframes whatsapp-text-bounce-hover {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
        box-shadow: 
            0 8px 25px rgba(0, 0, 0, 0.5),
            0 0 25px rgba(37, 211, 102, 0.8);
    }
    50% {
        transform: translateX(0) translateY(-8px) scale(1.1);
        box-shadow: 
            0 12px 35px rgba(0, 0, 0, 0.6),
            0 0 35px rgba(37, 211, 102, 1);
    }
}

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Soporte para Safari */
    animation: fadeIn 0.3s ease;
}

/* Aplicar blur al contenido de fondo cuando el modal esté abierto */
body.modal-open {
    overflow: hidden;
}

/* Aplicar blur a todos los elementos excepto el modal */
body.modal-open > *:not(.modal):not(.whatsapp-float) {
    filter: blur(8px);
    transition: filter 0.3s ease;
    pointer-events: none; /* Prevenir interacciones con el fondo */
    user-select: none; /* Prevenir selección de texto en el fondo */
}

/* El modal y sus elementos no deben tener blur */
.modal,
.modal * {
    filter: none !important;
    pointer-events: auto !important;
    user-select: auto !important;
}

/* WhatsApp float no debe tener blur para mantener la funcionalidad */
.whatsapp-float,
.whatsapp-float * {
    filter: none !important;
    pointer-events: auto !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--black);
    margin: auto;
    padding: 25px;
    border: 5px solid var(--white);
    width: 90%;
    max-width: 520px;
    max-height: none; /* Sin límite de altura en desktop */
    height: auto; /* Altura automática basada en contenido */
    overflow-y: visible; /* Sin scroll en desktop */
    overflow-x: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 50px rgba(255, 255, 255, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.1);
    animation: modalFadeIn 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--white);
    background: var(--red);
    font-size: 32px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 100;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 
        0 0 20px rgba(255, 0, 0, 0.8),
        0 4px 10px rgba(0, 0, 0, 0.5);
}

.close-modal:hover {
    color: var(--white);
    background: var(--dark-red);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 1),
        0 6px 15px rgba(0, 0, 0, 0.7);
    border-color: var(--white);
}

.close-modal:active {
    transform: rotate(90deg) scale(0.95);
}

.modal-logo {
    text-align: center;
    margin-bottom: 12px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 15px;
    border: 4px solid var(--red);
    display: inline-block;
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.5),
        inset 0 0 15px rgba(255, 0, 0, 0.1);
}

.logo-modal {
    height: 60px;
    width: auto;
}

.modal-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.6rem;
    color: var(--red);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    text-shadow: 
        0 0 20px var(--red),
        2px 2px 0 var(--black);
}


.booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Espaciado más compacto */
    text-align: left;
    padding-right: 5px;
    flex: 0 0 auto; /* No flex, tamaño basado en contenido */
    min-height: 0;
    /* Sin scroll en desktop - todo debe caber */
}

/* Scrollbar personalizado para el formulario */
.booking-form::-webkit-scrollbar {
    width: 8px;
}

.booking-form::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.booking-form::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 4px;
}

.booking-form::-webkit-scrollbar-thumb:hover {
    background: var(--dark-red);
}

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

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

.form-group label {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px; /* Menos margen para ser más compacto */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.form-group input,
.form-group textarea,
.form-group select {
    font-family: 'Oswald', sans-serif;
    padding: 10px 12px; /* Padding vertical reducido */
    background: var(--black);
    border: 3px solid var(--white);
    color: var(--white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input[type="date"],
.form-group input[type="time"] {
    cursor: pointer;
    color-scheme: dark;
    background-color: var(--black) !important;
    color: var(--white) !important;
    padding: 8px 12px !important; /* Más compacto: menos padding vertical */
    min-height: auto !important; /* Permitir que se encoja */
}

/* Icono del calendario blanco y visible */
.form-group input[type="date"],
.form-group input[type="time"] {
    color-scheme: dark;
    /* Forzar el fondo negro y texto blanco */
    background-color: var(--black) !important;
    color: var(--white) !important;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1 !important;
    padding: 6px !important; /* Más compacto: menos padding */
    margin-left: 5px !important;
    width: 20px !important; /* Más pequeño: 20px en lugar de 28px */
    height: 20px !important; /* Más pequeño: 20px en lugar de 28px */
    background: transparent !important;
    /* Reemplazar completamente con SVG blanco personalizado */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 20px 20px !important; /* Más pequeño: 20px */
    border: none !important;
    outline: none !important;
    filter: none !important;
    -webkit-filter: none !important;
}

.form-group input[type="date"]::-webkit-inner-spin-button,
.form-group input[type="date"]::-webkit-clear-button {
    filter: invert(1) brightness(3);
    opacity: 1 !important;
    cursor: pointer;
}

/* Para Firefox */
.form-group input[type="date"]::-moz-calendar-picker-indicator {
    filter: invert(1) brightness(3) contrast(1.2);
    opacity: 1 !important;
    cursor: pointer;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
    /* Asegurar que el select tenga suficiente espacio y scroll si es necesario */
    position: relative;
    z-index: 10;
}

/* Para móviles, hacer que el select tenga scroll interno si es necesario */
@media (max-width: 768px) {
    /* En móvil, asegurar que el modal tenga scroll funcional */
    .modal-content {
        overflow-y: auto !important;
        overflow-x: hidden !important;
        max-height: 95vh !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
        padding: 20px 15px !important;
    }
    
    .booking-form {
        overflow-y: visible !important;
        max-height: none !important;
    }
    
    .form-group select {
        /* En móvil, el navegador manejará el dropdown */
        max-height: none;
        position: relative;
        z-index: 10;
    }
}

.form-group select option {
    background: var(--black);
    color: var(--white);
    padding: 12px;
    /* Asegurar que las opciones sean legibles y tengan scroll si es necesario */
    min-height: 36px;
    line-height: 1.5;
}

/* Hover en las opciones del select */
.form-group select option:hover {
    background: var(--red) !important;
    color: var(--white) !important;
}

/* Opción seleccionada */
.form-group select option:checked {
    background: var(--red) !important;
    color: var(--white) !important;
}

/* Para navegadores que soportan :checked en select abierto */
.form-group select option:focus {
    background: var(--red) !important;
    color: var(--white) !important;
}

/* Asegurar que el select se posicione correctamente y no se salga de la pantalla */
.form-group {
    position: relative;
}

/* Ajustar el modal para que el contenido no se salga */
.modal-content {
    display: flex;
    flex-direction: column;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: calc(90vh - 150px);
    overflow-y: auto;
    padding-right: 5px;
}

/* Scrollbar personalizado para el formulario */
.booking-form::-webkit-scrollbar {
    width: 8px;
}

.booking-form::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.booking-form::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 4px;
}

/* Para móviles, asegurar que el select se vea bien */

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--red);
    background: var(--black);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.form-group select:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 0, 0.5);
}

.form-group select:focus {
    border-color: var(--red);
    background-color: rgba(255, 0, 0, 0.1);
}

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

.btn-submit {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px; /* Padding reducido para ser más compacto */
    background: var(--red);
    color: var(--white);
    border: 4px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
    box-shadow: 
        0 0 30px rgba(255, 0, 0, 0.6),
        0 10px 0 var(--dark-red);
}

.btn-submit:hover {
    transform: translateY(5px);
    box-shadow: 
        0 0 50px rgba(255, 0, 0, 0.9),
        0 5px 0 var(--dark-red);
    background: var(--white);
    color: var(--red);
}

.booking-success {
    text-align: center;
    padding: 40px;
    background: rgba(0, 255, 0, 0.1);
    border: 3px solid #00ff00;
    margin-top: 20px;
}

.booking-success h3 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: #00ff00;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 0 20px #00ff00;
}

.booking-success p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: clamp(3rem, 10vw, 8rem);
    }
    
    .title-logo {
        height: clamp(120px, 20vw, 200px);
    }
    
    .title-logo-container {
        padding: 20px 40px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 4vw, 3rem);
        gap: 10px;
    }
    
    .section-icon-left,
    .section-icon-right {
        font-size: 1.5em;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .process-timeline,
    .evaluation-timeline {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .quality-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .whatsapp-text {
        right: 75px;
        font-size: 0.85rem;
        padding: 10px 18px;
    }
    
    .footer {
        padding: 35px 0;
    }
    
    .logo-footer {
        height: clamp(60px, 10vw, 80px);
    }
    
    .footer-text {
        font-size: 0.85rem;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: clamp(2rem, 5vw, 4rem);
    }
    
    .cta-text {
        font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    }
    
    .cta-guarantee {
        font-size: clamp(0.9rem, 2vw, 1.3rem);
    }
    
    .stats-section,
    .services-section,
    .process-section,
    .quality-section {
        padding: 60px 0;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .main-header {
        padding: 10px 15px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    .header-logo {
        padding: 6px 12px;
        flex-shrink: 0;
    }
    
    .logo-header {
        height: 35px;
    }
    
    /* Menú Hamburguesa */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 70px 20px 20px;
        gap: 0;
        transition: right 0.3s ease;
        border-left: 3px solid var(--red);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .header-nav.active {
        right: 0;
    }
    
    /* Overlay para cerrar menú - agregado como elemento separado */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 15px 20px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: block;
        transition: background 0.2s ease;
    }
    
    .nav-link:active,
    .nav-link:hover {
        background: rgba(255, 0, 0, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .btn-nav {
        padding: 15px 20px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        border-radius: 5px;
    }
    
    /* Hero */
    .hero {
        padding-top: 80px;
        min-height: 100vh;
        padding-bottom: 40px;
    }
    
    .title-logo-container {
        padding: 15px 30px;
    }
    
    .title-logo {
        height: clamp(100px, 18vw, 180px);
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 6rem);
        gap: 15px;
    }
    
    .title-subtitle {
        font-size: 0.35em;
        margin-top: 8px;
    }
    
    .hero-tagline {
        font-size: clamp(0.9rem, 2.5vw, 1.5rem);
        padding: 12px 25px;
        margin-bottom: 25px;
    }
    
    .hero-guarantee {
        font-size: clamp(0.75rem, 2vw, 1rem);
        padding: 12px 20px;
        margin-bottom: 25px;
        flex-direction: column;
        gap: 5px;
    }
    
    .hero-guarantee .material-icons {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
        padding: 18px 30px;
    }
    
    /* Stats */
    .stats-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-description {
        font-size: 0.75rem;
    }
    
    /* Services */
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        gap: 8px;
    }
    
    .section-icon-left,
    .section-icon-right {
        font-size: 1.2em;
    }
    
    .section-logo {
        padding: 15px 20px;
        margin-bottom: 20px;
    }
    
    .logo-section {
        height: clamp(60px, 12vw, 80px);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: clamp(80px, 15vw, 100px);
        height: clamp(80px, 15vw, 100px);
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: clamp(1.3rem, 3vw, 1.8rem);
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .service-guarantee {
        font-size: 0.85rem;
        padding: 8px;
        margin: 8px 0;
        flex-wrap: wrap;
    }
    
    .service-guarantee .material-icons {
        font-size: 1rem;
    }
    
    .service-price-btn {
        font-size: clamp(1.5rem, 4vw, 2rem);
        padding: 15px 25px;
        max-width: 100%;
    }
    
    .service-note {
        font-size: 0.8rem;
    }
    
    .service-features-compact,
    .service-tools-compact {
        font-size: 0.75rem;
        gap: 10px;
        margin: 10px 0;
    }
    
    .feature-item,
    .tool-item {
        gap: 4px;
    }
    
    .service-features-compact .material-icons,
    .service-tools-compact .material-icons {
        font-size: 1rem;
    }
    
    .btn-cotizar {
        font-size: 1rem;
        padding: 12px 25px;
        max-width: 100%;
    }
    
    /* Process & Evaluation */
    .process-timeline,
    .evaluation-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step,
    .evaluation-step {
        padding: 20px 15px;
        min-height: auto;
    }
    
    .step-number {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        margin-bottom: 12px;
    }
    
    .step-content h3 {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
        margin-bottom: 10px;
        padding-bottom: 8px;
    }
    
    .step-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .evaluation-note {
        padding: 15px;
        margin-top: 20px;
    }
    
    .evaluation-note p {
        font-size: 0.9rem;
    }
    
    /* Quality Section */
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quality-card {
        padding: 25px 20px;
    }
    
    .quality-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .quality-icon.material-icons {
        font-size: 3rem;
    }
    
    .quality-card h3 {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
        margin-bottom: 12px;
    }
    
    .quality-card p {
        font-size: 0.9rem;
    }
    
    /* CTA */
    .cta-title {
        font-size: clamp(1.8rem, 5vw, 3rem);
    }
    
    .cta-text {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        margin-bottom: 20px;
    }
    
    .cta-guarantee {
        font-size: clamp(0.85rem, 2vw, 1.2rem);
        padding: 12px 20px;
        margin: 15px 0 25px;
        flex-direction: column;
        gap: 5px;
    }
    
    .cta-guarantee .material-icons {
        font-size: 1.5rem;
    }
    
    .btn-cta {
        font-size: clamp(1rem, 2.5vw, 1.3rem);
        padding: 20px 40px;
        margin-bottom: 25px;
    }
    
    .cta-phone {
        font-size: clamp(1.5rem, 4vw, 2rem);
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-phone .material-icons {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    /* WhatsApp */
    /* Floating Bugs - Hide on mobile */
    .floating-bugs {
        display: none;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 35px;
        height: 35px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    /* Modal */
    .modal-content {
        margin: auto;
        padding: 25px 15px;
        width: 95%;
        max-width: 400px;
        max-height: 90vh;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .disclaimer-content {
        max-width: 95% !important;
        width: 95% !important;
        padding: 25px 15px !important;
        margin: 5% auto !important;
        max-height: 90vh;
    }
    
    .modal-title {
        font-size: clamp(1.3rem, 3vw, 1.8rem);
        margin-bottom: 15px;
    }
    
    .modal-logo {
        padding: 12px 20px;
        margin-bottom: 12px;
    }
    
    .logo-modal {
        height: clamp(50px, 10vw, 70px);
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.9rem;
        padding: 10px;
        padding-right: 35px;
        background: var(--black);
        color: var(--white);
    }
    
    .form-group select option {
        background: var(--black);
        color: var(--white);
    }
    
    .btn-submit {
        font-size: 1rem;
        padding: 12px;
    }
    
    /* Ya no usamos form-row, los campos están en columnas */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Asegurar que el select esté visible y las opciones aparezcan correctamente */
    .form-group select {
        position: relative;
        z-index: 10;
    }
    
    /* Ajustar el input de fecha para que el calendario sea visible */
    .form-group input[type="date"]::-webkit-calendar-picker-indicator {
        filter: none !important;
        -webkit-filter: none !important;
        opacity: 1 !important;
        padding: 10px !important;
        margin-left: 0;
        cursor: pointer;
        width: 28px !important;
        height: 28px !important;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='white' stroke='white' stroke-width='1' d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2z'/%3E%3C/svg%3E") !important;
        background-size: 24px 24px !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        background-color: transparent !important;
    }
    
    /* Sections Padding */
    .stats-section,
    .services-section,
    .process-section,
    .quality-section {
        padding: 50px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0;
    }
    
    .footer-logo-container {
        padding: 12px 20px;
        margin-bottom: 15px;
    }
    
    .logo-footer {
        height: clamp(50px, 10vw, 70px);
    }
    
    .footer-text {
        font-size: 0.8rem;
        padding: 0 10px;
    }
    
    .link-button {
        font-size: 0.85rem;
        display: block;
        margin-top: 8px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .main-header {
        padding: 8px 10px;
    }
    
    .logo-header {
        height: 30px;
    }
    
    .header-logo {
        padding: 5px 10px;
    }
    
    .header-nav {
        gap: 5px;
        flex-wrap: wrap;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 3px 0;
    }
    
    .btn-nav {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .hero {
        padding-top: 70px;
        min-height: auto;
        padding-bottom: 30px;
    }
    
    .title-logo-container {
        padding: 12px 20px;
    }
    
    .title-logo {
        height: clamp(80px, 15vw, 120px);
    }
    
    .hero-title {
        font-size: clamp(2rem, 7vw, 4rem);
    }
    
    .title-subtitle {
        font-size: 0.3em;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .hero-guarantee {
        font-size: 0.7rem;
        padding: 10px 15px;
    }
    
    .btn-primary, .btn-secondary {
        font-size: 0.9rem;
        padding: 15px 25px;
        max-width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 12px;
    }
    
    .stat-number {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-description {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 4vw, 2rem);
        gap: 5px;
    }
    
    .section-icon-left,
    .section-icon-right {
        font-size: 1em;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-price-btn {
        font-size: 1.3rem;
        padding: 12px 20px;
    }
    
    .process-step,
    .evaluation-step {
        padding: 15px 12px;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .quality-card {
        padding: 20px 15px;
    }
    
    .quality-icon {
        font-size: 2rem;
    }
    
    .quality-icon.material-icons {
        font-size: 2.5rem;
    }
    
    /* Sections Padding */
    .stats-section,
    .services-section,
    .process-section,
    .quality-section {
        padding: 40px 0;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
    
    .cta-text {
        font-size: 0.9rem;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 18px 35px;
    }
    
    .cta-phone {
        font-size: 1.3rem;
    }
    
    /* Floating Bugs - Hide on small mobile */
    .floating-bugs {
        display: none;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
    
    .modal-content {
        padding: 20px 12px;
        margin: 5% auto;
    }
    
    .disclaimer-content {
        padding: 20px 12px !important;
        max-height: 95vh;
        overflow-y: auto;
    }
    
    .disclaimer-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .disclaimer-text h3 {
        font-size: 1rem;
        margin-top: 15px;
        margin-bottom: 10px;
    }
    
    .disclaimer-text ul,
    .disclaimer-text ol {
        padding-left: 20px;
        margin: 10px 0;
    }
    
    .disclaimer-text li {
        margin: 5px 0;
        font-size: 0.85rem;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .logo-modal {
        height: 50px;
    }
    
    .modal-content {
        margin: auto;
        max-height: 95vh !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        padding: 20px 15px !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 95%;
        max-width: 400px;
        -webkit-overflow-scrolling: touch;
        display: flex !important;
        flex-direction: column !important;
        scroll-behavior: smooth;
    }
    
    .modal-title,
    .modal-logo {
        flex-shrink: 0;
    }
    
    /* Botón de cerrar más visible en móvil */
    .close-modal {
        width: 50px !important;
        height: 50px !important;
        font-size: 36px !important;
        top: 10px !important;
        right: 10px !important;
        border-width: 4px !important;
        box-shadow: 
            0 0 25px rgba(255, 0, 0, 1),
            0 5px 15px rgba(0, 0, 0, 0.6) !important;
    }
    
    .booking-form {
        gap: 12px;
        padding-right: 5px;
        overflow-y: visible !important;
        flex: 1;
        min-height: 0;
        /* El scroll está en el modal-content, no aquí */
    }
    
    /* Asegurar que el select tenga espacio para mostrar las opciones */
    .form-group select {
        position: relative;
        z-index: 10;
    }
    
    /* Calendario más visible en móvil - sin filter, solo SVG blanco */
    .form-group input[type="date"]::-webkit-calendar-picker-indicator {
        filter: none !important;
        -webkit-filter: none !important;
        opacity: 1 !important;
        padding: 10px !important;
        width: 28px !important;
        height: 28px !important;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='white' stroke='white' stroke-width='1' d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2z'/%3E%3C/svg%3E") !important;
        background-size: 24px 24px !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;
        background-color: transparent !important;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px !important; /* Evita zoom en iOS */
        padding: 12px;
        background: var(--black) !important;
        color: var(--white) !important;
    }
    
    /* Input de fecha - más compacto y con icono del calendario blanco visible */
    .form-group input[type="date"] {
        padding: 8px 12px !important; /* Más compacto: menos padding vertical */
        padding-right: 12px;
    }
    
    .form-group input[type="date"]::-webkit-calendar-picker-indicator {
        filter: none !important;
        -webkit-filter: none !important;
        opacity: 1 !important;
        padding: 6px !important; /* Más compacto */
        cursor: pointer;
        margin-left: 0;
        width: 20px !important; /* Más pequeño */
        height: 20px !important; /* Más pequeño */
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zm0-12H5V6h14v2z'/%3E%3C/svg%3E") !important;
        background-size: 20px 20px !important; /* Más pequeño */
        background-repeat: no-repeat !important;
        background-position: center center !important;
        background-color: transparent !important;
    }
    
    /* Select con padding correcto */
    .form-group select {
        padding-right: 40px;
        position: relative;
        z-index: 10;
    }
    
    .form-group select option {
        background: var(--black) !important;
        color: var(--white) !important;
        padding: 12px;
    }
    
    /* Hover en opciones del select en móvil */
    .form-group select option:hover,
    .form-group select option:checked {
        background: var(--red) !important;
        color: var(--white) !important;
    }
    
    .disclaimer-text {
        font-size: 0.85rem;
    }
    
    .disclaimer-text h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .disclaimer-text p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .disclaimer-text ul,
    .disclaimer-text ol {
        margin: 10px 0 10px 20px;
        padding-left: 15px;
    }
    
    .disclaimer-text li {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .pricing-info {
        padding: 12px;
        margin-top: 15px;
    }
    
    .pricing-info h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .pricing-info p {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .pricing-info ul {
        margin: 8px 0 8px 20px;
        padding-left: 15px;
    }
    
    .pricing-info li {
        font-size: 0.8rem;
    }
    
    .service-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
        top: -8px;
        right: -8px;
    }
}

