/* Tokens & Variáveis */

:root {
    --md-sys-primary: #3c3582;
    --md-sys-primary-hover: #2a255b;
    --md-sys-secondary: #00E5FF;
    --md-sys-on-secondary: #001A22;
    --md-sys-bg: #F6F6FA;
    --md-sys-surface: #FFFFFF;
    --md-sys-surface-variant: #EBEAFA;
    --md-sys-outline: #D0D0E0;
    --md-sys-text: #181824;
    --md-sys-text-muted: #555568;

    --radius-medium: 16px;
    --radius-large: 32px;
    --radius-full: 100px;

    --shadow-1: 0px 1px 3px rgba(60, 53, 130, 0.08);
    --shadow-2: 0px 10px 15px -3px rgba(60, 53, 130, 0.1);
    --shadow-3: 0px 25px 50px -12px rgba(60, 53, 130, 0.15);
    --transition: all 0.3s ease;
}

/* Reset Global */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--md-sys-bg);
    color: var(--md-sys-text);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.blurred-content {
    transition: filter 0.4s ease;
}

body.modal-open .blurred-content {
    filter: blur(12px) brightness(0.9);
    pointer-events: none;
}

.mobile-only-icon {
    display: none;
}

.mobile-menu-btn,
.mobile-close-btn {
    display: none;
    background: none;
    border: none;
    color: var(--md-sys-primary);
    cursor: pointer;
}

.mobile-menu-btn span,
.mobile-close-btn span {
    font-size: 32px;
}

/* Header Flutuante */

