:root {
    --segway-red: #E73E1D;
    --segway-red-light: #FF5E3A;
}

.text-segway-red {
    color: var(--segway-red) !important;
}

.bg-segway-red {
    background-color: var(--segway-red) !important;
}

.btn-segway {
    background-color: var(--segway-red);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-segway:hover {
    background-color: var(--segway-red-light);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 10px 20px rgba(231, 62, 29, 0.2);
}

.btn-outline-segway {
    border: 1px solid rgba(231, 62, 29, 0.5);
    color: var(--segway-red);
    background: transparent;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-segway:hover {
    background: var(--segway-red);
    color: white;
}

.segway-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    padding: 68px 0 24px;
    overflow: hidden;
    background: #0b0f16;
}

.segway-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url("../img/segway.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.segway-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5, 11, 20, 0.9) 0%, rgba(5, 11, 20, 0.72) 45%, rgba(5, 11, 20, 0.48) 100%);
    z-index: 1;
}

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

.badge-segway {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: rgba(255, 255, 255, 0.82);
    display: block;
    margin-top: 0.5rem;
}

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    max-width: 40rem;
}

.segway-hero .btn-outline-segway {
    border-color: rgba(255, 255, 255, 0.72);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.segway-hero .btn-outline-segway:hover {
    background: #ffffff;
    color: #111827;
    border-color: #ffffff;
}

.hero-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
    pointer-events: none;
}

@media (max-width: 991px) {
    .segway-hero {
        min-height: 62vh;
        padding: 84px 0 18px;
    }
}

.section-somos {
    padding: 100px 0;
    background: #fff;
    position: relative;
    z-index: 10;
}

.somos-label {
    color: var(--segway-red);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 1rem;
}

.section-versiones {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.version-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.version-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(231, 62, 29, 0.15);
}

.version-card-img {
    height: 450px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.version-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.version-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
    color: white;
}

.dropdown-panel-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
}

.corner-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: white;
    border-radius: 50%;
}
.dot-tl { top: 8px; left: 8px; }
.dot-tr { top: 8px; right: 8px; }
.dot-bl { bottom: 8px; left: 8px; }
.dot-br { bottom: 8px; right: 8px; }

.section-certification {
    padding: 100px 0;

    position: relative;
    z-index: 10;
}

.cert-img {
    height: 80px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.banner-full {
    height: 50vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    margin: 0;
    background-color: #0a1429;

    background-image: url('../img/banners/07.webp');
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-full img {
    display: none;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.section-cta-final {
    padding-top: 120px;
    padding-bottom: 0;

    text-align: center;
    position: relative;
    overflow: hidden;
}

.blue-gradient-wrapper {
    background: linear-gradient(180deg, #102a4e 0%, #000000 100%);
    color: white;
    margin-bottom: -5px;
    padding-bottom: 2px;
    position: relative;
    z-index: 5;
}

.blue-gradient-wrapper .section-certification,
.blue-gradient-wrapper .section-cta-final {
    background: transparent;
}

.blue-gradient-wrapper .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.blue-gradient-wrapper .text-dark {
    color: white !important;
}

.blue-gradient-wrapper .h4,
.blue-gradient-wrapper h3,
.blue-gradient-wrapper h2,
.blue-gradient-wrapper .display-5 {
    color: white !important;
    font-weight: 500 !important;
}

.datan-segway h1, .datan-segway h2, .datan-segway h3, .datan-segway h4, .datan-segway h5, .datan-segway h6, .datan-segway .display-1, .datan-segway .display-2, .datan-segway .display-3, .datan-segway .display-4, .datan-segway .display-5 {
     font-weight: 600 !important;
}

.datan-segway .hero-title {
    font-weight: 500 !important;
}
