/* AirBag Pro - Estilos principales */

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-bottom: 5rem;
}

.main {
    padding-top: 88px;
}

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

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.nav__logo-img {
    height: 58px;
    width: auto;
    max-width: min(320px, 72vw);
    display: block;
    object-fit: contain;
}

.nav__cta {
    font-size: 0.8rem;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
}

.btn--whatsapp {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #fff !important;
}

.btn--whatsapp:hover {
    background: #1ebe57 !important;
    border-color: #1ebe57 !important;
    color: #fff !important;
}

.nav__logo a {
    text-decoration: none;
}

.nav__logo h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 1rem 1.25rem;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1 1 auto;
}

.nav__link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: #ff6b35;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

.footer__wa {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
}

.footer__wa:hover {
    text-decoration: underline;
}

/* Hero — banner full width + texto sobre imagen (scrim) */
.hero-airbag {
    padding: 0;
    background: #0a0a0a;
    border-bottom: 1px solid #eee;
}

.hero-airbag__banner {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: clamp(360px, 52vh, min(78vh, 900px));
}

.hero-airbag__banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-airbag__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        100deg,
        rgba(5, 5, 8, 0.93) 0%,
        rgba(5, 5, 8, 0.78) 28%,
        rgba(5, 5, 8, 0.38) 52%,
        rgba(5, 5, 8, 0.08) 72%,
        transparent 88%
    );
}

.hero-airbag__body {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
    pointer-events: none;
}

.hero-airbag__body .hero-airbag__text {
    max-width: 38rem;
    pointer-events: auto;
}

.hero-airbag__title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

