@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-VariableFont_opsz\,wght.ttf');
    font-weight: normal;
    font-style: normal;
}

/* Geral */

* {
    padding: 0;
    margin: 0;
    font-family: Inter;
}

body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Botões flutuantes */

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 90px;
    z-index: 100000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 100000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #023859;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    color: white;
    border: 1px solid white;
}

.whatsapp-button img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Header */

header {
    max-width: 1280px;
    width: 100%;
    display: flex;
}

.logo-header img {
    object-fit: contain;
    height: auto;
    width: 10rem;
}

.left-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-right: 2px solid darkgrey;
    padding-right: 2rem;
    max-width: 100%;
    width: 70%;
}

.buttons-header {
    display: flex;
    gap: 1rem;
}

.buttons-header a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.right-header {
    margin-left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 30%;
    text-align: center;
    gap: 1rem;
}

.right-header p {
    color: white;
    font-size: 0.8rem;
}

.right-header a {
    font-size: 0.8rem;
    color: #F84D24;
    background-color: white;
    padding: 0.5rem;
    font-weight: bold;
    border-radius: 1.5rem;
    text-decoration: none;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10001;
}

/* Menu lateral flutuante */

.floating-menu-wrapper {
    position: fixed;
    top: 20%;
    right: 0;
    z-index: 9999;
    height: auto;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
}

.floating-menu-wrapper.visible {
    right: 0;
}

.floating-menu-wrapper:not(.visible) {
    right: -300px; 
}

.floating-menu {
    position: relative;
    right: -90px;
    top: -110px;
    width: 150px;
    background: none;
    border-radius: 20px 0 0 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.floating-menu-wrapper:hover .floating-menu,
.floating-menu-wrapper:focus-within .floating-menu {
    right: 0;
}

.floating-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 90%;
    max-height: 40rem; 
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #F84D24 #222;
}

.floating-items::-webkit-scrollbar {
    width: 6px;
}
.floating-items::-webkit-scrollbar-thumb {
    background: #F84D24;
    border-radius: 6px;
}
.floating-items::-webkit-scrollbar-track {
    background: #222;
}

.floating-items a img {
    background: #023859;
    border-radius: 1.5rem;
    padding: 1rem;
    transition: background 0.2s;
}

.floating-items a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.floating-items span {
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    text-align: center;
}

.floating-items a img:hover {
    background: #F84D24;
}

.floating-items img {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
    object-fit: contain;
}

.floating-arrow {
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    background: #ccc;
    color: #222;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    pointer-events: auto;
    cursor: pointer;
}

body.disable-hover .floating-menu-wrapper:hover .floating-menu,
body.disable-hover .floating-menu-wrapper:focus-within .floating-menu {
    right: -150px !important;
}

.floating-menu-wrapper:hover .floating-menu,
.floating-menu-wrapper:focus-within .floating-menu {
    right: 0;
}

body.disable-hover .floating-menu {
  right: -250px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.disable-hover .floating-arrow {
  pointer-events: auto !important;
  opacity: 1 !important;
}

.floating-menu:not(.open) .floating-items span {
    display: none;
}

.floating-menu.open .floating-items span {
    display: block;
}

.floating-menu-wrapper:hover .floating-menu .floating-items span,
.floating-menu-wrapper:focus-within .floating-menu .floating-items span {
    display: block;
}

/* Section Hero */

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    background-image: url(../img/bg-hero.jpg);
    background-position: center;
    background-size: cover;
    padding-top: 2rem;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    width: 100%;
    padding-top: 3rem;
}

.hero-left {
    max-width: 100%;
    width: 50%;
    padding-bottom: 8rem;
}

.hero-left h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 3rem;
}

.partners-icons img {
    object-fit: contain;
    height: auto;
    width: 6rem;
}

