/* ==========================================================================
   SOLUBRILHO LANDING PAGE - ESTILOS
   ========================================================================== */



/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.solu-lp-hero {
    position: relative !important;
    overflow: hidden !important;
    min-height: 600px !important;
    padding: 60px 0 100px !important;
}

.solu-lp-hero__background {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 50% !important;
    z-index: 0 !important;
    overflow: hidden !important;
}

.solu-lp-hero__background::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 150px !important;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%) !important;
    z-index: 1 !important;
}

.solu-lp-hero__background-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

.solu-lp-hero .container {
    position: relative !important;
    z-index: 2 !important;
}

.solu-lp-hero__wrapper {
    display: block !important;
    max-width: 700px !important;
}

.solu-lp-hero__content {
    background: transparent !important;
}

.solu-lp-hero__subtitle {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #00285b !important;
    letter-spacing: 1.8px !important;
    text-transform: uppercase !important;
    margin-bottom: 41px !important;
}

.solu-lp-hero__title {
    font-size: 64px !important;
    font-weight: 900 !important;
    color: #084a9f !important;
    line-height: 1.1 !important;
    margin-bottom: 39px !important;
}

.solu-lp-hero__divider {
    width: 229px !important;
    height: 6px !important;
    background: #d40011 !important;
    border-radius: 10px !important;
    margin-bottom: 36px !important;
}

.solu-lp-hero__description {
    font-size: 24px !important;
    line-height: 1.4 !important;
    color: #00285b !important;
    margin-bottom: 35px !important;
    max-width: 609px !important;
}

.solu-lp-hero__features {
    list-style: none !important;
}

.solu-lp-hero__features li {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    font-size: 24px !important;
    color: #00285b !important;
    margin-bottom: 15px !important;
}

.solu-lp-hero__features li:last-child {
    margin-bottom: 0 !important;
}

.solu-lp-hero__features li img {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
}

/* ==========================================================================
   BENEFITS BAR (Faixa Azul)
   ========================================================================== */

.solu-lp-benefits-bar {
    background: #084a9f !important;
    padding: 50px 0 !important;
}

.solu-lp-benefits-bar__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 60px !important;
}

.solu-lp-benefits-bar__item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 23px !important;
}

.solu-lp-benefits-bar__icon {
    width: 87px !important;
    height: 87px !important;
    flex-shrink: 0 !important;
}

.solu-lp-benefits-bar__icon img {
    width: 100% !important;
    height: 100% !important;
}

.solu-lp-benefits-bar__text h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: capitalize !important;
    margin-bottom: 8px !important;
}

.solu-lp-benefits-bar__text p {
    font-size: 16px !important;
    color: #ffffff !important;
    line-height: 1.35 !important;
}

/* ==========================================================================
   SECTION HEADER (Reutilizável)
   ========================================================================== */

.solu-lp-section-header {
    text-align: center !important;
    margin-bottom: 60px !important;
}

.solu-lp-section-header__subtitle {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #084a9f !important;
    letter-spacing: 1.8px !important;
    text-transform: uppercase !important;
    margin-bottom: 16px !important;
}

.solu-lp-section-header__title {
    font-size: 48px !important;
    font-weight: 900 !important;
    color: #00285b !important;
    line-height: 1.2 !important;
}

/* ==========================================================================
   USES SECTION (Para que serve)
   ========================================================================== */

.solu-lp-uses {
    padding: 50px 0 !important;
}

.solu-lp-uses__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 60px 40px !important;
}

.solu-lp-uses__card {
    background: #ffffff !important;
    border-radius: 29px !important;
    box-shadow: 0px 2px 8px 0px rgba(40, 41, 61, 0.02),
                0px 16px 24px 0px rgba(96, 97, 112, 0.12);
    overflow: hidden !important;
    transition: transform 0.3s ease !important;
}

.solu-lp-uses__card:hover {
    transform: translateY(-5px) !important;
}

.solu-lp-uses__card-image {
    position: relative !important;
    padding-bottom: 70% !important;
    overflow: hidden !important;
    border-radius: 29px 29px 0 0 !important;
}

.solu-lp-uses__card-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.solu-lp-uses__card-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #00285b !important;
    padding: 35px 20px !important;
    text-align: left !important;
    line-height: 1.3 !important;
}

/* ==========================================================================
   WHY CHOOSE SECTION
   ========================================================================== */

.solu-lp-why-choose {
    padding: 50px 0 !important;
}

.solu-lp-why-choose__wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 60px !important;
    align-items: center !important;
}

.solu-lp-why-choose__image {
    border-radius: 20px !important;
    overflow: hidden !important;
}

.solu-lp-why-choose__image img {
    width: 100% !important;
    height: auto !important;
}