.sticky-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(60, 53, 130, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-header.scrolled {
    top: 10px;
    width: 90%;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(60, 53, 130, 0.12);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
}

.logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.white-logo {
    color: white;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1.5px;
}


.sticky-header:not(.scrolled) .logo img {
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.sticky-header.scrolled .logo img {
    filter: none;
    transition: all 0.4s ease;
}


.main-nav {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

@media (min-width: 993px) {
    .sticky-header .nav-links li a {
        color: #FFFFFF;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }

    .sticky-header .nav-links li a:hover {
        color: var(--md-sys-secondary);
    }

    .sticky-header.scrolled .nav-links li a {
        color: var(--md-sys-primary);
        text-shadow: none;
    }

    .sticky-header.scrolled .nav-links li a:hover {
        color: var(--md-sys-primary-hover);
    }
}

.has-submenu {
    position: relative;
    padding: 10px 0;
    display: flex;
    align-items: center;
}


.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    min-width: 220px;
    border-radius: 16px;
    padding: 10px 0;
    display: none;
    list-style: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
    z-index: 100;
}

.has-submenu:hover .submenu {
    display: block;
}

.submenu li {
    padding: 2px 10px;
}

.submenu li a {
    padding: 12px 15px !important;
    font-size: 14px;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    color: var(--md-sys-primary) !important;
    text-shadow: none !important;
}

.submenu li a:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
}


.top-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.city-display-btn,
.btn-central {
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
    border: none;
    cursor: pointer;
    padding: 10px 24px;
    border-radius: var(--radius-full);
}

.city-display-btn {
    padding: 10px 20px;
}

.sticky-header:not(.scrolled) .btn-central,
.sticky-header:not(.scrolled) .city-display-btn {
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.sticky-header:not(.scrolled) .btn-central:hover,
.sticky-header:not(.scrolled) .city-display-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sticky-header.scrolled .city-display-btn {
    background: var(--md-sys-surface-variant);
    color: var(--md-sys-primary);
    border-color: transparent;
}

.sticky-header.scrolled .city-display-btn:hover {
    background: #dedced;
}

.sticky-header.scrolled .btn-central {
    background: var(--md-sys-primary);
    color: white;
    text-decoration: none;
}

.sticky-header.scrolled .btn-central:hover {
    background: var(--md-sys-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
}

.sticky-header .mobile-menu-btn {
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.sticky-header.scrolled .mobile-menu-btn {
    color: var(--md-sys-primary);
    text-shadow: none;
}

/* Hero & Banners */

.hero-premium {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #1a1738;
    padding-top: 60px;
}

.hero-premium .container {
    display: flex;
    justify-content: flex-start;
    z-index: 2;
}

.hero-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 23, 56, 0.95) 0%, rgba(26, 23, 56, 0.3) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 650px;
    text-align: left;
}

.hero-content .hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-content .hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-hero-assinar {
    display: inline-flex;
    background: var(--md-sys-secondary);
    color: var(--md-sys-on-secondary);
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-weight: 900;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.3);
    transition: var(--transition);
}

.btn-hero-assinar:hover {
    background: white;
    transform: translateY(-3px);
}

/* Tabs Flutuantes */

.m3-tabs-nav {
    background: transparent;
    padding: 0;
    margin-top: -35px;
    position: relative;
    z-index: 10;
}

.tabs-premium-wrapper {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px;
    border-radius: 100px;
    box-shadow: 0 15px 35px rgba(26, 23, 56, 0.15);
    border: 1px solid rgba(255, 255, 255, 1);
    margin: 0 auto;
    justify-content: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    gap: 5px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--md-sys-text-muted);
    padding: 14px 35px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.tab-btn img,
.tab-btn span,
.tab-btn .tag-5g {
    pointer-events: none;
}

.tab-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: grayscale(1) opacity(0.6);
}

.tab-btn:hover {
    color: var(--md-sys-primary);
    background: rgba(60, 53, 130, 0.05);
}

.tab-btn:hover .tab-icon-img {
    transform: scale(1.1);
    filter: grayscale(0.5) opacity(0.8);
}

.tab-btn.active {
    background: var(--md-sys-primary);
    color: white;
    box-shadow: 0 10px 25px rgba(60, 53, 130, 0.3);
}

.tab-btn.active .tab-icon-img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.15);
    drop-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.tag-5g {
    background: rgba(60, 53, 130, 0.1);
    color: var(--md-sys-primary);
    padding: 3px 10px;
    border-radius: 8px;
    margin-left: 6px;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.tab-btn.active .tag-5g {
    background: rgba(0, 229, 255, 0.15);
    color: var(--md-sys-secondary);
}

/* Grids & Seções */

.m3-section,
.section-advantages,
.section-apps,
.section-business,
.section-faq,
.section-help {
    padding: 90px 0;
}

.section-advantages {
    background-color: var(--md-sys-surface-variant);
}

.section-business {
    background-color: #EBEAFA;
    scroll-margin-top: 80px;
}

.section-faq {
    background-color: var(--md-sys-bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 900;
    color: var(--md-sys-primary);
    margin: 15px 0;
}

.m3-tag,
.m3-tag-business,
.app-category {
    background: rgba(60, 53, 130, 0.1);
    color: var(--md-sys-primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.m3-tag-business {
    background: var(--md-sys-primary);
    color: white;
}

.app-category {
    display: inline-block;
    margin-bottom: 10px;
}

.m3-grid-planos,
.m3-apps-grid,
.m3-business-grid,
.help-quick-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.m3-advantages-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

/* Cards */

.m3-card {
    background: white;
    border-radius: var(--radius-large);
    padding: 45px 35px;
    box-shadow: var(--shadow-1);
    border: 1px solid var(--md-sys-outline);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.m3-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-3);
    border-color: var(--md-sys-primary);
}

.badge-oferta {
    position: absolute;
    top: -14px;
    right: 28px;
    background: var(--md-sys-secondary);
    color: var(--md-sys-on-secondary);
    padding: 8px 18px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 12px;
}

.card-title {
    font-size: 34px;
    font-weight: 900;
    text-align: center;
    color: var(--md-sys-primary);
    margin-bottom: 25px;
}

.card-price {
    text-align: center;
    margin-bottom: 30px;
}

.card-price .value {
    font-size: 58px;
    font-weight: 900;
}

.m3-list {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.m3-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    align-items: flex-start;
}

.m3-list li span {
    color: var(--md-sys-primary);
    font-size: 20px;
}

.btn-whatsapp {
    background: var(--md-sys-secondary);
    color: var(--md-sys-on-secondary);
    text-align: center;
    padding: 18px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 900;
    transition: var(--transition);
    display: block;
}

.btn-whatsapp:hover {
    filter: brightness(1.05);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4);
}

.advantage-card,
.help-card {
    background: white;
    padding: 48px 24px;
    border-radius: var(--radius-large);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: var(--shadow-1);
    height: 100%;
}

.help-card {
    background: var(--md-sys-bg);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--md-sys-text);
}

.advantage-card:hover,
.help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2);
    border-color: var(--md-sys-primary);
    background: white;
}