.hero-right {
    max-width: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right video {
    object-fit: contain;
    height: auto;
    width: 51rem;
    position: relative;
    right: 6rem;
}

/* Section App */

section.app {
    background-color: #123762;
    background-image: url(../img/bg-branco.png);
    background-position: bottom;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6rem;
    padding-top: 7rem;
    overflow: visible;
}

section.app .container-app {
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.app .options-app {
    display: flex;
}

.download-app {
    text-align: center;
    color: white;
    position: relative;
    top: -3rem;
}

.download-app .text-app h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.download-app .options-app {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.download-app .options-app a {
    display: inline-block;
}

.download-app .options-app a img {
    width: 12rem;
    height: 4rem;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.download-app .options-app a img:hover {
    transform: scale(1.1);
}

section.app .img-app {
    position: relative;
    top: -6rem;
    right: 6rem;
    z-index: 10;
}

section.app .img-app img {
    width: 40rem;
    height: auto;
    object-fit: contain;
    overflow: visible;
}


/* Section Plans */

.plans {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #F84D24;
    background-image: url(../img/bg-branco.png);
    background-size: cover;
    background-position: bottom;
}

.plans span {
    background-color: #123762;
    color: white;
    padding: 0.5rem;
    border-radius: 1.5rem;
    font-size: 1.2rem;
    margin-right: 2rem;
}

.plans h1 {
    color: white;
    margin-top: 3rem;
    font-size: 4rem;
    display: flex;
    align-items: center;
}

.plans-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    position: relative;
    z-index: 9998;
}

.plans-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 600px;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    padding: 1rem 0;
}

.plan-card {
    flex: 0 0 32%;
    transform: scale(0.98);
    transition: opacity 0.4s;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-card.animating {
  opacity: 0;
}

.plan-card h2 {
    color: #123762;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bolder;
}

.plan-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 2rem 0rem;
    border-radius: 1.5rem;
}

.plan-info ul {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0;
    max-width: 100%;
    width: 80%;
}

.plan-info li img {
    object-fit: contain;
    height: auto;
    width: 1rem;
}

.plan-info p {
    color: #123762;
    text-align: justify;
    max-width: 100%;
    width: 80%;
}

.plan-card p:nth-last-child(3) {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.plan-card a {
    border: 1px solid #123762;
    background-color: #123762;
    color: white;
    max-width: 100%;
    width: 60%;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    margin: 0.5rem 0;
    padding: 0.5rem;
    border-radius: 1rem;
}

.plan-card a:nth-of-type(2) {
    background-color: white;
    color: #123762;
}

.carousel-btn {
    background: #123762;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #236693;
}

/* Modal utilizado para os PDF's */

#pdfModal button.close-btn {
    background: #F84D24;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

#pdfModal button.close-btn:hover {
    background: #d13c1c;
}

/* Section Life */

.life {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/bg-life.png);
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
}

.life-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.life-left {
    max-width: 100%;
    width: 50%;
}

.life-left p {
    color: white;
    text-align: justify;
    max-width: 100%;
    width: 80%;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    font-weight: bold;
}

.life-left a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    background-color: #FF7900;
    border: 1px solid #FF7900;
    padding: 0.8rem;
    font-size: 1.3rem;
    border-radius: 1.5rem;
}

