:root {
    --color-primary: #D91A1A;
    --color-primary-1: #D94814;
    --color-secundary: #F2CB07;
    --color-white: #F2F2F2;
    --color-black: #0D0D0D;
    --color-black-1: #404040;
    --color-black-2: #161616;
    --color-gray: #8C8C8C;
    --color-smooth: #D9D9D9;

    --section-padding: 80px;

    --animation-speed: 100;
    --slide-ease: cubic-bezier(0.86, 0, 0.07, 1);
    --slide-duration: calc(400ms * 100 / var(--animation-speed));
    --slide-delay: calc(450ms * 100 / var(--animation-speed));
    --circle-duration: calc(900ms * 100 / var(--animation-speed));
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: Nunito, Arial, Helvetica, sans-serif;
    font-size: 15px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-white);
    color: var(--color-black-1);
    font-size: 17px;
    line-height: 1.75;
    letter-spacing: 0.2px;
    cursor: cursor;
}



header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 70px;
    background-color: var(--color-smooth);
    position: relative;
}

.logo img {
    width: 200px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--color-black);
    font-size: 17px;
    font-weight: 700;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--color-primary-1);
}

nav ul li a:active {
    color: var(--color-secundary);
}

/* Botão Get Started */
.get-started .btn {
    text-decoration: none;
    padding: 8px 20px;
    background-color: var(--color-primary);
    color: white;
    font-weight: bold;
    transition: background-color 0.3s;
}

.get-started .btn:hover {
    background-color: var(--color-secundary);
}
.colapsado{
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 35px;
    background: none;
    padding-bottom: 10px;
    border: none;
    cursor: pointer;
    color: var(--color-black);
}

.nav-collapsible {
    display: flex;
    flex-direction: row;
    align-items: center;
}


.container-login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding: 100px;
}

.container-login::before,
.container-login::after,
.container-login .circle {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
}

.container-login::before {
    width: 350px;
    height: 350px;
    background: #D91A1A;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.container-login::after {
    width: 400px;
    height: 400px;
    background: #ffd700;
    top: 260px;
    right: 220px;
}

.container-login .circle {
    width: 400px;
    height: 400px;
    background: #F28C0F;
    top: 220px;
    left: 20%;
    z-index: -10;
}

.error{
    color: red;
    font-weight: bold;
}

.contain {
    background: rgba(255, 255, 255, 0.295);
    backdrop-filter: blur(90px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    z-index: 2;
    overflow: hidden;
    padding: 40px 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 600px;
    text-align: center;

}

.contain img {
    width: 190px;
}

.lg-header {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-black);
}

.fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: start;
}

.input-juntos {
    display: flex;
    width: 100%;
    align-content: space-between;
    gap: 40px;
}

.input-field {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.input-field label {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 5px;
}

.input-field input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.input-field input:focus {
    border-color: var(--color-primary-1);
}

.input-field select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: var(--color-black-1);
    outline: none;
    transition: border-color 0.3s;
}

.input-field select:focus {
    border-color: #D91A1A;
}