.adv-icon,
.help-icon {
    width: 72px;
    height: 72px;
    background: var(--md-sys-surface-variant);
    color: var(--md-sys-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: var(--transition);
}

.help-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.adv-icon span,
.help-icon span {
    font-size: 36px;
}

.help-card:hover .help-icon {
    background: var(--md-sys-primary);
    color: white;
}

.advantage-card h3,
.help-card h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--md-sys-primary);
}

.help-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.advantage-card p,
.help-card p {
    font-size: 14px;
    color: var(--md-sys-text-muted);
}


.app-card {
    display: flex;
    align-items: center;
    border-radius: var(--radius-large);
    padding: 40px 30px;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
    min-height: 290px;
}

.app-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
}

.app-info h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    color: rgba(255, 255, 255, 0.85);
}

.app-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
}

.store-badge {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 5px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none !important;
}

.store-badge .material-icons-outlined {
    margin-right: 5px !important;
    font-size: 16px !important;
}

.app-card.cliente-premium {
    background: linear-gradient(135deg, #0A0914 0%, #1a1738 100%);
    border: 1px solid rgba(0, 229, 255, 0.15);
}

.app-card.cliente-premium:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.15);
}

.app-card.cliente-premium h3,
.app-card.cliente-premium p {
    color: white;
}

.app-card.cliente-premium .tag-premium {
    background: rgba(0, 229, 255, 0.15);
    color: var(--md-sys-secondary);
}

.app-card.cliente-premium .store-badge {
    background: var(--md-sys-secondary);
    color: var(--md-sys-on-secondary);
}

.app-card.cliente-premium .store-badge:hover {
    background: white;
    color: var(--md-sys-primary);
}

.app-card.movel-premium {
    background: linear-gradient(135deg, #120614 0%, #2b0b2b 100%);
    border: 1px solid rgba(213, 0, 249, 0.15);
}

.app-card.movel-premium:hover {
    border-color: rgba(213, 0, 249, 0.4);
    box-shadow: 0 15px 35px rgba(213, 0, 249, 0.15);
}

.app-card.movel-premium h3,
.app-card.movel-premium p {
    color: white;
}

.app-card.movel-premium .tag-premium-movel {
    background: rgba(213, 0, 249, 0.15);
    color: #E040FB;
}

.app-card.movel-premium .store-badge {
    background: #D500F9;
    color: white;
}

.app-card.movel-premium .store-badge:hover {
    background: white;
    color: #D500F9;
}

.app-card.tv-premium {
    background: linear-gradient(135deg, #05180f 0%, #032b1a 100%);
    border: 1px solid rgba(0, 230, 118, 0.15);
}

.app-card.tv-premium:hover {
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 15px 35px rgba(0, 230, 118, 0.15);
}

.app-card.tv-premium h3,
.app-card.tv-premium p {
    color: white;
}

.app-card.tv-premium .tag-premium-tv {
    background: rgba(0, 230, 118, 0.15);
    color: #00E676;
}

.app-card.tv-premium .store-badge {
    background: #00C853;
    color: white;
}

.app-card.tv-premium .store-badge:hover {
    background: white;
    color: #00C853;
}

.app-visual-img {
    width: 110px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-visual-img img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.app-card:hover .app-visual-img img {
    transform: translateY(-6px) scale(1.05);
}


.business-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius-large);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
    border: 1px solid transparent;
}

.business-card:hover {
    transform: translateY(-5px);
    border-color: var(--md-sys-primary);
    box-shadow: var(--shadow-2);
}

.bus-icon {
    width: 56px;
    height: 56px;
    background: var(--md-sys-surface-variant);
    color: var(--md-sys-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bus-icon span {
    font-size: 30px;
}

.bus-text h3 {
    font-size: 20px;
    font-weight: 900;
    color: var(--md-sys-primary);
    margin-bottom: 8px;
}

.bus-text p {
    font-size: 14px;
    color: var(--md-sys-text-muted);
}

.business-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-business {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--md-sys-primary);
    color: white;
    padding: 22px 45px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(60, 53, 130, 0.2);
}

.btn-business:hover {
    background: var(--md-sys-primary-hover);
    transform: scale(1.05);
}


.help-app-banner.premium-banner-cyan {
    background: linear-gradient(135deg, #0A0914 0%, #1a1738 100%);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 40px;
    padding: 60px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.15);
}

.app-banner-content {
    flex: 1;
    color: white;
}

.app-banner-content h3 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.app-banner-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    max-width: 550px;
    line-height: 1.6;
}

.app-benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.app-benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.app-benefits-list li span {
    color: var(--md-sys-secondary);
    font-size: 22px;
}

.banner-store-btns {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    max-width: 380px;
}

.banner-store-btns .store-badge {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--md-sys-secondary);
    color: var(--md-sys-on-secondary);
    padding: 16px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: var(--transition);
    border: none;
}

