:root {
    /* --bg-primary: #0054FE;
    --bg-secundary: #101F57;
    --tx-primary: #101F57;
    --tx-primary-hover: #0054FE;
    --tx-secundary: #506583; */

    --bg-primary: #00456C;
    --bg-secundary: #3B3B3B;
    --tx-primary: #3B3B3B;
    --tx-primary-hover: #00456C;
    --tx-secundary: #506583;

    --bg-header: #FFFFFF;
    --bg-footer: var(--bg-secundary);


    /* Bootstrap */
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
}
*{
    font-family: 'Barlow', sans-serif;
}

html,
body {
    height: 100%;
}

body {
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

html {
    overflow-x: hidden;
}

.site-main {
    flex: 1 0 auto;
}

footer {
    margin-top: auto;
}

* {
    box-sizing: border-box;
}

.header {
    background-color: #FFF;
    color: var(--bg-secundary);
    min-height: 60px;
    padding: 10px 0;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    width: 100%;
    overflow: hidden;
}

.header .header-logo {
    /* max-height: 25px; */
    max-height: 37px;
    height: 100%;
    width: auto;
}

.header .main-menu ul {
    margin-bottom: 0;
}

.header .main-menu ul li {
    list-style: none;
}

.header a {
    text-decoration: none;
    color: var(--bg-secundary);
}

.header a:hover {
    color: var(--tx-primary-hover);
}

.primary-cta {
    background-color: #6AD49B;
    color: #FFF !important;
    font-weight: 600;
    text-wrap: nowrap;
}

.btn {
    font-weight: 600 !important;
}

.cta-white {
    background-color: #FFF;
    color: var(--tx-primary-hover);
}

.cta-white:hover {
    /* color: var(--tx-primary-hover) !important; */
    background-color: transparent;
    border: solid 2px #FFF;
}

.primary-cta:hover {
    background-color: #54ad7d!important;
}

.section-spacer {
    padding: 50px 0;
}

.section-span {
    color: var(--tx-secundary);
    font-weight: 600;
    font-size: 11px;
    display: block;
}

.section-title {
    color: var(--tx-primary);
    font-size: 2.4rem;
    letter-spacing: -.2px;
    line-height: 44px;
    font-weight: 600;
}

.section-title-w70p {
    max-width: 70%;
    margin: 0 auto;
}

.section-description {
    font-size: 1.15rem;
    line-height: 26px;
    color: var(--tx-secundary);
}

.callout {
    background-color: var(--bg-primary);
    color: #FFF;
    padding: 50px 0;
}

.footer {
    background-color: var(--bg-footer);
    color: #FFF;
    display: flex;
    align-items: center;
    padding: 50px 0;
}

.copyright {
    padding: 10px 0;
    text-align: center;
    background-color: var(--bg-footer);
    color: #FFF;
    text-align: center;
}

.copyright .col-sm-8 p {
    display: flex;
    align-items: center;
    margin: 0 !important;
}


.logo-footer {
    padding-bottom: 12px !important;
    display: block;
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    padding-bottom: 12px;
}

.footer a {
    color: #fff;
    /* display: block; */
    font-size: 14px;
    padding: 5px 0;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-description {
    font-size: 14px;
    line-height: 20px;
    color: #FFF;
}

.footer-social-link {
    display: inline;
}


/* Header buttons */
.header-login {
    font-size: 14px;
    white-space: nowrap;
}

.header .primary-cta {
    font-size: 14px;
    padding: 8px 16px;
    white-space: nowrap;
}

@media screen and (max-width: 992px) {
    .main-menu {
        display: none;
    }

    .section-spacer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-spacer#planos {
        padding: 0;
    }

    #feature-list-image-relacionamento-com-cliente {
        display: none;
    }

    .carousel-slide {
        flex: 0 0 80%;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 34px;
    }

    .section-title-w70p {
        max-width: 90%;
    }

    .header-login {
        font-size: 13px;
    }

    .header .primary-cta {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media screen and (max-width: 576px) {
    .header .header-logo {
        max-height: 30px;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 28px;
    }

    .header-login {
        font-size: 12px;
    }

    .header .primary-cta {
        font-size: 12px;
        padding: 6px 10px;
    }
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    animation: carousel-animation 40s infinite linear;
}

.carousel-slide {
    flex: 0 0 60%;
    /* Estilize os slides do carrossel aqui */
}

@keyframes carousel-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/**
    BLOG POST
*/
.cards-post-list {
    padding: 50px 0;
    display: flex;
    justify-content: center;
    /* gap: 20px; */
}

.cards-post-list > div{
    margin-bottom: 15px;
}

.post-card {
    border: 1px solid #e1e3e5;
    border-radius: 10px;
    transition: all .25s;
    overflow: hidden;
    background-color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.post-card .post-image,
.post-card .post-image img {
    width: 100%;
    padding: 0;
    height: auto;
    object-fit: cover;
}

.post-card .post-image {
    background-color: rgb(0, 0, 0, 0.2);
    width: 100%;
}

.post-card .post-header {
    padding: 0 24px;
    padding-bottom: 0;
    flex: 1 1 100%;
}

.post-header .container-flag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.post-header .creation-details {
    font-size: 12px;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.post-header .author-name {
    font-weight: bold;
    text-decoration: none;
    font-size: 12px;
}

.card-flag {
    background-color: #5BA5FE;
    color: #FFF;
    padding: 3px 10px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
}

.card-flag:hover {
    color: #FFF;
    text-decoration: none;
}

.post-card .post-title,
.post-title {
    margin: 0;
    font-size: 16px;
    /* padding: 16px 24px; */
    color: #333;
}

.post-card .post-read-more {
    color: #1f69c1;
    padding: 16px 24px;
    text-align: center;
}

.btn-see-more {
    background-color: rgb(31, 105, 193);
    font-weight: 600;
    font-size: 14;
    /* height: 40px; */
    padding: 8px 24px;
    color: #FFF;
    text-decoration: none;
    border-radius: 4px;
    border: solid 1px;
    width: auto;
    text-align: center;
}

.btn-see-more:hover {
    background-color: rgb(25, 83, 153);
    color: #FFF;
}

/**
    END - BLOG POST
*/

/* STACTION */
.main-section.blog {
    background-color: var(--bg-primary);
    color: #FFF;
    padding: 50px 0;
    text-align: center;
}

.main-section.blog h1{
    color: #FFF;
}

.bread-crumb a {
    color: #FFF;
}

.pd-50 {
    padding: 50px;
}

.posts-inline {
    display: flex;
    flex-direction: column;
}

.post-card-inline {
    display: flex;
    align-items: center;
    gap: 10px;

    border: 1px solid #e1e3e5;
    border-radius: 6px;
    transition: all .25s;
    overflow: hidden;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.post-card-inline .post-image {
    width: 150px;
    margin: 0;
}

.post-card-inline .post-image img {
    width: 100%;
}

.post-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.post-card-inline .post-title,
.post-card-inline .post-title h2 {
    font-size: 15px;
    text-decoration: none;
}

.post-content .post-header {
    font-size: 11px
}

.aside-section-post {
    margin-bottom: 30px;
}

.title-section-post h5 {
    font-size: 14px;
}

/* END SECTION */

/* POST SHOW */

.main-article {}

.main-article,
.main-article .post-image {
    max-width: 800px;
}

.main-article .post-image img {
    width: 100%;
}

.header-article {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.article-details,
.author-name {
    font-size: 14px;
    color: var(--tx-secundary);
    text-decoration: none;
}

.article-main,
.article-main img {
    max-width: 100% !important;
}

.article-footer {
    margin: 50px 0;
}

.social-links.border-link a {
    display: inline-block;

    width: 35px;
    height: 35px;

    text-align: center;

    border: 1px solid #333;

    line-height: 32px;
}

.social-links.solid-link a {
    display: inline-block;

    width: 35px;
    height: 35px;

    text-align: center;

    color: #000;
    background: #fff;

    line-height: 35px;
}

.social-links.circle-link a {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.social-links.round-link a {
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.social-links.colored-link a {
    color: #fff;
}

.social-links.colored-link a:hover {
    color: #fff;
}

.social-links.colored-link a.facebook {
    border-color: #395799;
    background: #395799;
}

.social-links.colored-link a.twitter {
    border-color: #19b2f5;
    background: #19b2f5;
}

/* POST SHOW END */

:root {
    --bg-main-section: var(--bg-primary);
    font-size: 16px;
}

.header {
    position: fixed;
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
}

.main-section {
    padding: 90px 0;
    text-align: left !important ;
}

section img{
    max-width: 100%;
}

section:nth-child(odd){
    background-color: #fff;
}


section:nth-child(even){
    background-color: #f0f4fd;
}

section:nth-child(odd) .row{
}


section h1 {
    font-size: 2.5rem;
    line-height: 1;
    margin: 0 0 24px;
    padding: 0;
    color: #333;
}

section h2{
    font-size: 1.6rem;
    color: #484848;
    margin-bottom: 15px;
}

section h3{
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 15px;
}


section.bg-testimony h6{
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

section .enfase{
    color: #5BA5FE;
    font-weight: bold;
}

section h1 b, section h1 strong{
    color: #5BA5FE;
    font-weight: bold;
}


.main-cta {
    background-color: var(--bg-primary) !important;
    border: 2px solid #FFF !important;
    color: #FFF !important;
}

.main-cta:hover {
    background-color: #FFF !important;
    color: var(--bg-primary) !important;
}

.main-carousel-img{
    text-align: center;
    position: relative;
    isolation: isolate;
    max-width: 337px;
    margin: 0 auto;
}

.main-carousel-img img {
    display: block;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
    pointer-events: none;

}
.secondary-img {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;

}
.secondary-img div {
    max-width: 290px;
}





#planos {
    padding: 0;
}

/* Feature Card */
.feature-card-group {
    margin-top: 50px;
}

.feature-card-group .feature-card {
    background-color: #FFF;
    border-radius: 6px;
    box-shadow: 0 3px 7px rgb(25 58 98/15%);
    /* min-height: 300px; */
    /* max-width: 420px; */
    max-width: 300px;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media screen and (max-width: 993px) {
    .feature-card-group .feature-card {
        max-width: 100%;
        width: 100%;
    }
}

.feature-card-group .feature-card a {
    text-decoration: none;
}


.feature-card-group .image-group {
    background-color: rgba(0, 0, 0, 0.1);
    /* padding: 0 40px; */
    width: 100%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    position: relative;
    overflow: hidden;
}

.feature-card-group .image-group img {
    width: 100%;
    /* margin: 20% auto auto; */
    transition: .4s;
}

.feature-card-group .image-group img {
    width: 100%;
    /* margin: 20% auto auto; */
    transition: .4s;
}

/* .feature-card-group .feature-card a:hover .image-group img {

    margin: 10% auto auto;
} */

.feature-card-group .text-group {
    padding: 16px;
}

.feature-card-group .text-group h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--tx-primary);
}

.feature-card-group .text-group p {
    font-size: 16px;
    min-height: 66px;
    line-height: 21px;
    margin: 0;
    color: var(--tx-secundary);
}

.feature-card-group .feature-card .feature-action {
    background-color: #FFF;
    border: solid 1px rgba(0, 0, 0, 0.1);
    color: var(--tx-primary);
}

.feature-card-group .feature-card a:hover .feature-action {
    color: var(--tx-primary-hover);
}

/* END: Feature Card */

.feature-cta {
    color: var(--tx-primary-hover);
    font-weight: 600;
    text-decoration: none;
}

.text-right{
    text-align: right;
}

.feature-cta:hover {
    color: var(--tx-primary);
    text-decoration: underline;
}

.feature-list-image {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    height: 500px;
    /* height: 400px; */
    position: relative;
    overflow: hidden;
    padding: 0px;
    /* background-color: rgba(0, 0, 0, 0.1); */
}

.feature-list-image img {
    height: 100%;


    /* margin: 5% auto auto; */
    margin-bottom: 0;
    transition: .4s;
}

/* .section-spacer:hover .feature-list-image img {
    margin: 8%;
} */


.depoimento-list-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    max-width: 60px;
    position: relative;
    /* overflow: hidden; */
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 5px !important;
}

.dep-row{
    display: flex;
    flex-flow: row;
    gap: 10px;
}

.depoimento-list-image img {
    width: 100%;
    max-width: 260px;
    border-radius: 50%;
    /* margin-top: -16px;
    margin-left: -15px; */
    margin-bottom: 0;
    transition: .4s;
}
/*
.bg-testimony:hover .depoimento-list-image img {
    margin-top: 0;
    margin-left: 0;
} */
.bg-testimony .section-span,
.bg-testimony .section-span a {
    color: #666;
    text-decoration: none;
}

.bg-testimony .section-span.big,
.bg-testimony .section-span.big a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
}
/*
bg-testimony {
    background-color: var(--bg-main-section);
} */


.cta-download-app {
    background-color: var(--bg-primary);
    width: 150px;
    height: 52px;
}

.cta-download-app:hover {
    background-color: var(--bg-primary);
    opacity: 0.8;
}

.cta-download-app.google-play {
    background-image: url(../img/google-play-button.png);
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    background-size: 96px 29px;
}

.cta-download-app.app-store {
    background-image: url(../img/appstore-button.png);
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    background-size: 96px 29px;
}


.gratis-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 770px;
    margin: 0 auto;
}

.gratis-container div{
    padding: 0 15px;
}

/* Feature */

@media screen and (min-width: 767px) {

    section:nth-child(even) .row{
        flex-direction: row-reverse;
    }

    .main-carousel-img img.smaller {
        max-width: 80%;
    }
}

@media screen and (max-width: 767px) {

    .gratis-container{
        flex-direction: column;
    }

    .main-section h1,
    .main-section h2,
    .main-section h3,
    .container-cta-main-section {
        text-align: center;
    }


}

.plan-header {
    text-align: center;
}

.plan-tabs {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan-tabs nav{
    background: #f0f4fd;
    border-radius: 30px;
    padding: 5px;
    max-width: 500px;
    border: 1px solid #cdcdcd;
}

.plan-tabs nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    margin: 0;
}

.plan-tabs nav ul li {
    list-style: none;
    text-decoration: none;
    border-radius: 30px;
    padding: 5px 10px;
    font-weight: bold;
    background-color: #fff;
    border:1px solid #cdcdcd;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}


.plan-card-features{
    margin-top: 16px;
}

.plan-card-features .feature-block{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(148, 163, 184, .35);
}

.plan-card-features .feature-block:last-child{
    border-bottom: 0;
}

.plan-card-features .feature-block span{
    font-size: 14px;
    display: inline-block;
}

.plan-card-features .feature-block span.value{
    font-weight: bold;
    min-width: 16px;
    text-align: center;
}

.feature-block-disabled {
    opacity: .72;
}

.feature-content {
    min-width: 0;
    flex: 1 1 auto;
}

.feature-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    color: #111827;
    font-size: 14px;
    line-height: 1.25;
}

.feature-title {
    font-weight: 500;
}

.quantity-badge {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    min-height: 20px;
    padding: 1px 7px;
    border-radius: 999px;
    background-color: #fbbf24;
    color: #4e5663;
    font-weight: 700;
    font-size: 12px !important;
}

.unlimited-badge,
.period-label {
    color: #64748b;
    font-size: 12px !important;
}

.feature-details-button {
    border: 0;
    background: transparent;
    color: #64748b;
    padding: 0;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
}

.feature-details-button .material-symbols-outlined {
    font-size: 22px;
    line-height: 22px;
}

.feature-details {
    display: none;
    margin-top: 7px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.35;
}

.feature-block.feature-details-expanded .feature-details {
    display: block;
}

.plan-card-features-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: #4e5663;
    font-weight: 600;
    padding: 10px 0 0;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.plan-tabs nav ul li:hover {
    background-color:  #6AD49B;
    color: #FFF;
}

.plan-tabs nav ul li.active {
    background-color:  #6AD49B;
    color: #FFF;
}

.plan-tabs nav ul li span {
    background-color:  #6AD49B;
    color: #FFF;
    border-radius: 30px;
    font-size: 12px;
    padding: 2px 7px;
}

.plan-tabs nav ul li:hover span, .plan-tabs nav ul li.active span{
    background-color: #FFF;
    color: #6AD49B;
}

.plan-body {
    margin: 50px 0;
}

.plan-table-features{
    padding: 30px 16px;
}

.plan-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 0 16px;
}

.plan-card {
    /* border: solid 1px #c3c3c3; */
    background-color: #f0f4fd;
    border-radius: 10px;
    padding: 30px 20px;
    max-width: 300px;
    min-width: 300px;
    border: 1px solid #cdcdcd;
    transition: .6s;

}

.plan-card:hover {
    -webkit-box-shadow: 3px 4px 5px -1px rgba(0,0,0,0.25);
    -moz-box-shadow: 3px 4px 5px -1px rgba(0,0,0,0.25);
    box-shadow: 3px 4px 5px -1px rgba(0,0,0,0.25);

}

.plan-card-title {
    font-size: 22px;
    font-weight: bold;
}

.plan-card-price {
    /* margin-top: 50px; */
    height: 100px;

}

.detail-value {
    font-size: 13px;
}

.plan-card-currency {
    font-size: 30px;
    /* font-weight: bold; */
    font-weight: 700;
    color: #3b3b3b;
}


.plan-card-currency span {
    margin-top: -5px;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.6;
}

.plan-card-price-details {
    margin-top: 0;
    font-size: 16px;
    color: #3b3b3b;
}

.plan-card-price-details .small{
    opacity: 0.6;
    font-weight: 500;
}

.plan-card-description {
    height: 60px;
    margin: 25px 0;
}

.plan-card-description p{
    line-height: 1.2;
}

.plan-card-action {
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.plan-btn{
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    border-radius: 6px;
    background-color: #6AD49B;
    padding: 7px 20px;
    width: 100%;
    color: #FFF;
    display: block;
    cursor: pointer;
}

.plan-btn:hover {
    text-decoration: none;
    color: #FFF;
    background-color: #54ad7d;
}



.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;
  cursor: pointer;
  color: #808080;
}
.tooltip-container {
    position: relative;
    cursor: pointer;
}

.tooltip-content {
    visibility: hidden;
    background-color: #ffffff;
    color: #000000;
    border-radius: 8px; 
    padding: 5px 10px;
    position: absolute;
    z-index: 999;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); 
    border: none; 
    word-wrap: break-word;
    
}

.tooltip-container:hover .tooltip-content {
    visibility: visible;
    opacity: 1;
}
@media (max-width: 1000px) {
    .plan-cards {
        flex-direction: column;
        align-items: center;
    }

    .plan-card-action-top {
        display: none;
    }

    .plan-card-features-toggle {
        display: flex;
    }

    .plan-card-features {
        display: none;
    }

    .plan-card.features-expanded .plan-card-features {
        display: block;
    }
}