.solu-lp-why-choose__content .solu-lp-section-header__subtitle,
.solu-lp-why-choose__content .solu-lp-section-header__title {
    text-align: left !important;
    margin-bottom: 40px !important;
}

.solu-lp-why-choose__list {
    list-style: none !important;
}

.solu-lp-why-choose__list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important;
    font-size: 24px !important;
    color: #00285b !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
}

.solu-lp-why-choose__list li img {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
    margin-top: 4px !important;
}

/* ==========================================================================
   HOW TO USE SECTION
   ========================================================================== */

.solu-lp-how-to-use {
    background: #084a9f !important;
    padding: 50px 0 !important;
    position: relative !important;
}

.solu-lp-how-to-use__title {
    font-size: 48px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    text-align: center !important;
    text-transform: capitalize !important;
    margin-bottom: 80px !important;
}

.solu-lp-how-to-use__grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 50px !important;
    margin-bottom: 60px !important;
}

.solu-lp-how-to-use__card {
    border: 2px solid #006fff !important;
    border-radius: 30px !important;
    padding: 60px 44px !important;
    background: transparent !important;
}

.solu-lp-how-to-use__card-icon {
    width: 124px !important;
    height: 159px !important;
    margin-bottom: 40px !important;
}

.solu-lp-how-to-use__card-icon img {
    width: 100% !important;
    height: 100% !important;
}

.solu-lp-how-to-use__card-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 30px !important;
    line-height: 1.3 !important;
}

.solu-lp-how-to-use__steps {
    list-style: none !important;
    margin-bottom: 30px !important;
}

.solu-lp-how-to-use__steps li {
    position: relative !important;
    font-size: 24px !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    padding-left: 30px !important;
    margin-bottom: 30px !important;
}

.solu-lp-how-to-use__steps li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 8px !important;
    width: 16px !important;
    height: 16px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
}

.solu-lp-how-to-use__warning {
    font-size: 20px !important;
    color: #ffffff !important;
    font-weight: 300 !important;
    line-height: 1.3 !important;
}

.solu-lp-how-to-use__warning strong {
    font-weight: 700 !important;
}

.solu-lp-how-to-use__warning em {
    font-style: italic !important;
}

.solu-lp-how-to-use__note {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    padding: 20px !important;
}

.solu-lp-how-to-use__note img {
    width: 31px !important;
    height: 31px !important;
    flex-shrink: 0 !important;
}

.solu-lp-how-to-use__note p {
    font-size: 24px !important;
    color: #ffffff !important;
    margin: 0 !important;
}

.solu-lp-how-to-use__note strong {
    font-weight: 700 !important;
}

.solu-lp-how-to-use__note em {
    font-weight: 300 !important;
    font-style: italic !important;
}

/* ==========================================================================
   SAFETY SECTION
   ========================================================================== */

.solu-lp-safety {
    padding: 50px 0 !important;
}

.solu-lp-safety__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px !important;
}

.solu-lp-safety__card {
    border: 2px solid rgba(8, 74, 159, 0.3) !important;
    border-radius: 20px !important;
    padding: 30px !important;
    display: flex !important;
    align-items: center !important;
    gap: 23px !important;
}

.solu-lp-safety__icon {
    width: 105px !important;
    height: 105px !important;
    background: #FFF !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}
.solu-lp-safety__icon:first-of-type {
    
}

.solu-lp-safety__icon img {
    max-width: 100% !important;
    max-height: 100% !important;
}

.solu-lp-safety__text h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #00285b !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
}