.life-right {
    max-width: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.life-right iframe {
    border-radius: 1rem;
    width: 35rem;
    height: 20rem;
}

/* Section B2B */

.b2b {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.b2b span {
    background-color: #F84D24;
    color: white;
    padding: 0.5rem;
    border-radius: 1.5rem;
    font-size: 1.2rem;
    margin-right: 2rem;
}

.b2b h1 {
    color: #123762;
    margin-top: 3rem;
    font-size: 4rem;
    display: flex;
    align-items: center;
}

.b2b-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1200px;
    min-height: 600px;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    padding: 1rem 0;
}

.b2b-card {
    flex: 0 0 32%;
    transform: scale(0.98);
    transition: opacity 0.4s;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.b2b-card span {
    background-color: white;
    color: #FF7900;
    font-size: 2rem;
    padding: 0;
    margin-right: 0;
    border-radius: 0;
}

.b2b-card h2 {
    color: #123762;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bolder;
}

.b2b-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    box-shadow: 0 2px 8px rgba(18, 55, 98, 0.4);
    padding: 2rem 0rem;
    border-radius: 1.5rem;
    margin-bottom: 1rem;
}

.b2b-info ul {
    list-style-type: none;
    padding: 0;
    margin: 1rem 0;
    max-width: 100%;
    width: 80%;
}

.b2b-info li img {
    object-fit: contain;
    height: auto;
    width: 1rem;
}

.b2b-info p {
    color: #123762;
    text-align: justify;
    max-width: 100%;
    width: 80%;
}

.b2b-card a {
    border: 1px solid #F84D24;
    background-color: #F84D24;
    color: white;
    max-width: 100%;
    width: 60%;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    margin: 0.5rem 0;
    padding: 0.5rem;
    border-radius: 1rem;
}

.b2b-card a:nth-of-type(2) {
    background-color: white;
    color: #123762;
    border: 1px solid #123762;
}

/* Section NR1 */

.nr1 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #123762;
    padding: 3rem 0;
}

.nr1-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1280px;
    width: 100%;
}

.nr1-container h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 2rem;
}

.nr1-container p {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.2px) saturate(100%);
    -webkit-backdrop-filter: blur(0.2px) saturate(100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    color: white;
    font-weight: bold;
    padding: 1rem;
}

/* Section Partners */

.partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding-top: 3rem;
}

.partners-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1280px;
    width: 100%;
}

.benefits-list-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 100%;
    width: 100%;
}

.list-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 100%;
    width: 70%;
}

.list-item p {
    font-weight: bold;
    color: white;
    background-color: #F84D24;
    padding: 0.8rem;
    border-radius: 1rem;
    max-width: 100%;
    width: 100%;
}

.partners-container h1 {
    color: #123762;
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.partners-container h2 {
    color: #123762;
    font-size: 2.5rem;
    margin: 2rem 0;
}

.partners-carrousel {
    overflow: hidden;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    box-sizing: border-box;
    position: relative;
}

.partners-carrousel-track {
    display: flex;
    width: calc(220px * 22);
    animation: scroll-logos 30s linear infinite;
}

.partners-carrousel img {
    width: 180px;
    height: auto;
    margin: 0 20px;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Section Disclaimer */

.disclaimer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #123762;
}

.disclaimer-container {
    max-width: 100%;
    width: 90%;
    color: white;
    padding-top: 1rem;
    padding-bottom: 3rem;
    text-align: justify;
}

/* Section Benefits-list */

section.benefits-list {
    background-image: url('../img/bg-benefits-list.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    z-index: 20;
    position: relative;
}

.benefits-list-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    width: 100%;
}

.benefits-list-container h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefits-list-container p {
    color: white;
    margin-bottom: 2rem;
}

.list-items {
    display: flex;
    max-width: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
}

.list-items a {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.5px) saturate(180%);
    -webkit-backdrop-filter: blur(0.2px) saturate(180%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    text-decoration: none;
    color: white;
    font-weight: bolder;
    font-size: 1.5rem;
    max-width: 100%;
    width: 40%;
    text-align: center;
}

.list-items a:nth-child(2) {
    background: rgba(0, 80, 180, 0.4);
}

/* Section Segments */

.segments {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #123762;
    padding: 3rem 0;
}

.segments-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    width: 100%;
}

.segments-container h1 {
    color: white;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.segments-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 100%;
    width: 100%;
}

.segments-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 100%;
    width: 100%;
}

.segments-items p {
    color: white;
    background-color: #F84D24;
    padding: 1rem;
    border-radius: 1rem;
    font-weight: bold;
    font-size: 1.5rem;
    max-width: 100%;
    width: 100%;
}

/* Section Form */

.form {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 3rem 0;
}

.form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    width: 100%;
}