.sumbit {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 17px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.sumbit:hover {
    background: var(--color-primary);
}

.sumbit .btnText {
    margin-right: 8px;
}

.sumbit i {
    font-size: 18px;
}

.input-field-check {
    display: flex;
    align-items: center;
    text-align: start;
    margin-top: 20px;
    margin-bottom: 30px;
}

.input-field-check input {
    appearance: none;
    margin-right: 1rem;
    transform: scale(1.5);
    width: 20px;
    height: 20px;
    background-color: #fff;
    cursor: pointer;
    border: 2px solid #080808;
    outline: none;
    transition: all 0.3s ease;
}

.input-field-check input[type="checkbox"]:checked {
    background-color: #F28705;
    border-color: #F28705;
}

.input-field-check input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.input-field-check label {
    cursor: pointer;
    user-select: none;
    font-size: 17px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 20px 0;
}
.password-container {
    position: relative;
}

.password-container input {
    width: 100%;
    padding-right: 30px; /* Space for the eye icon */
}

.password-container .fa-eye,
.password-container .fa-eye-slash {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #666;
}


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-consent a {
    color: #4caf50;
    text-decoration: underline;
}

.cookie-consent__agree {
    background: #4caf50;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 2px;
    background-color: #ccc;
    margin: 0 10px;
}

.divider span {
    font-size: 17px;
    font-weight: bold;
    color: var(--color-black);
}

.button-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.google-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.google-button i {
    font-size: 20px;
    color: #4285F4;
}

.google-button:hover {
    border-color: #4285F4;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.google-button:active {
    transform: scale(0.98);
}

.forgot-password {
    margin-top: 20px;
    font-size: 16px;
    color: var(--color-black-1);
    text-align: center;
}

.forgot-password .click-here {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.forgot-password .click-here:hover {
    color: var(--color-primary-1);
    text-decoration: underline;
}

.lin {
    margin-top: 15px;
    margin-bottom: 30px;
    text-align: start;
    font-size: 17px;
    color: var(--color-black-1);
}

.lin a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.lin a:hover {
    color: var(--color-primary-1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;

}

.conteudo {
    margin-top: 60px;
}


.conteudo h1 {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5;
    color: var(--color-black);
}

.conteudo p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-black-2);
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: var(--color-secundary);
}

.insights {
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 50px;

}

.insight-box {
    position: relative;
    background: rgba(255, 255, 255, 0.295);
    backdrop-filter: blur(10px);
    border-radius: 10px 10px 50px 10px;
    padding: 20px;
    width: 220px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    overflow: hidden;
}

.insights::before,
.insights::after,
.insights .circle {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
}

.insights::before {
    width: 250px;
    height: 250px;
    background: #D91A1A;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.insights::after {
    width: 300px;
    height: 300px;
    background: #ffd700;
    top: 110px;
    right: 0;
}

.insights .circle {
    width: 200px;
    height: 200px;
    background: #090a09;
    bottom: 0;
    left: 30px;
}

.insight-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.insight-box p {
    font-size: 15px;
    line-height: 1.4;
    color: var(--color-black-1);
}

.logos {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
}

.log img {
    width: 100px;
    height: 60px;
    background: rgba(255, 255, 255, 0.445);
    backdrop-filter: blur(10px);
    border-radius: 5px;
}

.card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    max-width: 1200px;
    margin: 150px auto;
    padding: 20px;
    gap: 20px;
}

.card-list .card-item {
    background: #fff;
    padding: 26px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.04);
    list-style: none;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: border 0.5s ease;
}

.card-list .card-item:hover {
    border: 2px solid var(--color-primary-1);
}

.card-list .card-item img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    object-fit: cover;
}

.card-list span {
    display: inline-block;
    background: #F7DFF5;
    margin-top: 32px;
    padding: 8px 15px;
    font-size: 17px;
    border-radius: 50px;
    font-weight: 600;
}

.card-list .developer {
    background-color: #F7DFF5;
    color: #B22485;
}

.card-list .designer {
    background-color: #d1e8ff;
    color: #2968a8;
}

.card-list .editor {
    background-color: #d6f8d6;
    color: #205c20;
}

.card-list .music {
    background-color: #d6f8d6;
    color: var(--color-secundary);
}

.card-item h3 {
    color: var(--color-black);
    font-size: 23px;
    margin-top: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-item .progress-box {
    background-color: var(--color-gray);
}

.card-item .progress {
    background-color: var(--color-secundary);
    height: 8px;
}

.card-item .meta {
    display: flex;
    justify-content: space-between;

}

.card-item .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-35deg);
    height: 40px;
    width: 40px;
    color: #000;
    border: 1px solid #000;
    border-radius: 50%;
    margin-top: 40px;
    transition: 0.2s ease;
}

.card-list .card-item:hover .arrow {
    background: #000;
    color: #fff;
}

.card-list-1 .card-item:hover .arrow {
    background: #000;
    color: #fff;
}

.responsive-container-block {
    min-height: 75px;
    height: fit-content;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
}

