* {
    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;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    margin-top: 40px;
}

.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;
    }

    .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;
    }

    /* ESSA REGRA FOI REMOVIDA/AJUSTADA PARA A ADAPTAÇÃO CORRETA: */
    #services-scope .plan-card {
        min-width: unset;
        /* Remove min-width problemático */
        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;
    }
}