/* ===== HERO SLIDER STYLES ===== */


/* CONTAINER DA IMAGEM */
.hero-slider-container {
    position: relative;
    height: 80vh; /*  ALTURA TOTAL DO SLIDER */
    min-height: 400px; /*  ALTURA MÍNIMA */
    overflow: hidden;
}

/* CONTAINER ESPECÍFICO DA IMAGEM */
.hero-slide-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* LARGURA: 100% da tela */
    height: 100%; /* ALTURA: 100% da tela */
    overflow: hidden;
}

/* CONTROLE DA IMAGEM EM SI */
.hero-slide-image {
    width: 100%; /*  LARGURA: 100% do container */
    height: 100%; /*  ALTURA: 100% do container */
    object-fit: cover; /*  COMO A IMAGEM SE AJUSTA */
    object-position: center center; /*  POSIÇÃO DA IMAGEM */
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
}
}

    /* Fallback para quando JS não carregar */
    .hero-slider-container:not([style*="height"]) {
        height: 100vh;
        min-height: 600px;
    }

/* RESPONSIVE - Ajustar apenas se não houver configuração específica */
@media (max-width: 991.98px) {
    .hero-slider-container:not([data-custom-size]) {
        height: 80vh !important;
        min-height: 500px !important;
    }
}

@media (max-width: 767.98px) {
    .hero-slider-container:not([data-custom-size]) {
        height: 70vh !important;
        min-height: 450px !important;
    }
}

@media (max-width: 575.98px) {
    .hero-slider-container:not([data-custom-size]) {
        height: 60vh !important;
        min-height: 400px !important;
    }
}

/* CLASSES PARA DIFERENTES TIPOS DE TAMANHO */
.hero-slider-container.size-viewport {
    /* Altura baseada no viewport */
}

.hero-slider-container.size-fixed {
    /* Altura fixa */
    height: var(--slider-height) !important;
}

.hero-slider-container.size-aspect-ratio {
    /* Aspect ratio */
    height: auto !important;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.1);
}

    .hero-slide.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .hero-slide.fade-in {
        animation: fadeIn 0.8s ease-in-out;
    }

    .hero-slide.slide-in-right {
        animation: slideInRight 0.8s ease-in-out;
    }

    .hero-slide.slide-in-left {
        animation: slideInLeft 0.8s ease-in-out;
    }

    .hero-slide.zoom-in {
        animation: zoomIn 0.8s ease-in-out;
    }

/* Background */

    /* CONFIGURAÇÕES ESPECÍFICAS DE OBJECT-FIT */
    .hero-slide-image.fit-cover {
        object-fit: cover;
    }

    .hero-slide-image.fit-contain {
        object-fit: contain;
    }

    .hero-slide-image.fit-fill {
        object-fit: fill;
    }

    .hero-slide-image.fit-scale-down {
        object-fit: scale-down;
    }

    .hero-slide-image.fit-none {
        object-fit: none;
    }

/* Efeito parallax sutil no hover */
.hero-slide:hover .hero-slide-image {
    transform: scale(1.05);
}

/* Diferentes posicionamentos para otimizar a visualização */
.hero-slide-image[src*="slider01"] {
    object-position: center top;
}

.hero-slide-image[src*="slider02"] {
    object-position: center center;
}

.hero-slide-image[src*="slider03"] {
    object-position: center bottom;
}

.hero-slide-image[src*="slider04"] {
    object-position: left center;
}

.hero-slide-image[src*="slider05"] {
    object-position: right center;
}

/* Fallback para imagens que não carregaram */
.hero-slide-image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    z-index: -1;
}

/* Loading state */
.hero-slide-image[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

    .hero-slide-image[loading="lazy"].loaded {
        opacity: 1;
    }

/* Responsive image sizing */
@media (max-width: 1199.98px) {
    .hero-slide-image {
        object-fit: cover;
        object-position: center center;
    }
}

@media (max-width: 767.98px) {
    .hero-slide-image {
        object-fit: cover;
        object-position: center top;
    }

    /* Ajustar altura mínima para mobile */
    .hero-slider-container {
        min-height: 500px;
    }
}

@media (max-width: 575.98px) {
    .hero-slide-image {
        object-position: center center;
    }

    .hero-slider-container {
        min-height: 450px;
    }
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(30, 64, 175, 0.8) 100%);*/
}

/* Content */
.hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    color: #ffffff;
}

.hero-subtitle {
    margin-bottom: 1.5rem;
}