.info-container-block {
    min-height: 75px;
    height: fit-content;
    max-width: 1250px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.text-blk {
    text-align: justify;
}

.responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mainImg {
    width: 50%;
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.text-blk.headingText {
    font-size: 25px;
    font-weight: 800;
    line-height: 34px;
    color: var(--color-black);
    background: #ebe999;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 15px;
}

.allText {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 40px;
    width: 40%;
    margin: 0 0 0 0;
}

.text-blk.subHeadingText {
    color: var(--color-black-1);
    font-size: 20px;
    line-height: 34px;
    font-weight: 700;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
}

.text-blk.description {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-black-2);
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
}

.allText a {
    text-decoration: none;
}

.explore {
    font-size: 20px;
    line-height: 28px;
    color: rgb(255, 255, 255);
    background-color: var(--color-primary);
    padding-top: 10px;
    padding-right: 50px;
    padding-bottom: 10px;
    padding-left: 50px;
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    cursor: pointer;
}

.explore:hover {
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: var(--color-secundary);
    color: var(--color-white);
}

.responsive-container-block.Container {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
    justify-content: center;
    align-items: center;
    max-width: 1320px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.responsive-container-block.Container.bottomContainer {
    margin-top: 100px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    flex-direction: row-reverse;
    margin: 100px auto 50px auto;
}

.info-container-block.Container {
    margin-right: auto;
    margin-bottom: 50px;
    align-items: center;
    max-width: 1320px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.info-container-block.Container.bottomContainer {
    margin-right: 0px;
    margin-left: 0px;
    flex-direction: row-reverse;
}

.allText.aboveText {
    margin: 0 0 0 40px;
}

.allText.bottomText {
    margin: 0 40px 0 0;
}


.cont-container {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    position: relative;
    justify-content: center;
    align-items: center;
}

.conteudo-container {
    position: relative;
    background: rgba(255, 255, 255, 0.295);
    backdrop-filter: blur(10px);
    border-radius: 10px 10px 50px 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
    overflow: hidden;
    width: 50%;
}

.cont-container::before,
.cont-container::after,
.cont-container .circle {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.cont-container::before {
    width: 300px;
    height: 300px;
    background:#D91A1A;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.cont-container::after {
    width: 350px;
    height: 350px;
    background: #ffd700;
    top: 110px;
    right: 0;
}

.cont-container .circle {
    width: 300px;
    height: 300px;
    background: #090a09;
    bottom: 0;
    left: 30px;
}

#counter {
    background-color: #ffb400;
    color: #fff;
    display: block;
    overflow: hidden;
    text-align: center;
    padding: 50px 0;
}

#counter .box {
    width: 200px;
    margin: 15px;
}

#counter .count {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-align: center;
    border-radius: 10px;
}

.count h4 {
    color: #f7eeee;
    font-size: 18px;
    font-weight: 800;
    margin-top: 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}


#counter .number {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}


.container .pagination {
    position: relative;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    border-radius: 2px;
}

.container .pagination li {
    list-style-type: none;
    display: inline-block;
}

.container .pagination li a {
    position: relative;
    padding: 20px 25px;
    text-decoration: none;
    color: #352c2c;
    font-weight: 500;
}

.container .pagination li a:hover,
.container .pagination li.active a {
    background: rgba(54, 77, 153, 0.2);
}

main {
    padding: 2rem;
    background-color: #f9f9f9;
    margin-bottom: 80px;
}

.company-overview .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.como-submeter .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background-color: #f9f9f9;
}

.text-content {
    max-width: 400px;
}

.heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--color-black);
}

.description {
    font-size: 17px;
    line-height: 1.5rem;
    color: var(--color-black-2);
    text-align: justify;
}

.descriptio {
    font-size: 15px;
    line-height: 1.5rem;
    color: var(--color-black-2);
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    background: linear-gradient(to bottom, #f0f0f0, #e0e0e0);
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-secundary);
}

.stat-label {
    font-size: 0.875rem;
    color: #555;
}


.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-secundary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.timeline-text {
    font-size: 17px;
    line-height: 1.5rem;
    color: var(--color-black-1);
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5px;
    width: 2px;
    height: 100%;
    background-color: #ccc;
}

.info-section {
    margin-bottom: 3rem;
}

.info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 0px 80px;
}

.info-container.reverse {
    direction: rtl;
}

.info-container.reverse .text-content {
    direction: ltr;
}

.text-content {
    max-width: 500px;
}

.badge {
    display: inline-block;
    background-color: #e3f2fd;
    color: #007bff;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.info-heading {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-black-1);
    margin-bottom: 1rem;
}

.info-paragraph {
    font-size: 17px;
    line-height: 1.6rem;
    color: var(--color-black-2);
    margin-bottom: 1rem;
}

.info-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: var(--color-black-2);
}

.info-list li {
    margin-bottom: 0.5rem;
}

.image-content img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* FAQs Container */
.faq-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.faq-container::before,
.faq-container::after,
.faq-container .circle {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
}

.faq-container::before {
    width: 250px;
    height: 250px;
    background: #D91A1A;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.faq-container::after {
    width: 300px;
    height: 300px;
    background: #ffd700;
    top: 10px;
    right: 0;
}