.banner-store-btns .store-badge:hover {
    background: white;
    color: var(--md-sys-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
}

.banner-store-btns .material-icons-outlined {
    margin-right: 6px;
    font-size: 20px;
}

.app-banner-visual {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-premium-img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
    animation: floatImg 6s ease-in-out infinite;
}

@keyframes floatImg {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* EdiMelo Play & FAQ */

.section-edimelo-play {
    padding: 80px 0;
    background-color: var(--md-sys-bg);
    scroll-margin-top: 80px;
}

.play-premium-box {
    background: linear-gradient(135deg, #05180f 0%, #022013 50%, #01140b 100%);
    border-radius: 40px;
    padding: 70px 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: 0 30px 60px rgba(3, 43, 26, 0.5);
    position: relative;
    overflow: hidden;
}

.play-premium-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.play-content {
    flex: 1;
    color: white;
    position: relative;
    z-index: 2;
}

.m3-tag-play {
    background: rgba(0, 230, 118, 0.15);
    color: #00E676;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 230, 118, 0.2);
}

.play-content h2 {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.play-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 500px;
}

.play-features {
    list-style: none;
    margin-bottom: 45px;
}

.play-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.play-features li span {
    color: #00E676;
    font-size: 24px;
}

.btn-play {
    display: inline-block;
    background: white;
    color: #032b1a;
    padding: 20px 40px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    transition: var(--transition);
}

.btn-play:hover {
    background: #00C853;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 200, 83, 0.3);
}

.play-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-width: 280px;
}


.mockup-phone {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 9 / 19.5;
    background: rgba(255, 255, 255, 0.03);
    border: 3px solid rgba(0, 230, 118, 0.15);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 230, 118, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    flex-shrink: 0;
}

.mockup-phone:hover {
    border-color: rgba(0, 230, 118, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 230, 118, 0.3);
    transform: translateY(-8px);
}

.phone-notch {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #022013;
    border: 2px solid rgba(0, 230, 118, 0.15);
    border-top: none;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
    transition: var(--transition);
}

.mockup-phone:hover .phone-notch {
    border-color: rgba(0, 230, 118, 0.6);
}

.play-icon-center {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.85);
    z-index: 2;
    transition: var(--transition);
    cursor: pointer;
}

.mockup-phone:hover .play-icon-center {
    color: #00E676;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(0, 230, 118, 0.5));
}


.faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--md-sys-surface);
    border-radius: var(--radius-medium);
    border: 1px solid var(--md-sys-outline);
    transition: var(--transition);
}

.faq-item summary {
    padding: 24px 30px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 17px;
    color: var(--md-sys-primary);
    cursor: pointer;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    transition: transform 0.3s ease;
}

.faq-content {
    padding: 0 30px 24px;
    color: var(--md-sys-text-muted);
    font-size: 15px;
}

.faq-item[open] {
    border-color: var(--md-sys-primary);
    box-shadow: var(--shadow-2);
}

.faq-item[open] summary,
.faq-item[open] summary span {
    color: var(--md-sys-primary);
}

.faq-item[open] summary span {
    transform: rotate(180deg);
}

/* Footer, LGPD & Modais */

.footer-minimal {
    background-color: #080715;
    color: rgba(255, 255, 255, 0.5);
    padding: 60px 0 40px;
}

.footer-minimal-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
}

.footer-logo-container img {
    width: 140px;
    height: auto;
}

.footer-minimal-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-minimal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-minimal-links a:hover {
    color: white;
}

.footer-has-submenu {
    position: relative;
}

