*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    background: #130526;
    color: #fff;
    margin: 0;
    overflow-x: hidden;
    max-width: 100%;
}

.container01 {
    max-width: 1600px;
    margin: 0 auto;
    padding: 140px 24px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 100vh;
    position: relative;
}

.header {
    position: fixed;
    top: 24px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 999;
    pointer-events: none;
}

.header-pill {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 285px;
    padding: 10px 100px;
    border-radius: 999px;
    background: #2C1D3C4A;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav {
    display: flex;
    gap: 75px;
}


.header-actions {
    display: flex;
}

.nav a {
    color: #bfb8d9;
    text-decoration: none;
    font-size: 25px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 37px;
    width: auto;
    display: block;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 10px;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.lang-btn img {
    height: 28px;
    width: auto;
    display: block;
    color: #A89FB9;
}

.lang-btn:hover {
    background-color: #4E3A63;
}

.lang-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-dropdown {
    position: absolute;
    top: 55px;
    right: 0;
    background: #A89FB9;
    border: 1px solid rgba(168, 159, 185, 0.2);
    border-radius: 12px;
    padding: 13px 25px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 60px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.lang-dropdown.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.lang-dropdown .lang-btn {
    padding: 8px 77px 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    color: #2D2D2D;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
}

.lang-dropdown .lang-btn:hover {
    background: rgba(107, 90, 130, 0.3);
    color: #fff;
}

.lang-dropdown .lang-btn.active {
    background: #6B5A82;
    color: #fff;
}

.btn-outline {
    color: #fff;
    padding: 11px 67px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 22px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    background-color: #6B5A82;
}

.btn-outline:hover {
    background-color: #4E3A63;
    border-color: transparent;
}

.hero {
    min-height: 100vh;
    background-image: url("../imagens/bckhero.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin-left: 769px;
}

.hero-text h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero p {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 400;
}

.hero-text p {
    font-size: 21px;
    margin-bottom: 32px;
}

.hero strong {
    font-weight: 600;
}

.hero-buttons {
    position: relative;
    z-index: 10;
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.hero-notebook {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-notebook img {
    max-width: 840px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.header-pill {
    width: 90%;
    max-width: 1500px;
    gap: 20px;
    justify-content: space-between;
    padding: 10px 73px;
}

.btn-primary {
    color: #fff;
    padding: 21px 61px;
    border-radius: 999px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 500;
    background-color: #6B5A82;
}

.btn-primary:hover {
    background-color: #4E3A63;
    border-color: transparent;
}

.btn-secondary {
    border: 1px solid #E5E1EB;
    color: #fff;
    padding: 21px 61px;
    border-radius: 999px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-left: 20px;
}

.btn-secondary:hover {
    background-color: #A89FB9;
    color: #4E3A63;
    border-color: transparent;
}

.btn-primary,
.btn-secondary {
    width: 385px;
    height: 74px;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 7, 20, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: #ffffff;
    border-radius: 18px;
    width: 709px;
    padding: 40px 0;
    height: auto;
    min-height: 718px;
    color: #2c1d3c;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal h2 {
    font-size: 30px;
    margin-bottom: 0px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    color: #4E3A63;
    text-align: center;
}

.modal p {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    padding: 0 55px;
}

.modal input,
.modal textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 16px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.modal input {
    height: 57px;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
    width: 616px;
}

.input-group label {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #323232;
    margin-bottom: 8px;
}

.modal textarea {
    height: 120px;
    padding-top: 14px;
    resize: none;
}

.modal button {
    align-self: flex-end;
    margin-right: 46px;
    width: 180px;
    height: 55px;
    background: #6B5A82;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.modal button:hover {
    background: #4E3A63;
}

.modal form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-modal {
    text-align: center;
    width: 709px;
    min-height: 247px;
}

.success-modal p {
    font-size: 18px;
    color: #323232;
    margin-bottom: 20px;
    font-weight: 300;
}

.modal .btn-success {
    background: #6B5A82;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 15px 104px;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    align-self: center;
    width: 420px;
    margin-right: 0;
}

.modal .success-modal h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: #4E3A63;
}

.btn-success:hover {
    opacity: 0.9;
}

.segments {
    padding: 55px 0;
    background-color: #130526;
    text-align: center;
}

.segments-header h2 {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #E5E1EB;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.segments-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
}

.segment-item {
    flex: 1;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.segment-item img {
    height: 70px;
    width: auto;
    opacity: 0.9;
}

.segment-item p {
    font-size: 18px;
    color: #E5E1EB;
    line-height: 1.4;
    font-weight: 400;
}

.segments-description p {
    font-size: 30px;
    color: #E5E1EB;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
    font-family: "Poppins", sans-serif;
}

.features-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-top: 100px;
    padding-bottom: 100px;
    background-color: #130526;
}

.features-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 120px;
    max-width: 450px;
}

.features-column.left {
    text-align: left
}

.feature-text-item p {
    font-size: 30px;
    line-height: 1.4;
    color: #E5E1EB;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.logos-brand {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 10px;
}

.logos-brand img {
    height: 55px;
    width: 63px;
}

.features-center {
    flex: 0 0 auto;
    position: relative;
    overflow: visible;
}

.phone-wrapper {
    position: relative;
    z-index: 2;
}

.phone-img {
    width: 471px;
    height: auto;
    display: block;
}

.phone-wrapper::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(ellipse at center,
            rgba(138, 107, 185, 0.55) 0%,
            rgba(107, 90, 130, 0.35) 25%,
            rgba(44, 29, 60, 0.25) 45%,
            rgba(11, 7, 20, 0) 70%);
    z-index: -1;
    filter: blur(80px);
    pointer-events: none;
}

.phone-wrapper::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle,
            rgba(168, 159, 185, 0.35) 0%,
            rgba(168, 159, 185, 0.15) 30%,
            transparent 65%);
    z-index: -2;
    filter: blur(120px);
    pointer-events: none;
}

.conquests {
    padding: 100px 0;
    text-align: center;
}

.conquests-title {
    font-size: 30px;
    font-weight: 500;
    color: #E5E1EB;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.conquests-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.conquest-card {
    flex: 1;
    min-width: 450px;
    background-image: linear-gradient(rgba(44, 29, 60, 0.4), rgba(19, 5, 38, 0.7)),
        url('../imagens/segments/card 01.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    border: 1px solid rgba(229, 225, 235, 0.2);
    overflow: hidden;
    padding: 50px 40px;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.conquest-card:hover {
    transform: translateY(-12px);
    border-color: #6B5A82;
    box-shadow: 0px 15px 45px rgba(0, 0, 0, 0.6),
        0px 0px 35px rgba(138, 107, 185, 0.3);
    filter: brightness(1.1);
}

.conquest-card h3 {
    font-size: 30px;
    color: #E5E1EB;
    margin-bottom: 15px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.5px;
}

.conquest-card p {
    font-size: 25px;
    color: #E5E1EB;
    margin-bottom: 30px;
    font-weight: 400;
}

.conquest-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.conquest-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    color: #E5E1EB;
    line-height: 1.4;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.conquest-list li img {
    width: 37px;
    height: 37px;
    margin-top: 6px;
}

.tera-hub {
    padding: 126px 0;
    background: #0b0714;
    display: flex;
    justify-content: center;
    background-color: #1F1C3E;
}

.container-hub {
    max-width: 1600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 0 24px;
    margin: 0 auto;
}

.hub-content {
    flex: 1;
    max-width: 1000px;
}

.hub-title {
    font-size: 50px;
    font-weight: 500;
    color: #F0E8FF;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
}

.hub-description {
    font-size: 30px;
    line-height: 1.6;
    color: #F0E8FF;
    margin-bottom: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.hub-note {
    font-size: 30px;
    color: #F0E8FF;
    margin-bottom: 70px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.hub-actions {
    display: flex;
    gap: 20px;
}

.hub-cards {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hub-card-item {
    width: 844px;
    height: 225px;
    max-width: 100%;
    background-image: url(../imagens/segments/card\ 2.png);
    padding: 30px;
    border-radius: 15px;
    transition: 0.4s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hub-card-item:hover {
    border-color: #6B5A82;
    transform: scale(1.02);
    box-shadow: 0px 10px 30px rgba(107, 90, 130, 0.2);
}

.hub-card-item h4 {
    color: #E5E1EB;
    font-size: 30px;
    margin: 0px 0 20px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.hub-card-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hub-card-item li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-left: 0;
    font-size: 25px;
    color: #E5E1EB;
    line-height: 1.4;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.hub-card-item li img {
    width: 28px;
    height: auto;
    flex-shrink: 0;
    margin-top: 4px;
}

.tera-hub .btn-documentos,
.btn-fale {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 323px;
    height: 72px;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-fale {
    border: 1px solid #E5E1EB;
}

.btn-documentos {
    background-color: #4E3A63;
}

.btn-fale:hover {
    background-color: #A89FB9;
    color: #4E3A63;
    border: none;
}

.btn-documentos:hover {
    background-color: #6B5A82;
}

.tera-media {
    padding: 120px 0;
    background-color: #0b0714;
}

.container-media {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.media-header {
    margin-bottom: 80px;
}

.media-title {
    font-size: 50px;
    font-weight: 500;
    color: #F0E8FF;
    margin-bottom: 25px;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.media-description {
    font-size: 25px;
    line-height: 1.6;
    color: #F0E8FF;
    max-width: 1300px;
    margin: 0 auto;
    font-weight: 500;
    text-align: center;
}

.media-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.media-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 650px;
    border-radius: 20px;
    overflow: visible;
    background-color: #1a1625;
    transition: transform 0.4s ease;
    border: 1px solid rgba(229, 225, 235, 0.1);
    position: relative;
}

.media-card::before {
    content: "";
    height: 300px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    flex-shrink: 0;
    border-radius: 20px 20px 0 0;
}

.media-card:hover {
    transform: translateY(-10px);
}

.media-img-01::before {
    background-image: url('../imagens/segments/card01media.png');
}

.media-img-02::before {
    background-image: url('../imagens/segments/card02media.png');
}

.media-img-03::before {
    background-image: url('../imagens/segments/card03media.png');
}

.media-mini-tag {
    position: absolute;
    top: 300px;
    left: 30px;
    transform: translateY(-50%);
    display: inline-block;
    background: #A89FB9;
    color: #4E3A63;
    font-size: 20px;
    padding: 8px 18px;
    border-radius: 999px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid rgba(229, 225, 235, 0.2);
    z-index: 10;
}

.media-card-content {
    flex: 1;
    padding: 45px 30px 30px 30px;
    background: linear-gradient(180deg, rgba(44, 29, 60, 0.3) 0%, rgba(11, 7, 20, 1) 100%);
    display: flex;
    flex-direction: column;
    border-radius: 0 0 20px 20px;
}

.media-card h4 {
    font-size: 28px;
    color: #E5E1EB;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.media-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: "Poppins", sans-serif;
}

.media-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 21px;
    color: #E5E1EB;
    line-height: 1.4;
    font-family: "Poppins", sans-serif;
}

.media-list li img {
    width: 30px;
    height: auto;
    margin-top: 3px;
}

.media-footer-note {
    font-size: 25px;
    color: #F0E8FF;
    line-height: 1.5;
    opacity: 0.9;
    text-align: center;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.media-footer-note strong {
    font-weight: 600;
}

.footer {
    background-color: #2C1D3C;
    padding: 25px 0 25px;
    border-top: 1px solid rgba(225, 225, 225, 0.1);
    font-family: "Poppins", sans-serif;
    color: #ffffff;
}

.container-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-hero-section {
    text-align: center;
    margin-bottom: 35px;
}

.footer-main-title {
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #A89FB9;
}

.footer-subtitle {
    font-size: 25px;
    color: #F0E8FF;
    font-weight: 400;
    margin-top: 8px;
}

.footer-brand-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
}

.footer-logo-tr {
    height: 210px;
    width: auto;
}

.footer-vertical-line {
    width: 2px;
    height: 270px;
    background-color: rgba(255, 255, 255, 0.4);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    height: 35px;
    filter: brightness(0) invert(1);
}

.contact-details p {
    font-size: 20px;
    margin: 2px 0;
    color: #ffffff;
    font-weight: 400;
}

.copyright-text {
    font-size: 15px !important;
    color: #F0E8FF !important;
    margin-top: 10px !important;
    line-height: 1.5;
    text-transform: lowercase;
    font-weight: 400;
}

.menu-toggle {
    display: none;
}

.nav.active,
.header-actions.active {
    display: flex;
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: #1a1326;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    border-radius: 20px;
}

.mobile-menu {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 75px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: calc(100% - 40px);
    max-width: 360px;
    background: #2C1D3C;
    border-radius: 24px;
    padding: 25px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mobile-menu .nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-menu .nav a {
    font-size: 18px;
    color: #E5E1EB;
}

.mobile-menu .btn-outline {
    width: 100%;
    text-align: center;
}

.mobile-menu .lang-wrapper {
    width: 100%;
}

.mobile-menu .lang-btn {
    width: 100%;
    border: 1px solid #E5E1EB;
    border-radius: 999px;
    padding: 12px;
    color: #fff;
}

.mobile-trigger {
    display: none;
}

br.mobile {
    display: none;
}

br.desk {
    display: inline;
}

.mobile-lang {
    width: 100%;
    height: 39px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid #E5E1EB;
    color: #FBF5D5;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all .25s ease;
}

.mobile-lang:hover {
    background: #A89FB9;
    color: #4E3A63;
    border-color: transparent;
}

.contact-link {
    color: inherit;         
    text-decoration: none;   
    display: block;          
    margin-bottom: 8px;      
}

.contact-link:hover {
    opacity: 0.8;            
}

@media (max-width: 1599px) {
    .container01 {
        max-width: 1400px;
    }

    .hero-text {
        max-width: 680px;
    }

    .hero-notebook img {
        max-width: 720px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text p {
        font-size: 20px;
    }

    .header-pill {
        gap: 40px;
        padding: 10px 30px;
    }
}

@media (max-width: 1400px) {
    .container-hub {
        flex-direction: column;
        text-align: center;
    }

    .hub-cards {
        width: 100%;
        align-items: center;
    }

    .hub-card-item {
        width: 100%;
        height: auto;
        min-height: 171px;
    }

    .footer-brand-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact-info {
        align-items: flex-start;
    }

    .footer-main-title {
        font-size: 20px;
    }

    .footer-vertical-line {
        width: 100px;
        height: 1px;
    }

    .contact-details p {
        font-size: 14px;
        color: #F0E8FF;
    }

    .social-icons img {
        height: 25px;
    }

    .header {
        padding: 0 16px;
    }

    .header-pill {
        width: 100%;
        max-width: 100%;
        padding: 14px 18px;
        gap: 0;
        justify-content: center;
        position: relative;
    }

    .nav {
        gap: 24px;
    }

    .nav a {
        font-size: 18px;
    }

    .container-hub {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
        text-align: center;
    }

    .hub-title {
        font-size: 16px;
        font-weight: 400;
    }

    .hub-description,
    .hub-note {
        font-size: 20px;
    }

    .hub-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hub-cards {
        width: 100%;
        gap: 25px;
    }

    .hub-card-item {
        width: 100%;
        height: 171px;
    }

    .hub-card-item h4 {
        font-size: 18px;
    }

    .hub-card-item li {
        font-size: 14px;
    }

    .hub-card-item li img {
        width: 25px;
    }

    .header-pill {
        position: relative;
        justify-content: center;
        padding: 30px 20px;
    }

    .nav,
    .header-actions {
        display: none;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .menu-toggle {
        display: block;
        position: absolute;
        left: 18px;
        right: auto;
        background: transparent;
        border: none;
        color: #6B5A82;
        font-size: 26px;
        cursor: pointer;
    }

    .mobile-trigger {
        display: block;
        position: absolute;
        left: 18px;
    }

    .tera-media {
        padding: 15px 0;
    }
}

@media (max-width: 1199px) {
    .container01 {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 40px;
        padding-top: 140px;
    }

    .hero-text {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-notebook {
        position: relative;
        left: auto;
        transform: none;
        margin-top: 20px;
    }

    .hero-notebook img {
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .segments-grid,
    .conquests-grid,
    .media-grid {
        flex-wrap: wrap;
    }

    .conquest-card {
        min-width: 100%;
    }

    .media-card {
        min-width: 100%;
    }

    .media-grid {
        flex-direction: column;
        padding: 0 20px;
    }

    .media-card {
        min-height: auto;
    }

    .media-title {
        font-size: 32px;
    }

    .media-description {
        font-size: 18px;
    }

    .media-card h4 {
        font-size: 20px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .media-list li {
        font-size: 14px;
    }

    .media-list li img {
        width: 25px;
    }

    .media-footer-note {
        font-size: 14px;
        font-weight: 400;
    }

    .media-footer-note strong {
        font-weight: 700;
        color: #F0E8FF;
    }
}

@media (max-width: 1024px) {
    .features-mockup {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .features-center {
        order: -1;
    }

    .features-column {
        display: contents;
    }

    .features-column.left .feature-text-item:nth-child(1) {
        order: 1;
    }

    .features-column.right .feature-text-item:nth-child(1) {
        order: 2;
    }

    .features-column.left .feature-text-item:nth-child(2) {
        order: 3;
    }

    .features-column.right .feature-text-item:nth-child(2) {
        order: 4;
    }

    .features-column.left .feature-text-item:nth-child(3) {
        order: 5;
    }

    .features-column.right .feature-text-item:nth-child(3) {
        order: 6;
    }

    .features-mockup {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
        max-width: 700px;
        padding-left: 25px;
        padding-right: 20px;
        padding-bottom: 0;
        margin-top: 0;
    }

    .features-center {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
    }

    .feature-text-item {
        width: 100%;
        max-width: 100%;
        text-align: left;
    }

    .feature-text-item p {
        font-size: 20px;
        text-align: left;
    }

    .conquests-title {
        font-size: 16px;
        color: #E5E1EB;
    }

    .phone-img {
        width: 300px;
    }

    .logos-brand {
        justify-content: center;
    }

    .container-hub {
        flex-direction: column;
        text-align: center;
    }

    .hub-actions {
        justify-content: center;
    }

    .hub-card-item {
        text-align: left;
    }

    .container01 {
        flex-direction: column-reverse;
        min-height: auto;
        padding: 114px 20px 0px;
        gap: 0px;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
        margin-left: 0 !important;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 18px;
    }

    .hero-notebook {
        justify-content: center;
    }

    .hero-notebook img {
        max-width: 90%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 385px;
    }

    .segments {
        padding: 35px 20px;
    }

    .segments-header h2 {
        font-size: 16px;
        color: #E5E1EB;
        margin-bottom: 50px;
    }

    .segments-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
        align-items: center;
    }

    .segment-item p {
        font-size: 12px;
    }

    .segments-description p {
        font-size: 15px;
    }

    .segment-item img {
        height: 55px;
    }

    .hub-description,
    .hub-note {
        font-size: 14px;
        text-align: justify;
    }

    .media-description {
        font-size: 14px;
        text-align: center;
    }

    .media-grid {
        padding: 0;
        margin-bottom: 30px;
    }

    .container-media {
        padding: 0 19px;
    }

    .media-header {
        margin-bottom: 30px;
    }

    .media-mini-tag {
        font-size: 14px;
    }

    .hub-note {
        margin-bottom: 20px;
    }

    .feature-text-item p {
        font-size: 12px;
    }

    .logos-brand img {
        height: 34px;
        width: 39px;
    }

    .tera-hub .btn-documentos,
    .btn-fale {
        font-size: 14px;
        width: 335px;
        height: 38px;
        color: #FBF5D5;
    }

    .hub-card-item {
        padding: 20px;
    }

    .footer-main-title {
        font-size: 14px;
        font-weight: 400;
    }

    .footer-subtitle {
        font-size: 14px;
        text-align: justify;
    }

    .footer-logo-tr {
        height: 135px;
    }

    .footer {
        padding: 25px 12px 25px;
    }

    .footer-hero-section {
        margin-bottom: 0;
    }

    .footer-brand-content {
        align-items: flex-start;
        gap: 0;
    }

    .footer-vertical-line {
        background-color: transparent;
    }

    .container-footer {
        padding: 0 5px;
    }

    .social-icons {
        justify-content: center;
    }

    .nav {
        display: none;
    }

    .btn-outline {
        padding: 9px 28px;
        font-size: 14px;
        font-weight: 400;
        color: #FBF5D5;
    }

    .logo img {
        height: 28px;
    }

    .conquests {
        padding: 60px 16px;
    }

    .conquests-grid {
        flex-direction: column;
        gap: 30px;
        padding: 0 3px;
    }

    .conquest-card {
        min-width: 100% !important;
        padding: 8px 16px;
    }

    .conquest-card h3 {
        font-size: 20px;
    }

    .conquest-card p,
    .conquest-list li {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .conquest-list {
        gap: 0;
    }

    .conquest-list li img {
        width: 20px;
        height: 20px;
    }

    .tera-hub {
        padding: 25px 0;
    }
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-text h1 {
        font-size: 20px;
        font-weight: 400;
        text-align: justify;
        color: #E5E1EB;
    }

    .hero-text p {
        font-size: 14px;
        text-align: justify;
        color: #FBF5D5;
        font-weight: 400;
    }

    .btn-primary {
        font-size: 14px;
        height: 38px;
    }

    .btn-secondary {
        font-size: 14px;
        height: 38px;
        margin-left: 0;
    }

    br.mobile {
        display: inline;
    }

    br.desk {
        display: none;
    }

    .hero-notebook img {
        width: 100%;
        max-width: 100%;
    }
}

@media (min-width: 1401px) {
    .nav {
        display: flex !important;
        flex-direction: row;
        position: relative;
        width: auto;
        background: transparent;
        padding: 0;
    }

    .header-actions {
        display: flex !important;
        position: relative;
        width: auto;
        padding: 0;
        background: transparent;
    }

    .menu-toggle,
    .mobile-menu,
    .mobile-trigger {
        display: none !important;
    }

    .logo {
        position: relative;
        left: auto;
        transform: none;
    }
}