@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --red: #ed1c24;
    --dark-blue: #144d91;
    --light-blue: #5184bc;
    --bright-blue: #2a8bf3;
    --text-gray: #7a7a7a;
    --bright-red: #f7454a;
    --theme-color: #1d3d64;
    --secondary-color: #f9313b;
    --primary-font-family: "Poppins";
    --secondary-font-family: "Inter";
}

header,
nav,
section,
article,
aside,
footer {
    display: block;
}

* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--primary-font-family), var(--secondary-font-family), sans-serif;
    overflow-x: hidden;
    font-weight: 400;
    background: #ffffff;
    color: var(--text-gray);
}

img {
    max-width: 100%;
}

.sec-title {
    position: relative;
    display: block;
}

.sec-title .sub-title {
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    line-height: 34px;
    color: var(--theme-color);
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.sec-title h2,
.about-title h2,
.video-text h2,
.adesao-container h2 {
    font-size: 3rem;
    line-height: 50px;
    font-weight: 700;
}

.marca-cuidarmais{
    background: linear-gradient(90deg, #ed1c24, #ff4b55);
    color: #fff;
    padding: 0 12px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: .3px;
    white-space: nowrap;
}

.sec-title h2 {
    position: relative;
    display: block;
    color: var(--theme-color);
    margin: 0px;
}

.sec-title.light h2 {
    color: #fff;
}

.sec-title.light .sub-title {
    color: var(--secondary-color) !important;
}

.logo-topo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    min-height: 140px;
    background: url("../images/cuidarmais/banner-bg.jpg") top center no-repeat;
}

.logo-topo img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
}

.about-title h2 {
    color: #f9313b;
}

.about-detail ul {
    margin: 15px 0;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.about-detail ul li {
    margin-bottom: 0;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0 10px 30px;
    border-bottom: 1px dashed #eee;
    color: #ffffff;
}

.about-detail ul li:last-child {
    border: none;
}

.about-detail ul li i {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    color: var(--red);
}

.about-detail p {
    font-weight: 300;
}

.about-img {
    width: 100%;
    height: 100%;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.wave-section .content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 40px 0 80px 0;
}

.wave-section {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

.wave-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    background: url("../images/cuidarmais/wave.png") top center no-repeat;
    background-size: 100% 100%;

    pointer-events: none;
}

.auto-container {
    position: static;
    max-width: 1320px;
    padding: 0px 15px;
    margin: 0 auto;
}

.feature-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
}

.feature-block {
    margin-bottom: 15px;
}

.feature-block .inner-box {
    position: relative;
    display: block;
    background: #fff;
    box-shadow: 0px 2px 70px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    padding: 40px 30px 35px 40px;
    z-index: 1;
    transition: all 500ms ease;
}

.feature-block .inner-box:hover {
    background-color: var(--dark-blue);
}

.feature-block .inner-box:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 0%;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    transition: all 500ms ease;
}

.feature-block .inner-box:hover:before {
    height: 100%;
    top: 0px;
}

.feature-block .inner-box .icon-box {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 50px;
    color: var(--dark-blue);
    background: rgba(249, 49, 59, 0.05);
    text-align: center;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 500ms ease;
}

.feature-block .inner-box:hover .icon-box {
    background: #fff;
}

.feature-block .inner-box h3 {
    position: relative;
    display: block;
    color: var(--theme-color);
    font-size: 26px;
    line-height: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-block .inner-box p {
    position: relative;
    transition: all 500ms ease;
}

.feature-block .inner-box:hover h3,
.feature-block .inner-box:hover p {
    color: #fff;
}

.feature-section .shape {
    position: absolute;
    left: 80px;
    top: 10px;
    width: 210px;
    height: 268px;
    background-repeat: no-repeat;
}

.video-area {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.video-flex {
    display: flex;
    width: 100%;
    min-height: 420px;
    align-items: stretch;
}

.video-thumb {
    width: 50vw;
    height: auto;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0 10px 10px 0;
}

/* metade direita */
.video-text {
    width: 50%;
    padding: 30px 60px;
    background: #f9f7ff;
}

.video-text h2 {
    color: var(--theme-color);
    margin-bottom: 20px;
}

.video-text p {
    margin-bottom: 20px;
}

.video-text ul {
    list-style: none;
    padding: 0;
}

.video-text li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    color: var(--theme-color);
    gap: 8px;
}

.video-text li i {
    color: var(--bright-blue);
}

/* PLAY CENTRAL */
.play-video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
}

.play-video::before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: rgba(137, 135, 238, 0.25);
    animation: pulseRing 2s infinite;
    z-index: -1;
}

.play-video img {
    width: 100px;
    display: block;
}

.play-video img:hover {
    transform: scale(1.1);
}

@keyframes pulseRing {
    0% {
        transform: scale(.7);
        opacity: .6;
    }

    70% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.form-area {
    padding: 80px 0;
}

.adesao-container {
    padding: 60px 15px;
    width: 100%;
}

.adesao-container h2 {
    color: var(--theme-color);
    margin-bottom: 40px;
}

.form-flex {
    display: flex;
    /* gap: 40px; */
    /* espaço elegante entre os lados */
}

.form-side {
    flex: 1;
    display: flex;
    align-items: center;
}

.image-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-side img {
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    border: 10px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.form-adesao {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.captcha {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav {
    display: none !important;
}

.owl-nav button {
    background: transparent;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: .8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: .8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(.9);
    transition: .6s ease;
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}

.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(8px);
}

/* container do vídeo */
.video-container {
    position: relative;
    width: min(90vw, 900px);
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    animation: videoFade .35s ease;
}

.video-container iframe {
    width: 100%;
    height: 100%;
}

/* botão fechar */
.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

@keyframes videoFade {
    from {
        opacity: 0;
        transform: scale(.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.field-error {
    color: #f9313b;
    font-size: 12px;
    margin-top: 6px;
}

.success-screen {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
}

.success-screen.active {
    opacity: 1;
    pointer-events: all;
}

.success-card {
    background: #ffffff;
    padding: 35px 50px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    transform: translateY(15px) scale(.96);
    transition: .25s ease;
    max-width: 420px;
    width: 90%;
}

.success-screen.active .success-card {
    transform: translateY(0) scale(1);
}

.success-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.success-sub {
    color: #6c757d;
    font-size: 14px;
}

/* resonsive properties */

@media (max-width: 768px) {
    .about-img {
        display: none;
    }

    .about-detail .w-50,
    .pricing-all .w-50 {
        width: 100% !important;
    }

    .feature-section {
        padding: 60px 0;
    }

    .wave-section .content {
        padding: 40px 10px 120px 10px;
    }

    .feature-block .inner-box {
        padding: 20px 40px;
    }

    .feature-block .inner-box h3 {
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .feature-block .inner-box .icon-box {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .about-title h5 {
        font-size: 1rem;
    }

    .about-detail p,
    .about-detail ul li {
        font-size: .9rem;
    }

    .sec-title h2,
    .about-title h2,
    .video-text h2,
    .adesao-container h2 {
        font-size: 2rem;
        line-height: 42px;
        font-weight: 600;
    }

    .video-flex {
        flex-direction: column;
    }

    .video-thumb,
    .video-text {
        width: 100%;
    }

    .video-thumb {
        height: 260px;
    }

    .video-thumb img {
        border-radius: 0;
    }

    .video-text {
        padding: 30px;
    }

    .play-video {
        top: 130px;
    }

    .form-flex {
        flex-direction: column;
    }

    .adesao-container {
        padding: 0 15px;
    }

    .image-side {
        display: none;
    }
}