.footer-has-submenu > a {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.footer-submenu {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    min-width: 180px;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.footer-has-submenu:hover .footer-submenu {
    display: block;
}

.footer-submenu li a {
    display: block;
    padding: 10px 20px;
    color: var(--md-sys-primary);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.footer-submenu li a:hover {
    background: rgba(60, 53, 130, 0.12);
    color: var(--md-sys-primary-hover);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.footer-socials a.icon-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    transform: translateY(-3px);
}

.footer-socials a.icon-facebook:hover {
    background: #1877F2;
    transform: translateY(-3px);
}

.footer-minimal-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}


.lgpd-banner {
    position: fixed;
    bottom: -150%;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1000px;
    background: rgba(10, 9, 20, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 24px;
    padding: 24px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    z-index: 9999;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lgpd-banner.show {
    bottom: 30px;
}

.lgpd-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lgpd-icon {
    font-size: 42px;
    color: var(--md-sys-secondary);
    background: rgba(0, 229, 255, 0.1);
    padding: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.lgpd-text h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 700;
}

.lgpd-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
}

.lgpd-text a {
    color: var(--md-sys-secondary);
    text-decoration: underline;
    font-weight: bold;
}

.btn-lgpd-aceitar {
    background: var(--md-sys-secondary);
    color: var(--md-sys-on-secondary);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-lgpd-aceitar:hover {
    background: white;
    color: var(--md-sys-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}


.m3-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 23, 56, 0.9);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    overflow-y: auto;
}

#contact-overlay {
    overflow: hidden;
}

.m3-overlay.active {
    opacity: 1;
    visibility: visible;
}

.m3-modal {
    background: white;
    padding: 50px;
    border-radius: 40px;
    width: 95%;
    max-width: 480px;
    text-align: center;
    box-shadow: var(--shadow-3);
    transform: scale(0.9);
    transition: 0.4s;
    margin: auto;
}

.m3-overlay.active .m3-modal {
    transform: scale(1);
}

.contact-modal {
    position: relative;
    max-width: 520px;
    padding: 32px 36px;
    text-align: left;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--md-sys-text-muted);
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: rgba(60, 53, 130, 0.1);
    color: var(--md-sys-primary);
}

.contact-modal h2 {
    text-align: center;
    color: var(--md-sys-primary);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 6px;
}

.contact-modal > p {
    text-align: center;
    color: var(--md-sys-text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--md-sys-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    border: 2px solid var(--md-sys-outline);
    background: var(--md-sys-bg);
    color: var(--md-sys-text);
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--md-sys-primary);
    box-shadow: 0 0 0 4px rgba(60, 53, 130, 0.08);
}

.form-group textarea {
    resize: none;
    min-height: 80px;
}

.contact-note {
    text-align: center;
    font-size: 12px;
    color: var(--md-sys-text-muted);
    margin-top: 14px;
}

.contact-note a {
    color: var(--md-sys-primary);
    font-weight: 700;
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

.email-float {
    border: none;
    cursor: pointer;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: var(--md-sys-surface-variant);
    color: var(--md-sys-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.select-wrapper {
    position: relative;
    margin: 30px 0;
}

.select-wrapper select {
    width: 100%;
    padding: 18px 50px;
    border-radius: 18px;
    border: 2px solid var(--md-sys-primary);
    font-size: 16px;
    appearance: none;
    outline: none;
    background: var(--md-sys-bg);
    cursor: pointer;
    color: var(--md-sys-text);
}

.select-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.expand-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--md-sys-primary);
}

.m3-btn-primary.full-width {
    width: 100%;
    padding: 20px;
    border-radius: 100px;
    background: var(--md-sys-primary);
    color: white;
    border: none;
    font-weight: 900;
    cursor: pointer;
    transition: var(--transition);
}

.m3-btn-primary:disabled {
    background: var(--md-sys-outline);
    color: var(--md-sys-text-muted);
    cursor: not-allowed;
}

.email-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--md-sys-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    box-shadow: 0 10px 20px rgba(60, 53, 130, 0.4);
    text-decoration: none;
    transition: 0.3s;
}

.email-float span {
    font-size: 28px;
}

.email-float:hover {
    transform: scale(1.1) rotate(10deg);
}

.wpp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--md-sys-secondary);
    color: var(--md-sys-on-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.4);
    text-decoration: none;
    transition: 0.3s;
}

.wpp-float span {
    font-size: 32px;
}

.wpp-float:hover {
    transform: scale(1.1) rotate(-10deg);
}

/* Responsividade */