.faq-container .circle {
    width: 200px;
    height: 200px;
    background: #090a09;
    bottom: 0;
    left: 30px;
}

.faq {
    background: rgba(255, 255, 255, 0.295);
    backdrop-filter: blur(90px);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    z-index: 2;
    overflow: hidden;
}

.faq-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: #0c0b0b;
}

/* Accordion Styles */
.accordion {
    margin-top: 1rem;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}


.accordion-button {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: left;
    padding: 0.5rem 0;
    width: 100%;
    cursor: pointer;
    outline: none;
    transition: color 0.3s ease;
}

.accordion-button::before {
    --chevron-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3C!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath fill='white' d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
    content: "";
    left: 0;
    top: 0;
    width: 0.65rem;
    aspect-ratio: 320 / 512;
    display: inline-block;
    margin-right: 0.75rem;
    transform: rotate(var(--d, 0deg));
    transition: transform var(--slide-ease) var(--slide-duration) var(--slide-delay);
    mask-image: var(--chevron-icon);
    mask-size: 100% 100%;
    -webkit-mask-image: var(--chevron-icon);
    -webkit-mask-size: 100% 100%;
    background-color: currentColor;
}

.accordion-button:hover {
    color: #f28705;
}


.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0;
}

.accordion-content p {
    margin: 0;
    padding: 0.5rem 0;
}

/* Accordion Active State */
.accordion-item.active .accordion-content {
    max-height: 100px;
    /* Ajuste de acordo com o conteúdo */
    padding: 0.5rem 0;
}


.termos {
    margin-bottom: 60px;
}

.termos h2 {
    font-size: 1.5em;
    color: #020873;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.termos p {
    margin-bottom: 10px;
}

.details-title {
    text-align: center;
    margin-bottom: 20px;
    padding: 50px;
    background: var(--color-smooth);
}

.details-title span {
    font-size: 17px;
}

.details-title .success {
    color: rgb(3, 156, 3);
}

.details-title .danger {
    color: red;
}

.project-details {
    display: flex;

    gap: 30px;
    margin-top: 80px;
}

.image-section,
.info-section {
    flex: 1 1 100%;
}

.image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.media-gallery {
    display: flex;
    gap: 10px;
}

