/* ========================================
   Seway Plus - Estilos Específicos
   Identidad visual diferenciada
   ======================================== */

/* ========================================
   Variables Seway Plus
   ======================================== */
:root {
    --seway-orange: #e38114;
    --seway-blue: #2d3e50;
    --seway-light-blue: #3e5468;
}

/* ========================================
   Hero Seway
   ======================================== */
.seway-hero {
    background: linear-gradient(135deg, var(--seway-blue) 0%, var(--seway-light-blue) 100%);
    padding: 8rem 0 6rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.seway-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 129, 20, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.seway-logo {
    max-width: 200px;
    margin-bottom: 2rem;
}

.seway-hero h1 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.seway-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
}

.seway-hero .btn-primary {
    background: var(--seway-orange);
    border: none;
    box-shadow: 0 4px 15px rgba(227, 129, 20, 0.4);
}

.seway-hero .btn-primary:hover {
    background: #c7700f;
    box-shadow: 0 6px 20px rgba(227, 129, 20, 0.5);
}

.seway-hero .btn-outline-light:hover {
    background: white;
    color: var(--seway-blue);
}

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

.seway-hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* ========================================
   Secciones de Características
   ======================================== */
.seway-feature-section {
    padding: 5rem 0;
}

.seway-feature-section.alt-bg {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.seway-feature-row {
    margin-bottom: 4rem;
}

.seway-feature-row:last-child {
    margin-bottom: 0;
}

.seway-feature-image {
    position: relative;
}

.seway-feature-image img {
    max-width: 100%;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
}

.seway-feature-content h3 {
    color: var(--seway-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.seway-feature-content h3 .icon-badge {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(227, 129, 20, 0.1) 0%, rgba(227, 129, 20, 0.05) 100%);
    border-radius: 10px;
    text-align: center;
    line-height: 50px;
    margin-right: 1rem;
    color: var(--seway-orange);
}

.seway-feature-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

/* ========================================
   Características Grid
   ======================================== */
.seway-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.seway-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
}

.seway-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--seway-orange);
}

.seway-feature-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--seway-orange) 0%, #f09433 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.seway-feature-card h4 {
    color: var(--seway-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.seway-feature-card p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.7;
}

/* ========================================
   Beneficios Section
   ======================================== */
.seway-benefits {
    background: var(--seway-blue);
    color: white;
    padding: 5rem 0;
}

.seway-benefits h2 {
    color: white;
}

.seway-benefits .section-title-line {
    background: var(--seway-orange);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--seway-orange);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--seway-orange);
    margin-right: 1.5rem;
    min-width: 40px;
}

.benefit-item h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* ========================================
   CTA Section
   ======================================== */
.seway-cta {
    background: linear-gradient(135deg, var(--seway-orange) 0%, #f09433 100%);
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.seway-cta h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.seway-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.seway-cta .btn-light {
    background: white;
    color: var(--seway-orange);
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.seway-cta .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--seway-blue);
}

.seway-cta .btn-outline-light {
    border: 2px solid white;
    color: white;
}

.seway-cta .btn-outline-light:hover {
    background: white;
    color: var(--seway-orange);
}

/* ========================================
   Navbar Override para Seway
   ======================================== */
.seway-page .navbar {
    background: var(--seway-blue);
}

.seway-page .navbar-brand img {
    filter: brightness(0) invert(1);
}

.seway-page .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.seway-page .navbar-nav .nav-link:hover {
    color: var(--seway-orange) !important;
}

.seway-page .navbar-nav .nav-link::after {
    background: var(--seway-orange);
}

.seway-page .navbar-nav .btn-nav-cta {
    background: var(--seway-orange);
    color: white !important;
}

.seway-page .navbar-nav .btn-nav-cta:hover {
    background: #c7700f;
}

.seway-page .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.seway-page .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   Responsive Seway
   ======================================== */
@media (max-width: 992px) {
    .seway-hero {
        padding: 6rem 0 4rem;
    }

    .seway-feature-section {
        padding: 3rem 0;
    }

    .seway-feature-row {
        margin-bottom: 3rem;
    }

    .seway-feature-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .seway-hero {
        padding: 5rem 0 3rem;
    }

    .seway-logo {
        max-width: 160px;
    }

    .seway-features-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