@media (max-width: 992px) {


    .header-container {
        padding: 0 15px;
        gap: 10px;
    }

    .logo img {
        height: 38px !important;
    }

    .mobile-menu-btn,
    .mobile-close-btn {
        display: block;
    }

    .hide-mobile {
        display: none !important;
    }

    .mobile-only-icon {
        display: block !important;
        font-size: 24px;
    }

    .top-actions {
        gap: 8px;
        width: auto;
    }

    .city-display-btn,
    .btn-central {
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }


    .sticky-header.scrolled {
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 4px 20px rgba(60, 53, 130, 0.15) !important;
    }

    .sticky-header.scrolled .mobile-menu-btn {
        color: var(--md-sys-primary) !important;
        text-shadow: none !important;
    }

    .sticky-header.scrolled .city-display-btn,
    .sticky-header.scrolled .btn-central {
        background: var(--md-sys-surface-variant) !important;
        color: var(--md-sys-primary) !important;
        border: none !important;
    }

    .sticky-header.scrolled .logo img {
        filter: none !important;
    }


    .main-nav {
        position: fixed;
        top: 85px;
        left: 5%;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 1);
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 25px;
        box-shadow: 0 0 0 0 rgba(8, 7, 21, 0);
        z-index: 3000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px) scale(0.95);
        transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        left: 5%;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2), 0 0 0 3000px rgba(10, 9, 20, 0.75) !important;
    }

    .mobile-close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        margin: 0;
        color: var(--md-sys-text-muted) !important;
        background: rgba(0, 0, 0, 0.05);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .mobile-close-btn:hover {
        background: rgba(60, 53, 130, 0.1);
        color: var(--md-sys-primary) !important;
    }

    .mobile-close-btn span {
        font-size: 20px;
    }


    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-top: 15px;
    }

    .nav-links li {
        width: 100%;
        display: block;
    }

    .nav-links li a {
        font-size: 17px;
        font-weight: 800;
        color: var(--md-sys-primary) !important;
        text-shadow: none !important;
        border-bottom: 1px solid rgba(60, 53, 130, 0.08);
        padding: 18px 5px;
        justify-content: space-between;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .has-submenu .submenu {
        position: static;
        box-shadow: none;
        border: none;
        padding: 5px 0 10px 15px;
        background: transparent !important;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        display: none;
    }

    .has-submenu.open-mobile .submenu {
        display: block;
    }

    .submenu li a {
        font-size: 15px;
        font-weight: 600;
        color: var(--md-sys-text-muted) !important;
        padding: 12px 5px !important;
        border-bottom: none;
    }


    .m3-advantages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .play-premium-box,
    .help-app-banner {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
        gap: 40px;
    }

    .play-content p,
    .app-banner-content p {
        margin: 0 auto 35px;
    }

    .play-features li,
    .app-benefits-list li {
        justify-content: center;
    }

    .app-benefits-list li {
        text-align: left;
    }

    .mockup-phone {
        max-width: 320px;
        width: 85%;
        margin: 20px auto 0;
    }

    .help-app-banner .app-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .m3-section,
    .section-advantages,
    .section-apps,
    .section-business,
    .section-faq,
    .section-help,
    .section-edimelo-play {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }


    .hero-premium {
        height: 520px;
        padding-top: 80px;
    }

    .hero-premium .container {
        justify-content: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .hero-title {
        font-size: 32px;
    }

    .img-desktop {
        display: none;
    }

    .img-mobile {
        display: block;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }


    .tabs-premium-wrapper {
        width: 90%;
        display: flex;
        flex-direction: row;
        padding: 6px;
        border-radius: 20px;
    }

    .tab-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 10px;
        font-size: 14px;
        gap: 8px;
    }

    .tab-icon-img {
        width: 24px;
        height: 24px;
    }

    .tab-btn span {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }

    .tag-5g {
        margin-left: 0;
        font-size: 11px;
    }


    .m3-advantages-grid {
        grid-template-columns: 1fr !important;
    }

    .app-card,
    .business-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .app-visual {
        order: -1;
        margin-bottom: 15px;
    }

    .app-buttons {
        justify-content: center;
    }

    .play-content h2 {
        font-size: 36px;
    }

    .app-banner-content h3 {
        font-size: 28px;
    }

    .app-benefits-list li {
        font-size: 14px;
    }


    .footer-minimal-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-minimal-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-submenu {
        position: static;
        transform: none;
        display: none;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        margin-top: 10px;
    }

    .footer-has-submenu:hover .footer-submenu {
        display: none;
    }

    .footer-has-submenu.active .footer-submenu {
        display: block;
    }

    .footer-submenu li a {
        color: rgba(255, 255, 255, 0.8);
        text-align: center;
    }

    .contact-modal {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        min-height: 100vh;
        border-radius: 0;
        padding: 20px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }

    .contact-modal h2 {
        font-size: 20px;
    }

    .contact-modal > p {
        margin-bottom: 16px;
    }

    .contact-form {
        gap: 12px;
    }

    .form-group input,
    .form-group textarea {
        padding: 8px 12px;
        font-size: 13px;
    }

    .form-group textarea {
        min-height: 60px;
    }

    .contact-note {
        margin-top: 10px;
        font-size: 11px;
    }

    .email-float {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .wpp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .banner-store-btns {
        max-width: 100%;
        justify-content: center;
    }

    .banner-premium-img {
        width: 180px;
    }

    .lgpd-banner {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        text-align: center;
    }

    .lgpd-content {
        flex-direction: column;
    }

    .btn-lgpd-aceitar {
        width: 100%;
        padding: 16px;
    }

    .lgpd-banner.show {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .mockup-phone {
        max-width: 260px;
    }

    .phone-notch {
        width: 80px;
        height: 20px;
    }

    .play-icon-center {
        font-size: 64px;
    }
}


.section-planos {
    background-color: #0d0d12;

    padding: 60px 0;
}

.m3-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: stretch;
}


.m3-card {
    background: linear-gradient(145deg, #1a1a24 0%, #121218 100%);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.m3-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}


.m3-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    margin-top: 16px;
}

.m3-card .card-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.m3-card .card-price .value {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin: 0 4px;
    color: #ffffff;
}

.m3-card .m3-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #a0a0b0;

    margin-bottom: 16px;
    line-height: 1.5;
}

.m3-card .m3-list li .material-icons-outlined {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}


.m3-card .btn-whatsapp {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
}


.m3-card.tema-fibra:hover {
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.3);
}

