﻿html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500 !important; /* Medium by default */
}
main {
    margin-top: 60px !important;
}

* {
    margin: 0;
    /*padding: 0;*/
    box-sizing: border-box;
}
body {
    background-color: #fff;
    color: #000;
}


.title {
    color: #4c3e99;
}
#buy,
#ofertas,
#download,
#faq {
    scroll-margin-top: 75px;
}

/* ============================== Container =================================== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}



/* ============================== Header ======================================== */
.main-header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    z-index: 1000;
}
.header-content {
    /*font-weight: 600 !important;*/
    display: flex;
    align-items: center;
    padding:10px !important;
    justify-content: space-between;
}

/*  ============================ HEADER ACCOUNT ======================================== */
.account-title {
    color: #4c3e99;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.account-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-header h2 {
    font-size: 15px;
    font-weight: 600;
    color: #532d91;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid #532d91;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*  Logo  */
.logo-area {
    margin-right: 30px;
}
.logo {
    height: 25px;
    width: auto;
}


/* ============================== Menu =================================== */
.nav-menu/*, .nav-menu-user*/{
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: left;
}
.nav-menu a, .nav-menu-user a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: color 0.3s;
}
.nav-menu a:hover,
.nav-menu .active,
.nav-menu-user a:hover,
.nav-menu-user .active,
{
    color: #f47920;
    font-weight: 600;
    border-bottom: 2px solid #ff7a00;
    transition: 0.3s;
}


/* ============================== Login Button =================================== */
.login-btn {
    background-color: #4c3e99;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 7px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.login-btn:hover {
    background-color: #7d5eea;
}

/* ============================== Hamburger Menu (hidden on desktop) =================================== */
.menu-toggle {
    display: none;
    font-size: 20px;
    cursor: pointer;
    color: #5a3fc0;
}





/* ============================== Banner =================================== */
.banner-section {
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}
.banner-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
    color: white;
    gap: 30px;
}
.banner-flag {
    width: 150px;
    height: auto;
    margin-left: -14.4px;
}
.banner-text {
    font-size: 21px;
    font-weight: bold;
    margin-top: 10px;
}



/* ============================== esim =================================== */
.esim-section h2 {
    font-weight: 800 !important; /* ExtraBold */
}



/* ===== eSIM Layout (Two-Column Structure) ===== */
.eSIM-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    overflow: hidden; 
}

/* Left Column - Banner */
.eSIM-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 30px;
}

.eSIM-banner img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Right Column - Content */
.eSIM-content {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}
.carousel-cell {
    width: 100%; /* ou 48% se quiser ver parte do próximo slide */
    box-sizing: border-box; /* importante para padding e border */
}
.carousel {
    overflow: hidden; /* impede que slides vazem para fora */
}
.flickity-button {
    background: transparent;
}
.flickity-prev-next-button.previous {
    left: -11px !important;
}
.flickity-prev-next-button.next {
    right: -14px !important;
}
.flickity-prev-next-button .flickity-button-icon {
    width: 50% !important;
    height: 50% !important;
}

/* Add vertical separator lines between the blocks */
.esim-block {
    position: relative;
}
.esim-block:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    height: 100%;
    width: 1px;
    background-color: #9c9999; /* soft purple-grey */
}

/* --- Plan Options --- */
.plan-options {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
}