.subtitle-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
}

.hero-actions {
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-hero-primary::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s;
    }

    .btn-hero-primary:hover::before {
        left: 100%;
    }

    .btn-hero-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        color: var(--primary-color);
    }

.btn-hero-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .btn-hero-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        color: #ffffff;
        transform: translateY(-3px);
    }

/* Features */
.hero-features {
    margin-top: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .hero-feature:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

    .feature-icon i {
        font-size: 1.25rem;
        color: #ffffff;
    }

.feature-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-text small {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Navigation */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .slider-dot.active {
        background: rgba(255, 255, 255, 0.5);
    }

.dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #ffffff;
    border-radius: 2px;
    width: 0;
    transition: width linear;
}

.slider-dot.active .dot-progress {
    animation: dotProgress linear;
}

/* Arrow Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.slider-nav {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

    .slider-nav:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }

    .slider-nav i {
        font-size: 1.2rem;
    }

/* Progress Bar */
.hero-slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, var(--accent-color));
    width: 0;
    transition: width linear;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    right: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-arrow {
    font-size: 1.2rem;
    animation: bounceArrow 2s infinite;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px) scale(1.1);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) scale(1.1);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(1.3);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(5px);
    }

    60% {
        transform: translateY(2px);
    }
}

@keyframes dotProgress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* DESKTOP LARGE */
@media (max-width: 1399.98px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-description {
        font-size: 1.15rem;
    }
}

/* DESKTOP */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-features {
        margin-top: 1.5rem;
    }

    .hero-feature {
        padding: 0.9rem;
    }
}