.media-gallery img {
    width: 190px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.project-details i {
    font-size: 20px;
    color: var(--color-secundary);
}

.descricao {
    text-align: justify;
    color: var(--color-black-2);
    font-size: 17px;
}

.core {
    color: var(--color-black);
    font-size: 20px;
}

.info-section {
    display: flex;
    flex-direction: column;
}

.info-section h2 {
    font-size: 25px;
    color: var(--color-black);
}

.info-section p {
    font-size: 17px;
    text-align: justify;
    gap: 8px;
    color: var(--color-black-2);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 5px solid #ddd;
    border-top: 5px solid #F28705;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.links a {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 15px;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.links a i {
    margin-right: 5px;
}

.links a:hover {
    background-color: #0056b3;
}

.documents h3 {
    margin-bottom: 10px;
}

.documents a {
    color: #007bff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

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


.payment-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.button-mpesa {
    background-color: #F20505;
}

.button-paypal {
    background-color: #0070ba;
}

.button i {
    font-size: 20px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.modal-content input {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.modal-content input:focus {
    border: 1px solid #F28705;
    outline: none;
    /* Remove a borda padrão azul */
}

.modal-content button {
    background-color: #e60000;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.modal-content button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.close {
    color: #e60000;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

.close:hover {
    color: #990000;
}


.footer {
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--color-smooth);
}

.footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 80px;
}


.footer-row .footer-col img {
    width: 180px;
}

.footer-row .footer-col h4 {
    color: var(--color-black);
    font-size: 22px;
    font-weight: 500;

}

.footer-col .navegacao {
    margin-top: 20px;
}

.footer-col .navegacao li {
    list-style: none;
    margin-bottom: 10px;
    text-align: justify;
}

.footer-col .navegacao li a {
    text-decoration: none;
    font-size: 17px;
    color: var(--color-black-2);
}

.footer-col .navegacao li a:hover {
    color: var(--color-primary);
}

.footer-col p {
    text-align: justify;
    color: var(--color-black-1);
    max-width: 500px;
    font-size: 17px;
}

.footer-col .icons {
    display: flex;
    margin-top: 30px;
    gap: 30px;
    cursor: pointer;
}

.footer-col .icons i {
    color: #0f0f0f;
}

.footer-col .icons i:hover {
    color: #232CD9;
}

.copyright {
    display: flex;
    justify-content: space-between;
    padding: 10px 80px;
    color: #363434;
}

/* Responsive Design */

@media (max-width: 1024px) {
    .responsive-container-block.Container {
        max-width: 850px;
    }

    .info-container-block.Container {
        max-width: 850px;
    }

    .mainImg {
        width: 55%;
        height: auto;
    }

    .text-blk.description {
        font-size: 17px;
    }

    .allText {
        width: 40%;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 20px;
    }

    .responsive-container-block.bigContainer {
        padding-top: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }

    .text-blk.subHeadingText {
        font-size: 20px;
    }

    .responsive-container-block.Container.bottomContainer {
        margin: 80px auto 50px auto;
    }

    .responsive-container-block.Container {
        max-width: 830px;
    }

    .info-container-block.Container {
        max-width: 830px;
    }

    .allText.aboveText {
        margin: 30px 0 0 40px;
    }

    .allText.bottomText {
        margin: 30px 40px 0 0;
    }

    .card-list .card-item {
        padding: 15px;
    }

    .card-list-1 .card-item {
        padding: 15px;
    }

}

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

    header {
        padding: 15px 40px;
    }

    .logo img {
        width: 150px;
    }

    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        gap: 20px;
    }


    .hero {
        display: flex;
        gap: 1px;
        padding-top: 10px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .insights {
        position: relative;
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    .card-list {
        margin: 0 auto;
    }

    .card-list-1 {
        margin: 0 auto;
    }

    .accordion-item.active .accordion-content{
        max-height: 200px;
        padding: 0.5rem 0;
    }

    .termos {
        padding: 40px;
    }
    .footer .footer-row {
        padding: 30px 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block; /
    }

    .icon{
        color: var(--color-primary);
    }

    .icon:hover{
        color: var(--color-secundary);
    }

    nav ul {
        display: none;
        flex-direction: column;
    }

    .nav-collapsible.open ul {
        display: flex;
        position: absolute;
        text-align: right;
        top: 100%;
        right: 0;
        background: var(--color-smooth);
        padding: 15px;
        border-bottom: 1px solid var(--color-gray);
        box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
        z-index: 10;
        border-left: 1px solid var(--color-gray);
        border-bottom-left-radius: 10px;
        padding-right: 40px;
    }

    .get-started {
        display: none; /* Opcional: esconde o botão "Get Started" no mobile */
    }

    .colapsado{
        display: flex;
    }

    .hero {
        display: flex;
        flex-direction: column;
    }

    .btn{
        margin-bottom: 30px;
    }
    .faq-container {
        grid-template-columns: 1fr;
    }

    .project-details {
        flex-wrap: nowrap;
    }

    .image-section,
    .info-section {
        flex: 1 1 50%;
    }

    .info-container {
        grid-template-columns: 1fr;
        padding: 0px 20px;
    }

    .info-container.reverse {
        direction: ltr;
    }

    .mainImg {
        width: 90%;
    }

    .allText {
        width: 100%;
        margin-top: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }

    .responsive-container-block.Container {
        flex-direction: column;
        height: auto;
    }

    .info-container-block.Container {
        flex-direction: column;
        height: auto;
    }

    .text-blk.headingText {
        text-align: center;
    }

    .text-blk.subHeadingText {
        text-align: center;
        font-size: 23px;
    }

    .text-blk.description {
        text-align: center;
        font-size: 17px;
    }

    .allText {
        margin-top: 40px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .allText.aboveText {
        margin: 40px 0 0 0;
    }

    .responsive-container-block.Container {
        margin: 80px auto 50px auto;
    }

    .info-container-block.Container {
        margin: 80px auto 50px auto;
    }

    .responsive-container-block.Container.bottomContainer {
        margin: 50px auto 50px auto;
    }

    .allText.bottomText {
        margin: 40px 0 0 0;
    }

    .footer .footer-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 30px 60px;
    }

    .row {
        justify-content: center;
    }

    #counter .box {
        width: 45%; /* Cada box ocupará metade da largura */
    }
}

@media (max-width: 600px) {

    .row {
        justify-content: center;
        gap: 15px;
    }

    #counter .box {
        width: 100%; /* Cada box ocupará 100% da largura */
    }

    #counter .count {
        padding: 20px;
    }

    .count h4 {
        font-size: 16px;
    }

    .number {
        font-size: 20px;
    }
    .hero {
        padding-top: 0px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .btn{
        margin-bottom: 40px;
    }

    .insights {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .insight-box {
        position: relative;
        background: rgba(255, 255, 255, 0.295);
        backdrop-filter: blur(10px);
        border-radius: 10px 10px 50px 10px;
        padding: 20px;
        width: 220px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 10;
        overflow: hidden;
    }

    .insights::before,
    .insights::after,
    .insights .circle {
        content: "";
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        z-index: -1;
    }

    .insights::before {
        width: 250px;
        height: 250px;
        background: var(--color-primary);
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .insights::after {
        width: 250px;
        height: 250px;
        background: var(--color-secundary);
        top: 200px;
        right: 50%;
    }

    .insights .circle {
        width: 250px;
        height: 250px;
        background: var(--color-primary-1);
        bottom: 0;
        left: 50%;
    }

    .cont-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 20px;
        position: relative;
        justify-content: center;
        align-items: center;
    }

    .conteudo-container {
        position: relative;
        background: rgba(255, 255, 255, 0.295);
        backdrop-filter: blur(10px);
        border-radius: 10px 10px 50px 10px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 2;
        overflow: hidden;
        width: 100%;
    }

    .cont-container::before,
    .cont-container::after,
    .cont-container .circle {
        content: "";
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        z-index: 1;
    }

    .cont-container::before {
        width: 300px;
        height: 300px;
        background: #D91A1A;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .cont-container::after {
        width: 350px;
        height: 350px;
        background: #ffd700;
        top: 410px;
        right: 0;
    }

    .cont-container .circle {
        width: 300px;
        height: 300px;
        background: #090a09;
        bottom: 0;
        left: 30px;
    }

    .logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 60px;
    }

    .log img {
        width: 100px;
        height: 60px;
        background: rgba(255, 255, 255, 0.445);
        backdrop-filter: blur(10px);
        border-radius: 5px;
    }
    .project-details {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 80px;
    }
    .button {
        padding: 12px 20px;
        font-size: 14px;
    }

    main {
        padding: 1rem;
    }

    .info-container {

        padding: 0px 10px;
    }

    .company-overview .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }

    .como-submeter .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .termos {
        padding: 30px;
        margin-bottom: 20px;
    }

    .container-login {
        padding: 50px;
    }

    .container-login::before,
    .container-login::after,
    .container-login .circle {
        content: "";
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        z-index: 1;
    }

    .container-login::before {
        width: 350px;
        height: 350px;
        background: #D91A1A;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
    }

    .container-login::after {
        width: 400px;
        height: 400px;
        background: #ffd700;
        top: 260px;
        right: 220px;
    }

    .container-login .circle {
        width: 200px;
        height: 200px;
        background: #F28C0F;
        top: 220px;
        left: 20%;
        z-index: -1;
    }

    .footer .footer-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 30px 30px;
    }

    .footer-row .footer-col h4 {
        margin-top: 20px;
    }

    .copyright {
        padding: 10px 30px;
    }
}

@media (max-width: 500px) {
    .responsive-container-block.Container {
        padding-top: 10px;
        padding-right: 0px;
        padding-bottom: 10px;
        padding-left: 0px;
        width: 100%;
        max-width: 100%;
    }

    .info-container-block.Container {
        padding-top: 10px;
        padding-right: 0px;
        padding-bottom: 10px;
        padding-left: 0px;
        width: 100%;
        max-width: 100%;
    }

    .mainImg {
        width: 100%;
    }

    .container-login {
        padding: 30px;
    }

    .input-juntos {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .responsive-container-block.bigContainer {
        padding-top: 10px;
        padding-right: 25px;
        padding-bottom: 10px;
        padding-left: 25px;
    }

    .text-blk.subHeadingText {
        font-size: 20px;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }

    .text-blk.description {
        font-size: 17px;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }

    .allText {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        width: 100%;
    }

    .insights::before {
        width: 150px;
        height: 150px;
        background: var(--color-primary);
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
    }

    .insights::after {
        width: 150px;
        height: 150px;
        background: var(--color-secundary);
        top: 200px;
        right: 50%;
    }

    .insights .circle {
        width: 150px;
        height: 150px;
        background: var(--color-primary-1);
        bottom: 0;
        left: 50%;
    }
}