.plan-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}
.plan-row:not(:first-child) {
    margin-top: 15px;
}
.plan-card {
    border: 1px solid #ddd;
    padding: 10px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-right: 3px;
    width:100%;
}
.plan-card:hover {
    background: linear-gradient(90deg, #f5a400, #d81d1d);
    transform: translateY(-5px);
    color:white !important;
}
.plan-card:hover .price-selector .quantity-control button {
    background-color: #4c3e99;
}
.plan-card:hover .price-selector .quantity-control span {
    color: black;
}
.primary-plan{
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.plan-card:hover .price-selector .price,
.primary-plan .price-selector .price {
    color: white;
}
.orange-bg {background: linear-gradient(90deg, #f5a400, #d6490d);}
.purple-bg {background: linear-gradient(90deg, #782c92 0%, #984197 100%);}
.secondary-plan {color: #4c3e99;}
.secondary-plan .price-selector .quantity-control button {
    background-color: #a8acac;
}
.secondary-plan .price-selector .quantity-control span {
    color: #a8acac;
}
.pack-name {
    font-size: 14px !important;
    font-weight: bold;
    text-transform: uppercase;
}
.data-limit {
    font-weight: 700;
    font-size: 12px;
}
.duration {
    font-size: 0.8em;
    margin-bottom: 5px;
}
.price-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}
.price-selector .price {
    font-size: 14px;
    color: #322670;
}
.price-selector .quantity-control {
    display: flex;
    align-items: center;
}
.quantity-control {
    display: flex;
    align-items: center;
    border: none;
    border-radius: 999px; 
    overflow: hidden;
}
.quantity-control button {
    background-color: #583c9c;
    color: #fff;
    border: none;
    padding: 5px 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1em;
    line-height: 1;
    height: 100%; 
}

/* Specific styling for the left button (minus) to only have a left round corner */
.quantity-control button:first-child {
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
}

/* Specific styling for the right button (plus) to only have a right round corner */
.quantity-control button:last-child {
    border-top-right-radius: 999px;
    border-bottom-right-radius: 999px;
}
.quantity-control span {
    padding: 2.6px 8px;
    font-size: 1em;
    font-weight: 700;
    color: #000;
    background-color: #fff;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

/* --- Total Section --- */
.total-section {
    text-align: left;
    font-weight: 700;
    font-size: 1.1em;
    color: #4c3e99;
}

/* --- Buy Button --- */
.buy-button {
    color: #fff;
    border: none;
    padding: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    border-radius: 30px;
}

    .buy-button:hover {
        width: 99%;
        background-position: left center;
        background-image: linear-gradient(45deg,#f5a400, #d81d1d);
        transform: scale(1.02);
    }

/* --- Compatibility Section --- */
.compatibility-button {
    background-color: #4c3e99;
    color: #fff;
    border: none;
    padding: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    border-radius: 30px;
}

    .compatibility-button:hover {
        width: 99%;
        color: #fff;
        background-position: left center;
        background-image: linear-gradient(45deg,#4c3e99,#6d5bd1,#4c3e99);
        transform: scale(1.02);
    }

/* --- Ratings and Security --- */
.ratings-security {
    display: flex;
    justify-content: space-between;
    font-size: 0.6em;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.security {
    color: #38761d; /* Green for security checkmark */
    font-weight: 600;
}

/* --- Details Tabs --- */
.features-tabs {
}

.tab-header {
    display: flex;
    justify-content: space-between;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    text-transform: uppercase;
}

    .tab-header span {
        font-weight: 700;
        color: #4c3e99;
        cursor: pointer;
        position: relative;
        transition: color 0.3s;
        font-size: 10px;
        padding: 10px 25px 10px 25px;
    }

        .tab-header span:hover {
            background-position: left center;
            background-image: linear-gradient(45deg,#4c3e99,#6d5bd1,#4c3e99);
            color: #fff;
            font-weight: 600;
        }

        .tab-header span.active {
            color: white;
            background-color: #4c3e99;
        }

.features-list {
  display: none;
  animation: fadeIn 0.4s ease;
}

.features-list.active {
  display: block;
}

.features-list ul {
  margin-left: 0px;
  list-style: disc;
  color: #333;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}



/* ============================== Oferta =================================== */
.ofertas-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.ofertas-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    margin-top: 80px;
}
.ofertas-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.oferta-card {
    display: flex;
    flex-direction: column;
}
.oferta-card h3 {
    color: white;
    text-align: center;
    padding: 40px 0;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 1px;
}
.oferta-text {
    background-color: white;
    padding: 20px 0;
}
.oferta-text h4 {
    color: #4c3e99;
    font-weight: bold;
    font-size: 13px;
    text-transform: capitalize;
    margin-bottom: 6px;
}
.oferta-text p {
    font-weight: 500;
    font-size: 12px;
    color: #111;
    margin-bottom: 18px;
    line-height: 1.5;
}



/* ============================== Download APP =================================== */
.baixar-app-section {
    width: 100%;
    margin: 0 auto;
    position: relative;
}
.baixar-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
}
.baixar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.baixar-bg {
    padding: 80px 100px;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.qr-code {
    width: 200px;
    height: 200px;
    background: white;
    padding: 10px;
}
.baixar-text {
    color: white;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 20px;
}
.baixar-right {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.app-image {
    width: auto;
    height: auto;
    display: block;
    position: relative;
    top: -40px;
    margin-bottom: -40px;
}




/* ============================== FQA =================================== */
.ativar-esim-section {
    width: 100%;
    /*margin-top: 160px;*/
    margin-bottom: 100px;
    color: #322670;
}
.section-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.step-card {
    flex: 1;
    background: #F2F2F2;
    padding: 24px 25px;
    min-width: 280px;
    position: relative;
}
.step-number {
    background: #4c3e99;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 4px;
    left: 3px;
}
.step-title {
    font-size: 13px;
    font-weight: 800;
    color: #4c3e99;
    margin-bottom: 10px;
    margin-top: 10px;
    text-transform: uppercase;
}
.step-text {
    font-size: 11px;
    color: black
}
.divider {
    border: none;
    border-top: 2px solid #ddd;
    margin: 60px 0;
}


/* ============================== Resumo de Compra section =================================== */
.resumo-compra {
    padding: 40px 0;
    font-family: 'Montserrat', sans-serif;
    color: #322670;
    background: #fff;
}
.resumo-compra .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.rc-title {
    font-size: 22px;
    font-weight: 800;
    color: #4c3e99;
    margin-bottom: 18px;
    text-transform: uppercase;
}

/* summary box */
.rc-summary {
    background: #fff;
    border-radius: 4px;
    padding: 14px 18px;
    font-size: 14px;
    color: #222;
    line-height: 1.6;
}
.rc-summary .rc-summary-bold {
    font-weight: 700;
    color: #2a1e61;
    margin: 0 6px;
}
.rc-summary .rc-total {
    color: #2a1e61;
    margin-left: 6px;
    font-weight: 700;
}
.rc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.rc-subtitle {
    font-size: 16px;
    font-weight: 800;
    color: #4c3e99;
    text-transform: uppercase;
    flex: 0 0 280px;
    white-space: nowrap;
}

/* social + payment buttons */
.rc-social,
.rc-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1;
}
.rc-btn {
    border-radius: 22px;
    padding: 0px 18px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #bdbdbd;
    background: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.rc-btn img {
    height: 18px;
}

.rc-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin: 18px 0;
}

/* payments */
.rc-pay {
    background: white;
    border: 1px solid #bdbdbd;
    padding: 8px 12px;
    border-radius: 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.rc-pay img {
    height: 22px;
    margin-bottom: -20px;
    margin-top: -20px;
}

/* confirm button */
.rc-confirm-wrap {
    margin-top: 18px;
}
.rc-confirm {
    background: transparent;
    border: 2px solid #079002;
    padding: 14px 26px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #079002;
    cursor: pointer;
    width: 100%;
    max-width: 420px;
    text-align: center;
}


/* ========== My Account SECTION ========== */
.account-section {
    margin: 50px auto;
    color: #4c3e99;
}

.account-info {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.info-block {
    width: 33.33%;
    padding: 0 30px;
    position: relative;
}

/* Add vertical separator lines between the blocks */
.info-block:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    height: 80%;
    width: 1px;
    background-color: black; /* soft purple-grey */
}

/* Titles and text style */
.info-title {
    font-size: 11px;
    font-weight: 700;
    color: #4c3e99;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-block h3 {
    font-size: 26px;
    font-weight: 900;
    margin: 5px 0;
    color: #4c3e99;
    line-height: 1.2;
}

.info-block .subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #4c3e99;
}

.info-block .active {
    color: #4c3e99;
}


.subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #4c3e99;
}

.account-actions {
    display: flex;
    justify-content: space-between;
    margin: 30px 0 10px;
}

.btn-reactivar {
    background: linear-gradient(90deg, #f58a23, #ed2024);
    border: none;
    color: white;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 2px;
    flex: 1;
    margin-right: 10px;
    cursor: pointer;
}

.btn-secondary {
    background: none;
    border: 1px solid #6b6b6b;
    color: #6b6b6b;
    font-weight: 700;
    padding: 12px 20px;
    flex: 1;
    cursor: pointer;
}

.note {
    font-size: 12px;
    color: #555;
    margin-top: 5px;
}
.history {
    border-top: 1px solid #999;
}

.btn-history {
    background: white;
    border: 1px solid #999;
    color: #4c3e99;
    font-weight: 700;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 20px;
}


/* ============================== LOGIN =====================================*/
.login-register-section {
    display: flex;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}
.login-title {
    color: #4c3e99;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
}


.login-register-box {
    width: 70%;
    background: #dfe0df;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 100px 40px 100px;
}

.login-tab-header {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 40px;
    padding: 10px 20px;
}

.login-tab-header .tabs {
    display: flex;
    gap: 30px;
}

.login-tab-header .tab {
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    opacity: 0.8;
}

.login-tab-header .tab.active {
    opacity: 1;
    font-weight: 700;
    border-bottom: 2px solid #fff;
    padding-bottom: 3px;
}

.social-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 25px 0;
}

.btn-social {
    flex: 1;
    background: #f2f2f2;
    border: 1px solid #d1d1d1;
    padding: 8px 0;
    font-weight: 600;
    cursor: pointer;
}

.btn-social.active {
    background: #fff;
    border: 2px solid #000;
}

.form-container {
    padding: 25px;
    width: 100%;
}
.form-control{
    height: 45px !important;
}


.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 13px;
    margin: 10px 0 20px;
}

.form-options .remember input {
    accent-color: #f26b1d;
    margin-right: 6px;
}

.captcha {
    background: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.captcha label {
    font-size: 13px;
    color: #000;
}

.captcha img {
    width: 100px;
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    color: #fff;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.login-image {
    width: 30%;
   /* background: linear-gradient(90deg, #ff6b00, #ff3d00);
    display: flex;
    justify-content: center;
    align-items: center;*/
}

.login-image img {
    width: 100%;
    height: 100%;
}


/*============================================== compatibility =================================================*/
.device-compatibility {
    background: #fff;
    padding: 30px 0 80px;
    color: #000;
    font-family: "Montserrat", sans-serif;
}

    .device-compatibility .container {
        max-width: 850px;
        margin: 0 auto;
    }

    .device-compatibility .title {
        color: #4c3e99;
        font-size: 18px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .device-compatibility p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .device-compatibility ul {
        margin-left: 20px;
        margin-bottom: 20px;
    }

        .device-compatibility ul li {
            margin-bottom: 8px;
            font-size: 14px;
        }

    .device-compatibility hr {
        border: none;
        border-top: 1px solid #bbb;
        margin: 30px 0;
    }

.platform-select {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.platform {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #bbb;
    border-radius: 40px;
    background: #fff;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: default;
    transition: all 0.3s ease;
}

    .platform img {
        width: 20px;
        height: 20px;
    }

 

/* --- Fixed Search Box --- */
.search-box {
    position: relative;
    width: 100%;
}

    .search-box input {
        width: 100%;
        border: 1px solid #bbb;
        border-radius: 12px;
        padding: 12px 20px 12px 50px; /* space for icon */
        font-size: 15px;
        outline: none;
        transition: all 0.2s ease;
    }

        .search-box input:focus {
            border-color: #3b2171;
        }

.search-icon {
    position: absolute;
    left: 18px;
    top: 70%;
    transform: translateY(-50%);
    color: #888;
    font-size: 18px;
    pointer-events: none;
}



/* ============================== Responsive ============================== */
@media (max-width:320px)
{
   /* .login-tab-header .tabs {
        gap: 10px !important;
    }*/
}

@media (min-width: 451px) {
    /**/
    #desktop {
        display: inline;
    }
    #mobile {
        display: none;
    }
}

@media (max-width: 450px) {
    /**/
    #desktop {
        display:none;
    }
    #mobile {
        display: inline;
        margin-top: 0px;
    }
    .plan-options {
        padding: 0 !important;
    }
    .carousel {
        padding-left: 0px;
        padding-right: 0px;
    }
    .flickity-button:hover {
        background: none !important;
    }
    .eSIM-layout {
        display: inline !important;
    }

    /**/
    .baixar-container {
        flex-direction: unset;
        text-align: left;
    }

    .baixar-bg {
        padding: 0 0 0 10%;
    }

    .purple-gradient {
        width: 100%;
        padding: 60px 40px;
    }

    .app-image {
        position: static;
        transform: none;
        margin-top: -56px;
        width: 110px;
    }

    .baixar-right {
        /*position: static;*/
        margin-right: -16%;
    }

    .qr-code {
        width: 130px;
        height: 120px;
        background-color: transparent !important;
    }

    /**/
    .rc-subtitle {
        white-space: normal !important;
    }
    .rc-pay {
        padding: 12px 12px !important;
    }
}

@media (min-width: 451px) and (max-width: 690px) {
    /**/
    .baixar-container {
        flex-direction: unset;
        text-align: left;
    }

    .baixar-bg {
        padding: 25px 0 25px 10%;
    }

    .purple-gradient {
        width: 100%;
        padding: 60px 40px;
    }

    .app-image {
        position: static;
        transform: none;
        margin-top: -56px;
        width: 160px;
    }

    .baixar-right {
        margin-right: -7%;
    }

    .qr-code {
        width: 130px;
        height: 120px;
        background-color: transparent !important;
    }
}


@media (max-width: 768px) 
{
    html, body {
        width: 100%;
        overflow-x: hidden;
    }
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }
    .header-content {
        flex-wrap: wrap;
    }

    .plan-card {
        border: 1px solid #ddd;
        padding: 10px;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
        cursor: pointer;
        margin-right: 3px;
        width: 50%;
    }

    .platform-select {
        display: flex;
        gap: 10px;
        margin-bottom: 25px;
        justify-content: center;
        align-items: center;
    }

    .platform {
        display: flex;
        align-items: center;
        gap: 6px;
        border: 1px solid #bbb;
        border-radius: 40px;
        background: #fff;
        padding: 8px 20px;
        font-size: 14px;
        font-weight: 600;
        cursor: default;
        transition: all 0.3s ease;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .total-section {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /* Make sure images and sections scale properly */
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
    section {
        width: 100%;
        max-width: 100%;
    }


    /* Fix possible oversized elements */
    * {
        box-sizing: border-box;
    }
    .eSIM-layout {
        grid-template-columns: 1fr;
    }


    /**/
    .logo {
        height: 20px !important;
    }


    /**/
    .banner-content {
        gap: 0 !important;
    }
    .banner-text {
        font-size: 12px !important;
    }
    .banner-flag {
        width: 113px !important;
    }
    .title {
        font-size: 17px !important;
    }
    p {
        font-size: 11px !important;
    }
    .esim-block:not(:last-child)::after {
        content: none !important;
    }
    .eSIM-banner {
        padding-right: 0px !important;
    }
    .features-list ul {
        margin-left: -20px !important;
    }
    .tab-header span {
        font-size: 10px !important;
        padding: 16px 13px 8px 2px !important;
        text-align: center;
    }


    /**/
    /*.ofertas-section {
        padding: 40px 20px;
    }*/
    .oferta-card h3 {
        font-size: 22px;
        padding: 30px 0;
    }


    /**/
    .rc-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .rc-subtitle {
        flex: 1 1 100%;
        margin-bottom: 10px;
    }

    #download {
        margin-bottom:0px !important;
    }
    .ativar-esim-section {
        margin-top: 90px !important;
    }

    /**/
    .login-register-section {
        flex-direction: column;
        align-items: center;
    }

    .login-image {
        display: none;
    }

    .login-register-box {
        width: 100%;
        padding: 20px;
    }
    .login-tab-header .tab {
        font-size: 14px;
    }
}

@media (min-width: 769px) {

    /**/
    .login-register-section {
        display: flex;
        flex-direction: row;
    }
    .login-register-box {
        width: 70%;
        padding: 0px 100px 40px 100px;
        margin-right: 15px;
    }
    .login-image {
        display: block;
        width: 30%;
    }
    .login-image img {
        width: 100%;
        height: 100%;
        /*object-fit: cover;*/
    }
}

@media (max-width: 900px) 
{
    main {
        margin-top: 40px !important;
    }
    .nav-menu{
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 20px;
        background: #fff;
        width: 200px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        padding: 15px;
    }
    .nav-menu-user {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        right: 20px;
        background: #fff;
        width: 200px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        padding: 15px;
    }
    .nav-menu.active,
    .nav-menu-user.active{
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .login-btn,
    .account-header {
        display: none;
    }


    /**/
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    .step-card {
        width: 100%;
        max-width: 400px;
    }


    /**/
    .account-info {
        flex-direction: column;
        align-items: flex-start;
    }
    .info-block {
        width: 100%;
        padding: 15px 0;
    }
    .info-block:not(:last-child)::after {
        display: none;
    }
    .account-actions {
        flex-direction: column;
    }
    .btn-reactivar, .btn-secondary {
        width: 100%;
        margin: 5px 0;
    }
    .nav-menu {
        order: 3;
        flex-wrap: wrap;
        gap: 20px;
    }
    .account-header {
        align-self: flex-end;
    }

}

@media (min-width: 901px) {
    /**/
    .login-account {
        display: none;
    }
}

/* Language drop */

.lang-toggle,
.coin-toggle{
    position: relative;
    display: inline-block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

.lang-toggle-button,
.coin-toggle-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    /*border: 1px solid #4c3e99;*/
    border: 0;
    background: #fff;
    cursor: pointer;
    border-radius: 6px;
    user-select: none;
    margin-right: 10px;
}

    .lang-toggle-button:focus,
    .coin-toggle-button:focus {
        outline: 3px solid rgba(0,123,255,0.2);
        outline-offset: 2px;
    }

.caret {
    border-top: 6px solid #333;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    width: 0;
    height: 0;
    margin-left: 6px;
}

.lang-menu,
.coin-menu{
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 140px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border-radius: 6px;
    padding: 6px 0;
    z-index: 1000;
    display: none;
}

    .lang-menu.show,
    .coin-menu.show {
        display: block;
    }

.lang-option,
.coin-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background .08s;
}

    .lang-option:hover,
    .lang-option:focus,
    .coin-option:hover,
    .coin-option:focus {
        background: #f5f5f5;
    }

    .lang-option[aria-checked="true"],
    .coin-option[aria-checked="true"] {
        font-weight: 600;
        background: #eef6ff;
    }

.flag {
    width: 0px;
    height: 14px;
    display: inline-block;
    border-radius: 2px;
    background-size: cover;
}

/*
eSim - resumo de compra
*/

.card-wrap {
    width: min(92%, var(--card-width));
    max-width: var(--card-width);
}

.card {
    background: linear-gradient(90deg, #f28a3a 0%, #ff4b97 55%, #ff2e9c 100%);
    border-radius: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    overflow: hidden;
    color: var(--text-white);
    position: relative;
}

    /* Inner layout: top area main content + bottom orange bar */
    .card .main {
        display: flex;
        gap: 28px;
        padding: 28px;
        align-items: flex-start;
    }

/* left column: QR block */
.qr-wrap {
    width: 160px;
    min-width: 160px;
    background: rgba(255,255,255,0.95);
    color: #111;
    border-radius: 8px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* QR placeholder (we generate a stylized QR-ish SVG) */
.qr {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    border-radius: 6px;
    overflow: hidden;
}

/* Right column: text content */
.info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 180px;
}

.title {
    font-weight: 800;
    font-size: 36px;
    letter-spacing: -0.5px;
    margin: 6px 0 10px 0;
}

.subtitle {
    font-weight: 600;
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 10px;
}

.details {
    font-weight: 500;
    line-height: 1.5;
    font-size: 14px;
    opacity: 0.95;
}

.detail-line {
    margin: 6px 0;
}

/* bottom orange bar */
.bar {
    background: linear-gradient(90deg, #f08a2f 0%, #ff7a43 100%);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.esim {
    font-weight: 800;
    font-size: 28px;
    color: white;
    letter-spacing: 0.5px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
}

/* small white card border at edges similar to original */
.card::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: calc(var(--radius) - 4px);
    outline: 1px solid rgba(255,255,255,0.08);
    pointer-events: none;
}

/* Responsive */
@media (max-width:760px) {
    .main {
        flex-direction: column;
        gap: 16px;
        padding: 18px;
    }

    .qr-wrap {
        display: flex;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        padding: 12px;
    }

    .qr {
        width: 130px;
        height: 130px;
    }

    .title {
        font-size: 22px;
    }

    .subtitle {
        font-size: 14px;
    }

    .esim {
        font-size: 20px;
    }

    .barcode {
        width: 160px;
        height: 28px;
    }
}

.applogos{
    height: 40px;
    width: auto;
}

/* Accordion */

.panel-title > a {
    display: block;
    width: 100%;
    text-decoration: none;
    position: relative;
    padding-right: 25px;
}

/* Ícone seta */
.panel-title a:after {
    content: "\f078"; /* ícone caret-down */
    font-family: 'FontAwesome';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

/* Roda quando está aberto */
.panel-title a[aria-expanded="true"]:after {
    transform: translateY(-50%) rotate(180deg);
}

.panel-heading {
    cursor: pointer;
    color: #fff !important;
    background-color: #eb8704 !important;
}

.menuClick.active{
    font-weight: 600;
}