.hero-airbag__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.hero-airbag__lead {
    font-size: 1.05rem;
    color: rgba(245, 245, 245, 0.92);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    max-width: 36rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

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

.btn--outline-dark {
    background: #1a1a1a !important;
    border-color: #1a1a1a !important;
    color: #fff !important;
}

.btn--outline-dark:hover {
    background: #333 !important;
    border-color: #333 !important;
}

.section-block {
    padding: 4.5rem 0;
}

.section-block--muted {
    background: #f8f9fa;
}

.services-grid--static .service-card {
    text-align: left;
}

.services-grid--static .service-icon {
    margin: 0 auto 1.25rem;
}

.section-cta-text {
    text-align: center;
    margin-top: 2rem;
}

.link-more {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
}

.link-more:hover {
    text-decoration: underline;
}

/* Proceso 4 pasos */
.process-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

.process-step {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.process-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-step__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.trust-list {
    list-style: none;
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
}

.trust-list i {
    color: #ff6b35;
    margin-top: 0.2rem;
}

.stats-strip {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.stats-strip .stat-item {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 1rem;
}

.stats-strip .stat-number {
    color: #ff6b35;
}

.stats-strip .stat-label {
    color: #ccc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    margin: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-item figcaption {
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.clients-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.clients-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    font-weight: 500;
}

.clients-list__icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    line-height: 1;
}

.clients-list li .clients-list__icon {
    color: #ff6b35;
}

.clients-list__logo {
    height: 48px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
}

.contact-summary {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.contact-summary__item {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #444;
}

.contact-summary__item i {
    color: #ff6b35;
    margin-right: 0.5rem;
}

.contact-summary__more {
    margin-top: 1.5rem;
}

.fab-whatsapp {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 1001;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab-whatsapp:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
    color: #fff !important;
}

/* Hero Section - Estilo MyAirbags */
.hero-myairbags {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

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

/* Banner Slider */
.banner-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    color: #fff;
}

.banner-text {
    z-index: 2;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.2;
}

.banner-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
    max-width: 500px;
    line-height: 1.6;
}

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

.banner-image img {
    max-width: 100%;
    max-height: 80%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Banner Controls */
.banner-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.banner-prev,
.banner-next {
    background: rgba(255, 107, 53, 0.9);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.banner-prev:hover,
.banner-next:hover {
    background: #ff6b35;
    transform: scale(1.1);
}

.banner-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: #ff6b35;
    transform: scale(1.2);
}

/* Botones - Estilo MyAirbags */
.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #ff6b35;
    color: #fff;
    border: 2px solid #ff6b35;
}

.btn-primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Section Headers - Estilo MyAirbags */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ff6b35;
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section - Estilo MyAirbags */
.about-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-main p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.about-image i {
    font-size: 10rem;
    color: #ff6b35;
    opacity: 0.8;
}

/* Values Section - Estilo MyAirbags */
.values-section {
    padding: 6rem 0;
    background: #fff;
}

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

.value-card {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.value-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.value-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.value-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.value-list li {
    padding: 0.8rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.value-list li:last-child {
    border-bottom: none;
}

/* Services Section - Estilo MyAirbags */
.services-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #ff6b35;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.service-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.service-duration {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-duration i {
    margin-right: 0.5rem;
    color: #ff6b35;
}

.service-price {
    font-weight: 600;
    color: #ff6b35;
    font-size: 1.2rem;
}

.service-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.service-link:hover {
    color: #e55a2b;
}

.services-cta {
    text-align: center;
}

/* Location Section - Estilo MyAirbags */
.location-section {
    padding: 6rem 0;
    background: #fff;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info {
    padding-right: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.location-item:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.location-icon i {
    color: #fff;
    font-size: 1.4rem;
}

.location-details h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 600;
}

.location-details p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.location-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.location-map {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    border: 1px solid #f0f0f0;
}

.map-placeholder {
    text-align: center;
    color: #666;
}

.map-placeholder i {
    font-size: 5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* CTA Section - Estilo MyAirbags */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ff6b35" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #ccc;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #0f0f0f;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer__brand h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer__brand p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer__description {
    color: #999;
    line-height: 1.6;
}

.footer__info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer__section h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer__section p,
.footer__section li {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer__section ul {
    list-style: none;
}

.footer__section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__section a:hover {
    color: #ff6b35;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.social__link {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social__link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

.footer__links {
    display: flex;
    gap: 2rem;
}

.footer__links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav__cta {
        display: none;
    }
}

@media (min-width: 769px) {
    .nav-flyout {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav__menu--desktop {
        display: none;
    }

    /* Drawer + overlay por encima del FAB (z-index 1001) */
    body.nav-open {
        overflow: hidden;
        touch-action: none;
    }

    body.nav-open .header {
        z-index: 10020;
    }

    .nav-flyout {
        position: fixed;
        inset: 0;
        z-index: 10050;
        pointer-events: none;
        visibility: hidden;
    }

    .nav-flyout.is-open {
        pointer-events: auto;
        visibility: visible;
    }

    .nav-flyout__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-flyout.is-open .nav-flyout__backdrop {
        opacity: 1;
    }

    .nav-flyout__panel {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(90vw, 320px);
        max-width: 100%;
        background: rgba(15, 15, 15, 0.98);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.35);
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }

    .nav-flyout.is-open .nav-flyout__panel {
        transform: translateX(0);
    }

    .nav-flyout__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1rem 1rem 1.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
    }

    .nav-flyout__title {
        color: #fff;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .nav-flyout__close {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.35rem;
        padding: 0.35rem 0.5rem;
        cursor: pointer;
        border-radius: 4px;
        line-height: 1;
    }

    .nav-flyout__close:hover {
        color: #ff6b35;
    }

    .nav-flyout__nav {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-flyout__list {
        list-style: none;
        margin: 0;
        padding: 0.5rem 0;
    }

    .nav-flyout__list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-flyout__link {
        display: block;
        padding: 1rem 1.25rem;
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease, background 0.2s ease;
    }

    .nav-flyout__link:hover,
    .nav-flyout__link:focus-visible {
        color: #ff6b35;
        background: rgba(255, 255, 255, 0.04);
        outline: none;
    }

    .nav-flyout__link.is-active {
        color: #ff6b35;
    }

    .nav-flyout__foot {
        padding: 1rem 1.25rem 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
    }

    .nav-flyout__cta {
        width: 100%;
        justify-content: center;
    }

    .nav__toggle {
        display: block;
        position: relative;
        z-index: 10022;
        background: none;
        border: none;
        font: inherit;
        color: inherit;
    }

    .hero-airbag__banner {
        align-items: flex-end;
        min-height: clamp(420px, 72vh, 720px);
    }

    .hero-airbag__scrim {
        background: linear-gradient(
            to top,
            rgba(5, 5, 8, 0.94) 0%,
            rgba(5, 5, 8, 0.72) 38%,
            rgba(5, 5, 8, 0.35) 62%,
            rgba(5, 5, 8, 0.12) 100%
        );
    }

    .hero-airbag__body {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    .hero-airbag__body .hero-airbag__text {
        max-width: 100%;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location-info {
        padding-right: 0;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