.form-left {
    max-width: 100%;
    width: 50%;
}

.form-left p {
    font-size: 3rem;
    color: #123762;
}

.form-right {
    max-width: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-right form {
    background-color: #123762;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 1.5rem;
    gap: 0.5rem;
    max-width: 100%;
    width: 100%;
}

.form-right form p {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.form-right form input {
    padding: 0.5rem;
    border-radius: 1.5rem;
    border: 1px solid white;
    background-color: #607494;
    color: white;
    max-width: 100%;
    width: 97.5%;
}

.form-right form input::placeholder {
    color: white;
    opacity: 1;
}

.double-input {
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-right button {
    margin-top: 2rem;
    background-color: #F84D24;
    border: 1px solid white;
    color: white;
    padding: 1rem;
    border-radius: 1.5rem;
    font-size: 1.5rem;
    max-width: 100%;
    width: 30%;
}

/* Section Franchise */

.franchise {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #53C5F2 -90%, #023859 100%);
    padding-top: 3rem;
}

.franchise-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    width: 100%;
}

.franchise-left {
    max-width: 100%;
    width: 50%;
}

.franchise-left span:nth-child(1) {
    background-color: #F84D24;
    padding: 0.5rem;
    color: white;font-weight: bold;
    border-radius: 1.5rem;
}

.franchise-left h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.franchise-left p {
    color: white;
    margin-bottom: 1rem;
}

.franchise-left ul {
    list-style-type: none;
    padding-left: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.franchise-left li {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0.2px) saturate(180%);
    -webkit-backdrop-filter: blur(0.2px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 1rem;
}

.franchise-right {
    max-width: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.franchise-right img {
    object-fit: contain;
    height: auto;
    width: 30rem;
    margin-bottom: 2rem;
}

.franchise-right p {
    color: white;
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.franchise-right a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    background-color: #F84D24;
    padding: 1rem;
    border-radius: 1.5rem;
}

/* Section Feedback */

.feedback {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F84D24;
    padding-bottom: 3rem;
}

.feedback-carrousel {
    overflow: hidden;
    width: 100%;
    position: relative;
    height: auto;
}

.feedback-carousel-track {
    display: flex;
    width: max-content;
    animation: scroll-feedbacks 18s linear infinite;
    gap: 32px;
}

.feedback-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    width: 100%;
}

.feedback-container h1 {
    color: white;
    font-size: 4rem;
    text-align: center;
}

.feedback-carrousel {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.feedback-card {
    min-width: 350px;
    max-width: 350px;
    width: 30%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0.2px) saturate(180%);
    -webkit-backdrop-filter: blur(0.2px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@keyframes scroll-feedbacks {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.feedback-card span:nth-child(1) {
    color: white;
    font-size: 5rem;
}

.feedback-card p {
    color: #023859;
    margin-bottom: 2rem;
    text-align: justify;
}

.feedback-person {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feedback-person p {
    color: white;
}

/* Section Legal-Advert */

.legal-advert {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding: 3rem 0;
}

.legal-advert-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    width: 100%;
}

.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.partners-logos img {
    width: 10rem;
    height: 4rem;
    object-fit: contain;
    display: block;
}

.legal-advert-container p {
    max-width: 100%;
    width: 90%;
    text-align: justify;
    color: #023859;
    margin: 2rem 0;
}

#logoIxer {
    object-fit: contain;
    height: auto;
    width: 16rem;
}

/* Footer */

footer {
    background-color: #123762;
    color: white;
    padding-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

footer .container-footer {
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5rem;
    font-size: 1.3rem;
    font-weight: bold;
    padding-bottom: 2rem;
}

footer .footer-info {
    flex: 1;
    text-align: left;
    line-height: 1.5;
}

footer .footer-info p {
    margin: 0.5rem 0;
}

footer .apps-img {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

footer .apps-img img {
    width: 10rem;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

footer .apps-img img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #f5f5f5;
    text-align: center;
    border-top: 1px solid #FF4A22;
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer-bottom a {
    text-decoration: none;
    color: #FF4A22;
}

.contacts a {
    color: #FF4A22;
}

.contacts .whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts .whatsapp img {
    object-fit: contain;
    height: 30px;
    width: 30px;
    margin-right: 0.5rem;
}

/* Responsividade para tablets */

@media (max-width: 1100px) {
    /* Geral */

    * {
        overflow-x: hidden;
    }

    /* Header */

    header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .logo-header img {
        width: 6rem;
    }

    .buttons-header a {
        font-size: 0.7rem;
    }

    .buttons-right {
        height: 2rem;
        padding-top: 0.4rem;
    }

    .buttons-header {
        position: relative;
        left: -3.9rem;
    }

    .buttons-header a {
        font-size: 0.8rem;
    }

    /* Section Hero */

    .hero-container {
        flex-direction: column;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 90%;
        padding-bottom: 2rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .partners-icons img {
        width: 4rem;
    }

    .hero-right {
        width: 90%;
    }

    .hero-right video {
        right: 0;
        width: 30rem;
    }

    /* Menu lateral flutuante */

    .floating-menu {
        transition: right 0.4s cubic-bezier(.68,-0.55,.27,1.55);
    }

    .floating-menu-wrapper:hover .floating-menu,
    .floating-menu-wrapper:focus-within .floating-menu {
        right: -80px !important;
    }

    .floating-menu-wrapper .floating-menu.open {
        right: 0 !important;
    }

    .floating-menu,
    .floating-menu-wrapper {
        overflow-x: visible !important;
    }

    .floating-items a img {
        object-fit: contain;
        height: auto;
        width: 1.9rem;
    }

    .floating-items span {
        font-size: 0.6rem;
    }

    /* Section App */

    section.app {
        padding-top: 0;
        height: 10rem;
    }

    .container-app {
        width: 90%;
    }

    .img-app {
        display: none;
    }

    .download-app {
        top: -1rem;
    }

    .download-app .text-app h1 {
        font-size: 2rem;
        padding-top: 2rem;
    }

    .download-app .options-app a img {
        height: auto;
        width: 10rem;
    }

    /* Section Plans */

    .plans h1 {
        font-size: 3rem;
    }
    
    .plans-carousel {
        width: 90%;
    }

    .plan-card {
        flex: 0 0 50%;
    }

    /* Section Life */

    .life-container {
        flex-direction: column;
    }

    .life-left {
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .life-right {
        width: 90%;
    }

    /* Section B2B */

    .b2b h1 {
        font-size: 3rem;
    }

    .b2b-card {
        flex: 0 0 50%;
    }

    /* Section NR1 */

    .nr1-container {
        width: 90%;
    }

    /* Section Segments */

    .segments-container {
        width: 90%;
    }

    .segments-items p {
        font-size: 1rem;
    }

    /* Section Form */

    .form-container {
        flex-direction: column;
    }

    .form-left {
        width: 90%;
    }

    .form-left p {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2rem;
        max-width: 100%;
        width: 100%;
    }

    .form-right {
        width: 90%;
    }

    .form-right form {
        width: 89%;
    }

    /* Section Franchise */

    .franchise-container {
        flex-direction: column;
    }

    .franchise-left {
        width: 90%;
        padding-top: 1rem;
        margin-bottom: 1rem;
    }

    .franchise-right {
        width: 90%;
    }

    /* Footer */

    .container-footer {
        flex-direction: column;
    }
}

/* Responsividade para smartphones */

@media (max-width: 480px) {
    /* Header */

    .buttons-header {
        display: none;
        position: absolute;
        top: 60px;
        right: 10px;
        background: #123762;
        flex-direction: column;
        gap: 2rem;
        padding: 1rem 2rem;
        border-radius: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        z-index: 10000;
        left: 0;
    }

    .buttons-header.active {
        display: flex;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 20px;
        right: 30px;
    }

    .left-header {
        width: 90%;
        border: none;
        padding-right: 0;
        justify-content: flex-start;
    }

    .buttons-right {
        height: auto;
        display: flex;
        gap: 1rem;;
    }

    .buttons-right a {
        font-size: 0.6rem;
    }

    .right-header {
        margin-left: 0;
        width: 90%;
    }

    /* Menu lateral flutuante */

    .floating-menu {
        right: -100px;
    }

    .floating-menu.open {
        background: rgba(34, 34, 34, 0.7);
    }

    /* Section Hero */

    .hero-left h1 {
        font-size: 1.5rem;
    }

    .hero-right video {
        right: 2rem;
    }

    /* Section App */

    .download-app .text-app h1 {
        font-size: 1.5rem;
    }

    .download-app .options-app a img {
        height: auto;
        width: 8rem;
    }

    /* Section Plans */

    .plans h1 {
        font-size: 1.4rem;
        display: flex;
        flex-direction: column;
    }

    .plan-card {
        flex: 0 0 100%;
    }

    .plan-info {
        max-width: 100%;
        width: 100%;
    }

    .plan-card p:nth-last-child(3) {
        font-size: 1.5rem;
    }

    .plan-card h2 {
        font-size: 1.5rem;
    }

    .plans span {
        margin-right: 0;
    }

    .plan-info img {
        object-fit: contain;
        height: auto;
        width: 11rem;
    }

    .plan-card a {
        width: 90%;
        font-size: 0.8rem;
    }

    .carousel-btn {
        border-radius: 60%;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }

    /* Section Life */

    .life-right iframe {
        width: 18rem;
        height: auto;
    }
    
    /* Section B2B */
    
    .b2b h1 {
        font-size: 1.4rem;
        display: flex;
        flex-direction: column;
    }

    .b2b-card {
        flex: 0 0 100%;
    }

    .b2b-info {
        max-width: 100%;
        width: 100%;
    }

    .b2b-card h2 {
        font-size: 1.5rem;
    }

    .b2b-card img {
        object-fit: contain;
        height: auto;
        width: 11rem;
    }

    .b2b-card a {
        width: 90%;
        font-size: 0.8rem;
    }

    .b2b span {
        margin-right: 0;
    }

    /* Section NR1 */

    .nr1-container h1 {
        font-size: 2rem;
    }

    /* Section Partners */

    .partners-container {
        width: 90%;
    }

    .partners-container h1 {
        font-size: 2rem;
    }

    .partners-container h2 {
        font-size: 2rem;
    }

    .list-item {
        flex-direction: column;
        width: 90%;
    }

    .list-item p {
        width: 89%;
    }

    /* Section Benefits */

    .benefits-list-container h1 {
        font-size: 2rem;
    }

    .list-items {
        flex-direction: column;
    }

    .list-items a {
        width: 80%;
        font-size: 1rem;
    }

    /* Section Segments */

    .segments-container h1 {
        text-align: center;
    }

    .segments-items {
        flex-direction: column;
    }

    .segments-items p {
        width: 80%;
    }

    /* Section Form */

    .form-right button {
        font-size: 1rem;
    }

    .double-input {
        flex-direction: column;
    }

    .form-right form input {
        width: 93%;
    }

    .double-input input {
        width: 93% !important;
    }

    /* Section Franchise */

    .franchise-left {
        text-align: center;
    }

    .franchise-left h1 {
        font-size: 2rem;
    }

    .franchise-left p {
        text-align: justify;
    }

    .franchise-right {
        margin-bottom: 2rem;
    }

    .franchise-right img {
        width: 15rem;
    }

    .franchise-right p {
        font-size: 2.5rem;
    }

    /* Section Feedbacks */

    .feedback {
        display: none;
    }

    .franchise svg {
        display: none;
    }

    /* Footer */

    .container-footer {
        font-size: 1rem !important;
    }

    .apps-img img {
        width: 8rem !important;
    }
}