* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    background-attachment: fixed;
    color: #EAEAFB;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
}

.header {
    padding: 25px 0;
    background-color: transparent;
    position: relative;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    text-decoration: none;
    color: #EAEAFB;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #CC0000;
    text-shadow: 0 0 10px rgba(204, 0, 0, 0.8);
}

.highlight-red {
    color: #CC0000;
    text-shadow: 0 0 15px rgba(204, 0, 0, 0.5);
}

#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: auto;
    padding: 10vh 0;
}

#hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-illustration {
    margin-bottom: 30px;
}

.illustration-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(204, 0, 0, 0.4));
}


.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    color: #A9A9A9;
    max-width: 500px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.about-page .text-block {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 0 10px;
}

.about-page .text-block p {
    max-width: 100%;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: #dcdcdc;
}

.about-page .quote-container {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-icon {
    width: 48px;
    height: 48px;
    color: #CC0000;
    margin-bottom: 15px;
    display: block;
}

.about-page .quote-container blockquote {
    font-style: italic;
    font-size: 1.4rem;
    color: #fff;
    font-weight: 300;
}

.cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-hero {
    padding: 60px 0 20px 0;
    text-align: center;
}

.services-section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
    flex-wrap: wrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title i {
    color: #CC0000;
    text-shadow: 0 0 15px rgba(204, 0, 0, 0.6);
}

.section-subtitle {
    color: #A9A9A9;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.intro-text {
    color: #A9A9A9;
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: left;
}

#services-scope .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 20px 20px 40px 20px;
    width: 100%;
    overflow-x: visible;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: auto;
    scrollbar-width: auto;
    -ms-overflow-style: auto;
    justify-content: center;
}

#services-scope .plans-grid>div {
    flex: none;
    scroll-snap-align: none;
}

@media (max-width: 768px) {
    #services-scope .plans-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        overflow-x: visible;
        scroll-snap-type: none;
        -webkit-overflow-scrolling: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: center;
        padding: 20px 20px 40px 20px;
    }

    #services-scope .plans-grid>div {
        width: auto;
        flex: none;
    }
}


#services-scope .plan-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-width: unset;
    max-width: unset;
    flex: 1 1 auto;
    scroll-snap-align: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#services-scope .plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(204, 0, 0, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(204, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.06);
    z-index: 2;
}

#services-scope .plan-card.featured {
    border-color: #CC0000;
    background: linear-gradient(160deg, rgba(204, 0, 0, 0.08) 0%, rgba(20, 20, 20, 0.6) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(204, 0, 0, 0.1);
}

#services-scope .plan-card.featured:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(204, 0, 0, 0.2);
}

.badge {
    position: absolute;
    top: 16px;
    right: -50px;
    width: 190px;
    background: #CC0000;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.plan-icon {
    font-size: 2.8rem;
    color: #888;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

#services-scope .plan-card:hover .plan-icon {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.plan-speed {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 0.9;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.plan-speed .unit {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #CC0000;
    letter-spacing: 3px;
    margin-top: 10px;
    text-transform: uppercase;
}

.plan-features {
    list-style: none;
    margin-bottom: 35px;
    padding: 0;
    width: 100%;
}

.plan-features li {
    margin-bottom: 12px;
    color: #d1d1d1;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.plan-features li i {
    color: #CC0000;
    font-size: 0.9rem;
}

.cta-button {
    display: inline-block;
    background-color: #CC0000;
    color: #ffffff;
    padding: 16px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid #CC0000;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #990000;
    border-color: #990000;
    box-shadow: 0 0 25px rgba(204, 0, 0, 0.5);
    transform: translateY(-2px);
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: #EAEAFB;
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 16px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secondary-button:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.plan-btn {
    width: 100%;
    display: block;
}

.plans-disclaimer {
    text-align: center;
    margin-top: 10px;
    color: #888;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.plans-disclaimer strong {
    color: #EAEAFB;
}

.plans-disclaimer .small-note {
    color: #666;
    font-size: 0.85rem;
    margin-top: 8px;
    font-style: italic;
}

.monitor-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
    position: relative;
    padding-top: 20px;
}

.monitor-info {
    width: 100%;
}

