* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #02060d;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

.background-tech {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(2, 6, 13, 0.82), rgba(2, 6, 13, 0.95)),
        url("imagens/motherboard.png");
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    z-index: -2;
    animation: motherboardMove 25s infinite alternate;
    will-change: transform;
}

@keyframes motherboardMove {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}

.grid-tech {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(0, 120, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 120, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

.site-header {
    width: 100%;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 7%;
    background: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 140, 255, 0.18);
    position: sticky;
    top: 0;
    z-index: 20;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-full {
    height: 74px;
    width: auto;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.3px;
    transition: 0.25s;
}

nav a:hover {
    color: #3aa0ff;
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 70px 7% 30px;
}

.hero-text {
    max-width: 660px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #3aa0ff;
}

.hero-text h1 {
    font-size: 58px;
    line-height: 1.05;
    margin-bottom: 24px;
    color: #f6f8fb;
    max-width: 580px;
}

.hero-text p {
    font-size: 20px;
    color: #c4ced8;
    line-height: 1.65;
    max-width: 560px;
}

.hero-card {
    width: 390px;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.hero-card-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.shield {
    font-size: 54px;
    line-height: 1;
}

.hero-card h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #f4f7fb;
}

.hero-card p {
    color: #c5cbd1;
    font-size: 17px;
    line-height: 1.6;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 700;
    transition: 0.25s;
    padding: 15px 28px;
}

.btn-primary {
    margin-top: 32px;
    color: #fff;
    background: linear-gradient(135deg, #0078ff, #004080);
    box-shadow: 0 10px 25px rgba(0, 120, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(0, 140, 255, 0.5);
}

.btn-whatsapp {
    margin-top: 14px;
    background: linear-gradient(135deg, #17b84d, #0f8a38);
    color: #fff;
    padding: 14px 24px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
}

.section {
    padding: 68px 7%;
}

.section-title {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    margin-bottom: 36px;
}

.section-title span {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 140, 255, 0.7), transparent);
}

.section-title h2 {
    font-size: 36px;
    text-align: center;
    color: #f3f6fa;
}

.cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.card {
    min-height: 250px;
    padding: 28px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    transition: 0.28s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 140, 255, 0.55);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    line-height: 1;
    flex: 0 0 72px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.icon-emoji {
    font-size: 44px;
}

.icon-svg {
    padding: 6px;
}

.card h3 {
    color: #f4f7fb;
    font-size: 18px;
    line-height: 1.25;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.card p {
    color: #c5cbd1;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 18px;
}

.card-link {
    margin-top: auto;
    color: #3aa0ff;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    transition: 0.25s;
}

.card-link:hover {
    color: #72c2ff;
    transform: translateX(4px);
}

.benefits {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    padding: 24px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.benefit {
    text-align: center;
    padding: 8px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit:last-child {
    border-right: none;
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 8px;
    color: #0a63ff;
}

.benefit p {
    color: #edf2f7;
    font-size: 15px;
    line-height: 1.45;
}

.contact-box {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(0, 140, 255, 0.45);
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.contact-main {
    display: grid;
    grid-template-columns: 1.2fr 1px 1fr;
    gap: 24px;
    align-items: center;
    padding: 28px 28px 20px;
}

.contact-whatsapp,
.contact-location {
    display: flex;
    align-items: center;
    gap: 18px;
}

.whatsapp-badge,
.location-icon {
    width: 82px;
    height: 82px;
    min-width: 82px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0b63ff, #013ea6);
    box-shadow: 0 10px 25px rgba(0, 120, 255, 0.2);
    overflow: hidden;
    flex-shrink: 0;
}

.whatsapp-badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.location-icon-img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.location-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-label {
    color: #3aa0ff;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.location-text .contact-label {
    margin: 0 0 5px 0;
}

.contact-main h3 {
    font-size: 26px;
    color: #f7f9fc;
    line-height: 1.25;
    margin-bottom: 6px;
}

.location-text h3 {
    margin: 0;
    font-size: 24px;
}

.contact-separator {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    justify-self: center;
}

.contact-secondary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 0 28px 28px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(2, 8, 18, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: 0.25s;
}

.contact-link:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 140, 255, 0.5);
}

.contact-whatsapp-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex: 0 0 28px;
}

.contact-link strong {
    display: block;
    font-size: 18px;
    margin-bottom: 2px;
}

.contact-link small {
    display: block;
    color: #c5cbd1;
    font-size: 13px;
}

.site-footer {
    padding: 28px 7% 36px;
    text-align: center;
    color: #adb5bf;
    background: rgba(1, 3, 8, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.site-footer p {
    line-height: 1.7;
}

.site-footer p:first-child {
    color: #f5f7fb;
    font-weight: 700;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 13, 0.86);
    backdrop-filter: blur(7px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 100;
    padding: 20px;
}

.modal-overlay.ativo {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    position: relative;
    width: 500px;
    max-width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px 34px 34px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(10, 18, 30, 0.98), rgba(2, 6, 13, 0.98));
    border: 1px solid rgba(0, 140, 255, 0.28);
    box-shadow: 0 0 40px rgba(0, 120, 255, 0.25);
    transform: translateY(18px);
    transition: 0.3s;
}

.modal-overlay.ativo .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: none;
    background: none;
    color: #c5cbd1;
    font-size: 30px;
    cursor: pointer;
}

.modal-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
    display: grid;
    place-items: center;
    font-size: 48px;
}

.modal-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.modal-box h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #f5f7fb;
}

.modal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.modal-list li {
    position: relative;
    padding-left: 22px;
    color: #c5cbd1;
    line-height: 1.5;
}

.modal-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3aa0ff;
    font-weight: 800;
}

.modal-cta {
    width: 100%;
}

@media (max-width: 1180px) {
    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .site-header {
        flex-direction: column;
        gap: 14px;
        padding: 18px 18px 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 46px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 42px;
        max-width: 100%;
    }

    .hero-text p {
        margin: 0 auto;
        font-size: 18px;
    }

    .hero-card {
        width: 100%;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .benefit {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 14px;
    }

    .benefit:last-child {
        border-bottom: none;
    }

    .contact-main {
        grid-template-columns: 1fr;
    }

    .contact-separator {
        display: none;
    }

    .contact-secondary {
        grid-template-columns: 1fr;
    }

    .contact-main h3 {
        font-size: 22px;
    }

    .location-text h3 {
        font-size: 20px;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 56px 18px;
    }

    .hero {
        padding: 34px 18px 22px;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .logo-full {
        height: 60px;
    }

    .whatsapp-badge,
    .location-icon {
        width: 66px;
        height: 66px;
        min-width: 66px;
    }

    .location-icon-img {
        width: 46px;
        height: 46px;
    }

    .contact-main {
        padding: 22px 18px 16px;
    }

    .contact-secondary {
        padding: 0 18px 18px;
    }

    .modal-box {
        padding: 34px 22px 24px;
    }
}
