/* Geral */

* {
    padding: 0;
    margin: 0;
    font-family: Inter;
}

body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Whatsapp Button */

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    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;
}

.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 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    width: 100%;
    margin-bottom: 3rem;
    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(180%);
    -webkit-backdrop-filter: blur(0.2px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 0rem 1rem;
}

header h1 {
    color: white;
    font-size: 1.8rem;
}

.logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.3rem;
}

.logo-header img {
    object-fit: contain;
    height: auto;
    width: 12rem;
    background: rgba(255, 255, 255, 0.5); 
    border-radius: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.5); 
    border-radius: 1rem;
    margin-top: 0.3rem;
}

.logo-header img:nth-last-child(1) {
    width: 8rem;
    padding: 1rem;
}

/* Section Hero */

section.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    background-image: url(../../assets/img/bg-hero-form.png);
    background-position: center;
    background-size: cover;
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 4rem;
}

.hero-text {
    max-width: 100%;
    width: 50%;
    color: white;
}

.hero-text h1 {
    font-size: 2.5rem;
}

/* Section Franchise */

.franchise {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FF4A22;
    padding-top: 2rem;
}

.franchise-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    width: 100%;
    color: white;
}

.franchise-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.franchise-container ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.franchise-container li {
    background: rgba(255, 255, 255, 0.3); 
    border-radius: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.5); 
    border-radius: 1rem;
    padding: 1rem;
}

/* Section Segments */

.segments {
    display: flex;
    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 IXER */

.ixer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    background-image: url(../img/bg-section-ixer.png);
    background-position: center;
    background-size: cover;
}

.ixer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    width: 100%;
}

.ixer-container h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #023859;
}

.ixer-container ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ixer-container li {
    background-color: #F84D24; 
    border-radius: 1.5rem;
    border: 1px solid #F84D24; 
    border-radius: 1rem;
    padding: 1rem;
    color: white;
    font-weight: bold;
}

/* Section Benefits-list */

section.benefits-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
    background-color: #023859;
}

.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;
    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: #F84D24;
}

/* Section Partners */

.partners {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.partners-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    width: 100%;
}

.partners-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.partners-icons img {
    object-fit: contain;
    height: auto;
    width: 10rem;
}

.partners-container h1 {
    font-size: 2.5rem;
    color: #F84D24;
    text-align: center;
    margin-bottom: 2rem;
}

.partners-container p {
    color: #023859;
    font-weight: bold;
    text-align: center;
}

/* Section Form */

.form {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF4A22;
    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%;
    color: white;
}

.form-left h1 {
    font-size: 2rem;
}

.form-left p {
    max-width: 100%;
    width: 85%;
}

.form-right {
    max-width: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-right form {
    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%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.2px) saturate(180%);
    -webkit-backdrop-filter: blur(0.2px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-right form input {
    padding: 0.5rem;
    border-radius: 1.5rem;
    border: 1px solid white;
    background-color: #bfc5cc;
    color: white;
    max-width: 100%;
    width: 97%;
}

.form-right form select {
    padding: 0.5rem;
    border-radius: 1.5rem;
    border: 1px solid white;
    background-color: #bfc5cc;
    color: white;
    max-width: 100%;
    width: 100%;
}

.form-right form input::placeholder {
    color: white;
    opacity: 1;
}

.form-right button {
    margin-top: 2rem;
    background-color: #023859;
    border: 1px solid white;
    color: white;
    padding: 1rem;
    border-radius: 1.5rem;
    font-size: 1rem;
    max-width: 100%;
    width: 30%;
    cursor: pointer;
    pointer-events: auto;
}

/* 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 {
        width: 90%;
    }

    /* Section Hero */

    .hero-container {
        width: 90%;
        padding-top: 2rem;
    }

    /* Section Segments */

    .segments-container {
        width: 90%;
    }

    .segments-items p {
        font-size: 1rem;
    }

    /* Section Form */

    .form-container {
        flex-direction: column;
    }

    .form-left {
        text-align: center;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .form-right {
        width: 70%;
    }

    .form-right form {
        width: 90%;
    }

    /* Section Partners */

    .partners-container {
        width: 90%;
    }

    .partners-icons {
        flex-wrap: wrap;
        flex-direction: row;
    }

    /* Footer */

    .container-footer {
        flex-direction: column;
    }
}

/* Responsividade para smartphones */

@media (max-width: 480px) {
    /* Header */

    header {
        width: 85%;
        margin-bottom: 1rem;
    }

    header h1 {
        font-size: 1.2rem;
    }

    .logo-header img:nth-last-child(2) {
        display: none;
    }

    .logo-header img:nth-last-child(1) {
        width: 4rem;
    }

    /* Section Hero */

    .hero-container {
        padding-top: 0;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 1.4rem;
    } 
    
    .hero-text p {
        text-align: justify;
    }

    /* Section Franchise */

    .franchise {
        padding-top: 0;
    }

    .franchise-container {
        width: 90%;
    }

    .franchise-container h1 {
        margin-bottom: 1rem;
        font-size: 2rem;
        margin-top: 1rem;
        text-align: center;
    }

    /* Section Segments */

    .segments-container h1 {
        text-align: center;
    }

    .segments-items {
        flex-direction: column;
    }

    .segments-items p {
        width: 80%;
    }

    /* Section IXER */

    .ixer-container {
        width: 90%;
    }

    .ixer-container h1 {
        font-size: 2rem;
        text-align: center;
    }

    /* Section Benefits */

    .benefits-list-container h1 {
        font-size: 1.5rem;
    }

    .list-items {
        flex-direction: column;
    }

    .list-items a {
        width: 80%;
        font-size: 1rem;
    }

    /* Section Partners */

    .partners-container p {
        text-align: justify;
    }

    /* Section Form */

    .form-left {
        width: 90%;
    }

    .form-left h1 {
        font-size: 1.5rem;
    }

    .form-left p {
        text-align: justify;
    }

    .form-right {
        width: 95%;
    }

    .form-right form {
        width: 85%;
    }

    .form-right button {
        width: 80%;
    }

    .form-right form input {
        width: 93%;
    }

    /* Footer */

    .container-footer {
        font-size: 1rem !important;
    }

    .apps-img img {
        width: 8rem !important;
    }
}