/* TABLET */
@media (max-width: 991.98px) {
    .hero-slider-container {
        height: 85vh;
        min-height: 550px;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }

    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        max-width: 500px;
    }

    .hero-actions {
        margin-bottom: 2rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .hero-features {
        margin-top: 1.5rem;
    }

    .hero-feature {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* MOBILE LARGE */
@media (max-width: 767.98px) {
    .hero-slider-container {
        height: 75vh;
        min-height: 500px;
    }

    .hero-slide-content {
        padding: 2rem 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin-bottom: 1.2rem;
    }

    .subtitle-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.8rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Features em mobile - layout em coluna única */
    .hero-features .row {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-features .col-md-4 {
        margin-bottom: 0;
    }

    .hero-feature {
        padding: 1rem;
        margin-bottom: 0;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        margin-right: 0.8rem;
    }

    .feature-text strong {
        font-size: 0.85rem;
    }

    .feature-text small {
        font-size: 0.75rem;
    }

    /* Navigation mobile */
    .hero-slider-nav {
        padding: 0 15px;
    }

    .slider-nav {
        width: 42px;
        height: 42px;
    }

        .slider-nav i {
            font-size: 1.1rem;
        }

    .hero-slider-dots {
        bottom: 25px;
        gap: 12px;
    }

    .slider-dot {
        width: 45px;
        height: 3px;
    }
}

/* MOBILE MEDIUM */
@media (max-width: 575.98px) {
    .hero-slider-container {
        height: 70vh;
        min-height: 450px;
    }

    .hero-slide-content {
        padding: 1.5rem 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .subtitle-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero-title {
        font-size: 1.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.25;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        max-width: 320px;
        line-height: 1.5;
    }

    .hero-actions {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        max-width: 260px;
        padding: 0.9rem 1.3rem;
        font-size: 0.85rem;
    }

    .hero-features {
        margin-top: 1rem;
    }

        .hero-features .row {
            gap: 0.6rem;
        }

    .hero-feature {
        padding: 0.8rem;
        max-width: 280px;
    }

    .feature-icon {
        width: 38px;
        height: 38px;
        margin-right: 0.7rem;
    }

        .feature-icon i {
            font-size: 1.1rem;
        }

    .feature-text strong {
        font-size: 0.8rem;
    }

    .feature-text small {
        font-size: 0.7rem;
    }

    /* Navigation ainda menor */
    .slider-nav {
        width: 38px;
        height: 38px;
    }

        .slider-nav i {
            font-size: 1rem;
        }

    .hero-slider-dots {
        bottom: 20px;
        gap: 10px;
    }

    .slider-dot {
        width: 40px;
        height: 3px;
    }
}

/* MOBILE SMALL */
@media (max-width: 480px) {
    .hero-slider-container {
        height: 65vh;
        min-height: 420px;
    }

    .hero-slide-content {
        padding: 1rem 0;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .subtitle-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-title {
        font-size: 1.7rem;
        margin-bottom: 0.7rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.3rem;
        max-width: 300px;
        line-height: 1.4;
    }

    .hero-actions {
        gap: 0.7rem;
        margin-bottom: 1.3rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        max-width: 240px;
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
        border-radius: 25px;
    }

    .hero-features {
        margin-top: 0.8rem;
    }

        .hero-features .row {
            gap: 0.5rem;
        }

    .hero-feature {
        padding: 0.7rem;
        max-width: 260px;
        border-radius: 12px;
    }

    .feature-icon {
        width: 35px;
        height: 35px;
        margin-right: 0.6rem;
    }

        .feature-icon i {
            font-size: 1rem;
        }

    .feature-text strong {
        font-size: 0.75rem;
    }

    .feature-text small {
        font-size: 0.65rem;
    }

    /* Navigation compacta */
    .slider-nav {
        width: 35px;
        height: 35px;
    }

        .slider-nav i {
            font-size: 0.9rem;
        }

    .hero-slider-dots {
        bottom: 15px;
        gap: 8px;
    }

    .slider-dot {
        width: 35px;
        height: 2px;
    }
}

/* MOBILE EXTRA SMALL */
@media (max-width: 360px) {
    .hero-slider-container {
        height: 60vh;
        min-height: 380px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        max-width: 280px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        max-width: 220px;
        padding: 0.7rem 1rem;
        font-size: 0.75rem;
    }

    .hero-feature {
        padding: 0.6rem;
        max-width: 240px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        margin-right: 0.5rem;
    }

    .feature-text strong {
        font-size: 0.7rem;
    }

    .feature-text small {
        font-size: 0.6rem;
    }
}

/* LANDSCAPE MOBILE */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slider-container {
        height: 95vh;
        min-height: 350px;
    }

    .hero-slide-content {
        padding: 0.5rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-actions {
        margin-bottom: 1rem;
    }

    .hero-features {
        margin-top: 0.5rem;
    }

        .hero-features .row {
            flex-direction: row;
            gap: 0.5rem;
        }

    .hero-feature {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
    }

    .hero-slider-dots {
        bottom: 10px;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .hero-slide-overlay {
        background: rgba(0, 0, 0, 0.8) !important;
    }

    .subtitle-badge,
    .hero-feature {
        background: rgba(0, 0, 0, 0.8) !important;
        border-color: #ffffff !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .slider-dot,
    .slider-nav,
    .btn-hero-primary,
    .btn-hero-outline,
    .hero-feature {
        transition: none !important;
        animation: none !important;
    }

    .scroll-indicator {
        animation: none !important;
    }
}

/* ===== MOBILE ENHANCEMENTS ===== */

/* Melhor contraste para texto em mobile */
@media (max-width: 767.98px) {
    .hero-slide-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(30, 58, 138, 0.7) 100%) !important;
    }

    .hero-content {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .hero-title {
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    }

    .hero-description {
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    }
}

/* Animações otimizadas para mobile */
@media (max-width: 767.98px) {
    .hero-slide {
        transition: all 0.6s ease-in-out;
    }

        .hero-slide.active {
            animation: mobileSlideIn 0.6s ease-out;
        }
}

@keyframes mobileSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Touch-friendly navigation */
@media (max-width: 767.98px) {
    .slider-nav {
        width: 48px;
        height: 48px;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(15px);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

        .slider-nav:hover,
        .slider-nav:active {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.05);
        }

    .slider-dot {
        width: 50px;
        height: 4px;
        background: rgba(255, 255, 255, 0.4);
    }

        .slider-dot.active {
            background: rgba(255, 255, 255, 0.8);
        }
}

/* Otimizações para telas pequenas */
@media (max-width: 480px) {
    .hero-slide-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(30, 58, 138, 0.8) 100%) !important;
    }

    .subtitle-badge {
        backdrop-filter: blur(20px);
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .hero-feature {
        backdrop-filter: blur(15px);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Melhorias para acessibilidade em mobile */
@media (max-width: 767.98px) {
    .btn-hero-primary,
    .btn-hero-outline {
        min-height: 48px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .slider-nav,
    .slider-dot {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Otimização para dispositivos com notch */
@supports (padding: max(0px)) {
    @media (max-width: 767.98px) {
        .hero-slide-content {
            padding-left: max(1rem, env(safe-area-inset-left));
            padding-right: max(1rem, env(safe-area-inset-right));
        }
    }
}
