/* =============================================
   Slide Rail — estilos específicos da página
   Prefixo: .sr-
   ============================================= */

/* Hero two-columns */
.hero-two-columns {
    padding: 120px 0 60px;
    background: #fff;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 4px;
    background: #0d0d0d;
    animation: shimmer 3s infinite;
}

.hero-image-wrapper video,
.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes shimmer {
    0%   { box-shadow: 0 0 0px rgba(222,44,100,0); }
    50%  { box-shadow: 0 0 32px rgba(222,44,100,0.18); }
    100% { box-shadow: 0 0 0px rgba(222,44,100,0); }
}

.hero-content-wrapper {
    padding: 20px 0 20px 48px;
}

.hero-badge {
    display: inline-block;
    background: #de2c64;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 2px;
    margin-bottom: 18px;
}

.hero-badge i {
    margin-right: 7px;
}

.hero-title {
    font-size: 2.15rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.22;
    margin-bottom: 18px;
}

.hero-title .highlight {
    color: #de2c64;
}

.hero-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 22px;
}

.hero-seo-links {
    margin-top: 14px;
    color: #888;
}

.hero-seo-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

.hero-seo-links a:hover {
    color: #de2c64;
}

/* Action bar */
.sr-action-bar {
    padding: 0 0 60px;
    background: #fff;
}

.sr-action-card {
    background: #f8f8f8;
    border-left: 4px solid #de2c64;
    padding: 28px 32px;
    margin-bottom: 40px;
    border-radius: 0 4px 4px 0;
}

.sr-btn-primary {
    background: #de2c64;
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    text-decoration: none;
}

.sr-btn-primary:hover {
    background: #b8204f;
    color: #fff;
    transform: translateY(-1px);
}

.sr-btn-ghost {
    background: transparent;
    color: #de2c64;
    border: 2px solid #de2c64;
    padding: 10px 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    text-decoration: none;
}

.sr-btn-ghost:hover {
    background: #de2c64;
    color: #fff;
}

/* Feature cards */
.sr-features {
    padding-top: 10px;
}

.sr-feature-card {
    background: #fff;
    border: 1px solid #eee;
    border-top: 3px solid #de2c64;
    padding: 28px 24px;
    height: 100%;
    border-radius: 0 0 4px 4px;
    transition: box-shadow 0.25s;
}

.sr-feature-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
}

.sr-feature-icon {
    font-size: 1.8rem;
    color: #de2c64;
    margin-bottom: 14px;
}

.sr-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* Highlight (dark) section */
.sr-highlight {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 0;
}

.sr-highlight-title {
    color: #fff;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 28px;
}

.sr-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sr-highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ddd;
    margin-bottom: 14px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sr-highlight-list li i {
    color: #de2c64;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Vantagens section */
.section-vantagens .cover-background {
    min-height: 550px;
}

/* FAQ section */
#faq-section .cover-background {
    min-height: 100%;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-two-columns {
        padding: 100px 0 40px;
    }

    .hero-content-wrapper {
        padding: 30px 0 0;
    }

    .hero-image-wrapper {
        height: 340px;
    }

    .sr-action-card {
        padding: 20px 18px;
    }

    .section-vantagens .cover-background {
        min-height: 380px;
    }

    #faq-section .panel-group {
        padding-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-two-columns {
        padding: 80px 0 30px;
    }

    .hero-image-wrapper {
        height: 260px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .sr-highlight {
        padding: 50px 0;
    }

    .section-vantagens .feature-box-5 {
        flex-direction: column;
    }

    .section-vantagens .feature-box-5 i {
        margin-bottom: 10px;
    }
}