.monitor-cta-box {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 40px 30px;
    border-radius: 20px;
    position: sticky;
    top: 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.monitor-cta-box h3 {
    color: #fff;
    margin: 25px 0 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.monitor-cta-box p {
    color: #999;
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 25px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #333;
    transition: 0.4s ease;
}

.feature-item:hover {
    border-left-color: #CC0000;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    transform: translateX(10px);
}

.f-icon {
    font-size: 2.2rem;
    color: #CC0000;
    min-width: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 5px;
    filter: drop-shadow(0 0 10px rgba(204, 0, 0, 0.3));
}

.f-text h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.f-text p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
}

.alert-box {
    background: rgba(204, 0, 0, 0.08);
    border: 1px solid rgba(204, 0, 0, 0.2);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.alert-box i {
    color: #CC0000;
    font-size: 1.8rem;
    margin-bottom: 12px;
    display: block;
}

.alert-box h4 {
    color: #CC0000;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.alert-box p {
    color: #ffcece;
    font-size: 0.9rem;
    line-height: 1.5;
}

.divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 40px 0;
    width: 100%;
}

.full-width {
    width: 100%;
}

.footer {
    background-color: transparent;
    color: #666;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
}

.footer .instagram-link {
    color: #EAEAFB;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.footer .instagram-link:hover {
    color: #CC0000;
}

/* ATUALIZAÇÃO DA GRADE DE CONTATO */
.contact-grid {
    display: grid;
    /* Define explicitamente 2 colunas iguais em telas largas */
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    width: 100%;
    margin-top: 40px;
    /* Opcional: limita a largura para não esticar muito em telas grandes e centraliza */
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card h3 {
    color: #fff;
    margin: 15px 0 5px;
    font-size: 1.2rem;
}

.contact-card span {
    color: #A9A9A9;
    font-size: 0.95rem;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-card.highlight-card {
    border: 2px solid #CC0000;
    background: linear-gradient(145deg, rgba(204, 0, 0, 0.15) 0%, rgba(20, 20, 20, 0.8) 100%);
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.2);
    transform: scale(1.02);
}

.contact-card.highlight-card:hover {
    box-shadow: 0 0 30px rgba(204, 0, 0, 0.5);
    transform: scale(1.05) translateY(-5px);
    border-color: #ff3333;
}

.contact-card.highlight-card .quote-icon {
    color: #fff;
    background: #CC0000;
    border-radius: 50%;
    padding: 10px;
    width: 54px;
    height: 54px;
}

.highlight-text {
    color: #fff !important;
    font-weight: bold;
    margin-top: 5px;
    display: block;
}

@media (max-width: 1024px) {
    .monitor-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .monitor-cta-box {
        position: relative;
        top: 0;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* AQUI É ONDE A MÁGICA ACONTECE PARA 1 COLUNA NO MOBILE */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }

    #services-scope .plan-card {
        min-width: unset;
        margin-right: 0;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 25px 20px;
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }

    .f-icon {
        margin-bottom: 10px;
    }

    .intro-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .plan-speed {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

#whatsapp-invite-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.wa-card {
    background-color: #1f1f1f;
    border: 1px solid #333;
    border-radius: 24px;
    max-width: 450px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.wa-header {
    display: flex;
    align-items: center;
    padding: 25px;
    background-color: #252525;
    border-bottom: 1px solid #333;
}

.wa-profile-pic-container {
    position: relative;
    margin-right: 20px;
}

.wa-profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #25D366;
}

.wa-info h1 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 5px 0;
    font-weight: 700;
    line-height: 1.2;
}

.wa-info span {
    color: #25D366;
    font-size: 0.95rem;
    font-weight: 500;
}

.wa-body-text {
    padding: 30px 25px;
    color: #dcdcdc;
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: left;
}

.wa-body-text p {
    margin-bottom: 20px;
}

.wa-body-text p:last-child {
    margin-bottom: 0;
}

.wa-actions {
    padding: 0 25px 35px 25px;
}

.wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background-color: #25D366;
    color: #fff;
    font-weight: 700;
    padding: 14px 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.wa-btn:hover {
    background-color: #1dbf57;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Classe para controlar o tamanho da imagem PNG do botão */
.wa-btn-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.wa-link-note {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 480px) {
    .wa-card {
        border-radius: 0;
        border: none;
        background: transparent;
        box-shadow: none;
    }

    .wa-header {
        background: transparent;
        flex-direction: column;
        text-align: center;
        border: none;
    }

    .wa-profile-pic-container {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .wa-profile-pic {
        width: 100px;
        height: 100px;
    }

    .wa-body-text {
        text-align: center;
        padding-top: 10px;
    }
}

/* Estilo do Menu de Navegação */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    nav {
        position: static;
    }

    .header .container {
        position: relative;
        z-index: 1002;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: #EAEAFB;
        cursor: pointer;
        padding: 8px 16px;
        margin-left: auto;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1002;
        gap: 12px;
    }

    .menu-toggle .menu-icon {
        font-size: 1.8rem;
        line-height: 1;
        display: flex;
        align-items: center;
    }

    .menu-toggle .menu-text {
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding-top: 2px;
    }

    .menu-toggle:active {
        transform: scale(0.95);
        background-color: rgba(204, 0, 0, 0.1);
        border-color: #CC0000;
    }

    .menu-toggle[aria-expanded="true"] {
        color: #CC0000;
        border-color: #CC0000;
        text-shadow: 0 0 15px rgba(204, 0, 0, 0.6);
    }

    #nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.4s ease, visibility 0.4s;
        z-index: 1001;
    }

    #nav-list.active {
        visibility: visible;
        opacity: 1;
    }

    #nav-list li {
        width: 100%;
        text-align: center;
        margin: 15px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    #nav-list.active li {
        opacity: 1;
        transform: translateY(0);
    }

    #nav-list.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    #nav-list.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    #nav-list.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    #nav-list.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    #nav-list.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    #nav-list a {
        display: inline-block;
        font-size: 1.5rem;
        font-weight: 600;
        color: #EAEAFB;
        text-decoration: none;
        position: relative;
        padding: 10px 20px;
        transition: color 0.3s ease;
    }

    #nav-list a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background-color: #CC0000;
        transition: all 0.3s ease;
        box-shadow: 0 0 10px #CC0000;
    }

    #nav-list a:hover,
    #nav-list a:active {
        color: #fff;
        text-shadow: 0 0 10px rgba(204, 0, 0, 0.5);
    }

    #nav-list a:hover::after,
    #nav-list a:active::after {
        width: 100%;
        left: 0;
    }
}