.m3-card.tema-fibra .card-price {
    color: #00e5ff;
}

.m3-card.tema-fibra .m3-list li .material-icons-outlined {
    color: #00e5ff;
}

.m3-card.tema-fibra .btn-whatsapp {
    background: #00e5ff;
    color: #000000;

}

.m3-card.tema-fibra .btn-whatsapp:hover {
    background: #00b8cc;
    transform: scale(1.02);
}


.m3-card.tema-movel:hover {
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15);
    border-color: rgba(233, 30, 99, 0.3);
}

.m3-card.tema-movel .card-price {
    color: #ff2a75;

}

.m3-card.tema-movel .m3-list li .material-icons-outlined {
    color: #ff2a75;
}

.m3-card.tema-movel .btn-whatsapp {
    background: #ff2a75;
    color: #ffffff;
}

.m3-card.tema-movel .btn-whatsapp:hover {
    background: #d81b60;
    transform: scale(1.02);
}


.m3-tabs-nav {
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    z-index: 20;
    width: 100%;

}

.tabs-premium-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);

    background: #ffffff;
    display: inline-flex;
    border-radius: 50px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    padding: 6px;
    white-space: nowrap;
}


.section-planos {

    background-color: #0d0d12;
    margin-top: 0 !important;
    padding-top: 80px;
    padding-bottom: 60px;
    position: relative;
    z-index: 5;

    transition: background-image 0.8s ease;
}


.section-planos:has(.tema-fibra) {
    background-image: radial-gradient(50% 40% at top center, rgba(0, 229, 255, 0.15) 0%, rgba(0, 229, 255, 0) 100%);
}


.section-planos:has(.tema-movel) {
    background-image: radial-gradient(50% 40% at top center, rgba(255, 42, 117, 0.15) 0%, rgba(255, 42, 117, 0) 100%);
}


.hero-premium {

    background-color: #0d0d12;
    position: relative;
}


.hero-bg {
    position: absolute;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;


    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}


.btn-central,
.btn-central:hover,
.btn-central:focus,
.btn-central .material-icons-outlined {
    text-decoration: none !important;

    border-bottom: none !important;

    box-shadow: none !important;

    outline: none !important;
}


.btn-central {
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;

}