.solu-lp-safety__text p {
    font-size: 16px !important;
    color: #00285b !important;
    line-height: 1.4 !important;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.solu-lp-cta {
    background: #084a9f !important;
    padding: 50px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.solu-lp-cta__wrapper {
    display: grid !important;
    grid-template-columns: 2.3fr 1fr !important;
    gap: 30px !important;
    align-items: center !important;
}

.solu-lp-cta__title {
    font-size: 36px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    text-transform: capitalize !important;
    line-height: 1.3 !important;
}

.solu-lp-cta__products {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

.solu-lp-cta__products::before {
    content: '' !important;
    position: absolute !important;
    width: 248px !important;
    height: 226px !important;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%) !important;
    z-index: 0 !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    pointer-events: none !important;
}

.solu-lp-cta__products-image {
    max-width: 280px !important;
    height: auto !important;
    position: relative !important;
    z-index: 1 !important;
    filter: drop-shadow(0px 2px 7.8px rgba(0, 0, 0, 0.3)) !important;
}

/* ==========================================================================
   RESPONSIVE - TABLET
   ========================================================================== */

@media (max-width: 1200px) {
    .container {
        padding: 0 40px !important;
    }

    .solu-lp-hero__title {
        font-size: 48px !important;
    }

    .solu-lp-section-header__title {
        font-size: 40px !important;
    }

    .solu-lp-benefits-bar__grid {
        gap: 40px !important;
    }

    .solu-lp-uses__grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .solu-lp-safety__grid {
        grid-template-columns: 1fr !important;
        max-width: 600px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 992px) {
    .solu-lp-hero {
        padding: 50px 0 80px !important;
    }

    .solu-lp-hero__background {
        left: 0 !important;
        opacity: 0.3 !important;
    }

    .solu-lp-hero__background::before {
        display: none !important;
    }

    .solu-lp-hero__wrapper {
        text-align: left !important;
        max-width: 100% !important;
    }

    .solu-lp-hero__subtitle {
        text-align: left !important;
    }

    .solu-lp-hero__divider {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .solu-lp-hero__features li {
        justify-content: flex-start !important;
    }

    .solu-lp-benefits-bar__grid {
        grid-template-columns: 1fr !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }

    .solu-lp-why-choose__wrapper {
        grid-template-columns: 1fr !important;
    }

    .solu-lp-why-choose__content .solu-lp-section-header__subtitle,
    .solu-lp-why-choose__content .solu-lp-section-header__title {
        text-align: center !important;
    }

    .solu-lp-why-choose__list li {
        justify-content: flex-start !important;
        text-align: left !important;
    }

    .solu-lp-how-to-use__grid {
        grid-template-columns: 1fr !important;
    }

    .solu-lp-cta__wrapper {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
}

/* ==========================================================================
   RESPONSIVE - MOBILE
   ========================================================================== */

@media (max-width: 768px) {
    .container {
        padding: 0 20px !important;
    }

    .solu-lp-hero {
        padding: 40px 0 0 0 !important;
        min-height: 400px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    .solu-lp-hero__background {
        opacity: 1 !important;
        margin-top: 20px !important;
        order: 2 !important;
        position: relative !important;
    }

    .solu-lp-hero__title {
        font-size: 36px !important;
    }

    .solu-lp-hero__description,
    .solu-lp-hero__features li {
        font-size: 18px !important;
    }

    .solu-lp-hero__description {
        margin-bottom: 30px !important;
    }

    .solu-lp-hero__features li {
        margin-bottom: 20px !important;
    }

    .solu-lp-section-header__title {
        font-size: 32px !important;
    }

    .solu-lp-section-header__subtitle {
        font-size: 16px !important;
    }

    .solu-lp-benefits-bar {
        padding: 30px 0 !important;
    }

    .solu-lp-benefits-bar__text h3 {
        font-size: 20px !important;
    }

    .solu-lp-benefits-bar__text p {
        font-size: 14px !important;
    }

    .solu-lp-uses {
        padding: 30px 0 !important;
    }

    .solu-lp-uses__grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .solu-lp-uses__card-title {
        font-size: 20px !important;
        padding: 20px 10px !important;
    }

    .solu-lp-why-choose {
        padding: 30px 0 !important;
    }

    .solu-lp-why-choose__list li {
        font-size: 18px !important;
    }

    .solu-lp-how-to-use {
        padding: 30px 0 !important;
    }

    .solu-lp-how-to-use__title {
        font-size: 36px !important;
        margin-bottom: 50px !important;
    }

    .solu-lp-how-to-use__card {
        padding: 40px 24px !important;
    }

    .solu-lp-how-to-use__card-title {
        font-size: 24px !important;
    }

    .solu-lp-how-to-use__steps li {
        font-size: 15px !important;
        margin-bottom: 20px !important;
    }

    .solu-lp-how-to-use__warning,
    .solu-lp-how-to-use__note p {
        font-size: 16px !important;
    }

    .solu-lp-safety {
        padding: 30px 0 !important;
    }

    .solu-lp-safety__card {
        flex-direction: column !important;
        text-align: center !important;
    }

    .solu-lp-cta {
        padding: 30px 0 !important;
    }

    .solu-lp-cta__title {
        font-size: 28px !important;
    }

    .solu-lp-cta__products::before {
        width: 180px !important;
        height: 160px !important;
    }

    .solu-lp-cta__products-image {
        max-width: 200px !important;
    }
}

@media (max-width: 480px) {
    .solu-lp-hero__title {
        font-size: 28px !important;
    }

    .solu-lp-section-header__title {
        font-size: 26px !important;
    }

    .solu-lp-benefits-bar__icon {
        width: 60px !important;
        height: 60px !important;
    }

    .solu-lp-cta__title {
        font-size: 24px !important;
    }
}
