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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #050814;
    color: #ffffff;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 92px;
    padding: 0 8%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(5, 8, 20, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-img {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1100;
}

.logo-img img {
    width: 125px;
    height: auto;
    display: block;
    object-fit: contain;
    image-rendering: auto;
}

/* MENU */

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    position: relative;
    z-index: 1200;
    width: 34px;
    height: 26px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: #ffffff;
    transition: 0.3s ease;
}

.menu-overlay {
    display: none;
}

.nav {
    display: flex;
    gap: 34px;
}

.nav a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #d8dcff;
    font-weight: 700;
    transition: 0.3s ease;
}

.nav a:hover {
    color: #8f7cff;
}

/* HERO */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 146px 8% 90px;
    overflow: hidden;
    background: #050814;
}

.hero-image {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg,
            rgba(5, 8, 20, 0.96) 0%,
            rgba(5, 8, 20, 0.86) 30%,
            rgba(5, 8, 20, 0.52) 55%,
            rgba(5, 8, 20, 0.18) 100%),
        radial-gradient(circle at 75% 35%, rgba(123, 92, 255, 0.22), transparent 38%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 620px;
}

.eyebrow,
.section-title span {
    display: inline-block;
    color: #8f7cff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 800;
}

.hero h1 {
    margin-top: 22px;
    font-size: clamp(44px, 5vw, 74px);
    line-height: 1;
    letter-spacing: -3px;
}

.hero p {
    margin-top: 28px;
    max-width: 560px;
    color: #d8dcff;
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 42px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* BOTÕES */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 800;
    transition: 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #5d6dff, #9b5cff);
    box-shadow: 0 0 35px rgba(123, 92, 255, 0.38);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 55px rgba(123, 92, 255, 0.55);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* SECÇÕES */

.section {
    padding: 105px 8%;
}

.section-title {
    max-width: 780px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-title h2 {
    margin-top: 16px;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.section-title p {
    margin-top: 18px;
    color: #aeb4d4;
    line-height: 1.75;
    font-size: 17px;
}

/* SERVIÇOS */

.services-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(0, 217, 255, 0.16), transparent 32%),
        radial-gradient(circle at 82% 28%, rgba(155, 92, 255, 0.22), transparent 34%),
        linear-gradient(180deg, #050814, #080c1d);
}

.services-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 180deg,
            transparent,
            rgba(0, 217, 255, 0.35),
            rgba(123, 92, 255, 0.55),
            transparent);
    filter: blur(95px);
    opacity: 0.42;
}

.services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.service-card {
    position: relative;
    min-height: 330px;
    padding: 38px;
    border-radius: 26px;
    text-align: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    background-size: cover;
    background-repeat: no-repeat;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(130deg,
            transparent 8%,
            rgba(0, 217, 255, 0.65),
            rgba(123, 92, 255, 0.95),
            transparent 92%);
    opacity: 0;
    transition: 0.35s ease;
    z-index: -1;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(5, 8, 20, 0.10) 0%,
            rgba(5, 8, 20, 0.24) 45%,
            rgba(5, 8, 20, 0.48) 100%);
}

.service-content {
    position: relative;
    z-index: 2;
    max-width: 420px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #ffffff;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 0 18px rgba(0, 0, 0, 0.55);
}

.service-card p {
    color: #ffffff;
    line-height: 1.75;
    font-size: 16px;
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.85),
        0 0 18px rgba(0, 0, 0, 0.65);
}

.service-vr {
    background-image: url("assets/VR.png");
    background-position: center center;
}

.service-marcas {
    background-image: url("assets/Divulgacao_Marcas.png");
    background-position: center center;
}

.service-eventos {
    background-image: url("assets/cobertura_eventos.png");
    background-position: center center;
}

.service-card:hover {
    transform: translateY(-9px);
    border-color: rgba(143, 124, 255, 0.75);
    box-shadow:
        0 0 35px rgba(123, 92, 255, 0.35),
        0 0 80px rgba(0, 217, 255, 0.12);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    background:
        linear-gradient(180deg,
            rgba(5, 8, 20, 0.06) 0%,
            rgba(5, 8, 20, 0.18) 45%,
            rgba(5, 8, 20, 0.38) 100%);
}

/* METODOLOGIA */

.method-section {
    background: #050814;
}

.method-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.method-card {
    min-height: 300px;
    padding: 34px 26px;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.35s ease;
}

.method-card:hover {
    transform: translateY(-9px);
    border-color: rgba(143, 124, 255, 0.75);
    box-shadow:
        0 20px 65px rgba(123, 92, 255, 0.2),
        inset 0 0 30px rgba(123, 92, 255, 0.08);
}

.method-icon {
    font-size: 38px;
    margin-bottom: 18px;
}

.method-card small {
    color: #8f7cff;
    font-size: 28px;
    font-weight: 900;
}

.method-card h3 {
    margin: 18px 0 14px;
    font-size: 23px;
}

.method-card p {
    color: #aeb4d4;
    line-height: 1.7;
    font-size: 15px;
}

/* CONTACTOS */

.contact-section {
    background:
        radial-gradient(circle at 85% 30%, rgba(123, 92, 255, 0.22), transparent 35%),
        linear-gradient(180deg, #080c1d, #050814);
}

.contact-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-content h2 {
    margin-top: 16px;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.05;
}

.contact-content p {
    margin-top: 20px;
    color: #aeb4d4;
    line-height: 1.75;
    font-size: 17px;
}

.contact-info {
    margin-top: 32px;
}

.form {
    display: grid;
    gap: 16px;
    padding: 36px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
}

.form input,
.form select,
.form textarea {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(5, 8, 20, 0.88);
    color: #ffffff;
    outline: none;
    font-size: 15px;
}

.form select option {
    background: #080c1d;
    color: #ffffff;
}

.form textarea {
    min-height: 135px;
    resize: vertical;
}

.form input::placeholder,
.form textarea::placeholder {
    color: #8c91aa;
}

.form button {
    padding: 16px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #5d6dff, #9b5cff);
    color: #ffffff;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s ease;
}

.form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(123, 92, 255, 0.45);
}

/* FOOTER */

.footer {
    padding: 34px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #8c91aa;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    background: #050814;
}

/* RESPONSIVO - MENU LATERAL ATÉ 1200PX */

@media (max-width: 1200px) {
    .header {
        height: 82px;
        padding: 0 6%;
    }

    .logo-img {
        z-index: 1000;
    }

    .logo-img img {
        width: 145px;
    }

    .menu-icon {
        display: flex !important;
        width: 32px;
        height: 24px;
        z-index: 1300;
    }

    .menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1150;
        background: rgba(0, 0, 0, 0.72);
        opacity: 0;
        pointer-events: none;
        transition: 0.35s ease;
    }

    .nav {
        position: fixed !important;
        top: 0;
        right: 0;
        z-index: 1200;
        width: min(84vw, 360px);
        height: 100vh;
        padding: 110px 32px 40px;
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        background:
            radial-gradient(circle at top right, rgba(123, 92, 255, 0.28), transparent 45%),
            #050814;
        border-left: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: -30px 0 90px rgba(0, 0, 0, 0.75);
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
        transition: 0.35s ease;
    }

    .nav a {
        width: 100%;
        padding: 14px 0;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 1.8px;
        color: #ffffff;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    #menu-toggle:checked~.nav {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    #menu-toggle:checked~.menu-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    #menu-toggle:checked+.menu-icon span:nth-child(1) {
        transform: translateY(10.5px) rotate(45deg);
    }

    #menu-toggle:checked+.menu-icon span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked+.menu-icon span:nth-child(3) {
        transform: translateY(-10.5px) rotate(-45deg);
    }

    .hero {
        min-height: 100vh;
        padding: 130px 6% 80px;
        align-items: center;
    }

    .hero-content {
        max-width: 560px;
    }

    .hero h1 {
        font-size: clamp(42px, 6vw, 66px);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

/* RESPONSIVO - TABLETS E TELEMÓVEIS */

@media (max-width: 800px) {
    .hero {
        padding: 120px 6% 70px;
    }

    .hero::before {
        background:
            linear-gradient(180deg,
                rgba(5, 8, 20, 0.94) 0%,
                rgba(5, 8, 20, 0.82) 45%,
                rgba(5, 8, 20, 0.62) 100%);
    }

    .hero-image img {
        object-position: 68% center;
    }

    .hero h1 {
        font-size: clamp(40px, 10vw, 58px);
        line-height: 1.02;
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-actions {
        gap: 14px;
    }

    .section {
        padding: 85px 6%;
    }

    .section-title {
        margin-bottom: 42px;
    }

    .section-title h2 {
        font-size: clamp(32px, 8vw, 48px);
    }

    .section-title p {
        font-size: 16px;
    }

    .services-grid,
    .method-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 310px;
        padding: 30px;
    }

    .method-card {
        min-height: auto;
        padding: 32px 24px;
    }

    .contact-content h2 {
        font-size: clamp(32px, 8vw, 48px);
    }

    .form {
        padding: 28px;
    }

    .footer {
        text-align: center;
        justify-content: center;
    }
}

/* Mensagens do formulário */
.form-status {
    display: none;
    width: 100%;
    margin-bottom: 18px;
}

.form-status p {
    margin: 0;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.92rem;
    line-height: 1.5;
}

.success-message {
    display: none;
    color: #d9ffe9;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.35);
}

.error-message {
    display: none;
    color: #ffe2e2;
    background: rgba(239, 68, 68, 0.14);
    border: 1px solid rgba(239, 68, 68, 0.35);
}

.form-status.show-success,
.form-status.show-error {
    display: block;
}

.form-status.show-success .success-message {
    display: block;
}

.form-status.show-error .error-message {
    display: block;
}

/* Campo invisível anti-spam */
.hidden-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* RGPD melhorado */
.rgpd-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    margin: 4px 0 8px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.rgpd-check:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(139, 92, 246, 0.45);
}

.rgpd-check input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #8b5cf6;
    cursor: pointer;
    flex: 0 0 auto;
}

.rgpd-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rgpd-box strong {
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 700;
}

.rgpd-box small {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    line-height: 1.5;
}

.rgpd-box a {
    color: #a78bfa;
    font-weight: 700;
    text-decoration: none;
}

.rgpd-box a:hover {
    color: #c4b5fd;
    text-decoration: underline;
}

/* Página Política de Privacidade */
.privacy-page {
    min-height: 100vh;
    padding: 140px 7% 80px;
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, 0.22), transparent 35%),
        radial-gradient(circle at bottom right, rgba(6, 182, 212, 0.14), transparent 35%),
        #080914;
    color: #ffffff;
}

.privacy-hero {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.privacy-hero h1 {
    margin: 14px 0 16px;
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    line-height: 1;
}

.privacy-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.privacy-content {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.privacy-content article {
    padding: 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.privacy-content h2 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.privacy-content p,
.privacy-content li {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.privacy-content ul {
    margin-top: 10px;
    padding-left: 22px;
}

.privacy-content a {
    color: #a78bfa;
    font-weight: 700;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.privacy-back {
    margin-top: 24px;
    text-align: center;
}


/* RESPONSIVO - TELEMÓVEIS */

@media (max-width: 520px) {
    .header {
        height: 74px;
        padding: 0 5%;
    }

    .logo-img img {
        width: 125px;
    }

    .menu-icon {
        width: 30px;
        height: 23px;
    }

    .nav {
        width: 82%;
        padding: 100px 28px 40px;
    }

    #menu-toggle:checked~.menu-overlay {
        opacity: 1;
    }

    .hero {
        min-height: 100vh;
        padding: 120px 5% 70px;
    }

    .hero-image img {
        object-position: 68% center;
    }

    .hero::before {
        background:
            linear-gradient(180deg,
                rgba(5, 8, 20, 0.70) 0%,
                rgba(5, 8, 20, 0.68) 45%,
                rgba(5, 8, 20, 0.78) 100%),
            linear-gradient(90deg,
                rgba(5, 8, 20, 0.88) 0%,
                rgba(5, 8, 20, 0.62) 58%,
                rgba(5, 8, 20, 0.35) 100%);
    }

    .eyebrow,
    .section-title span {
        font-size: 11px;
        letter-spacing: 2.2px;
    }

    .hero h1 {
        margin-top: 18px;
        font-size: 37px;
        line-height: 1.03;
        letter-spacing: -2px;
    }

    .hero p {
        margin-top: 22px;
        font-size: 15.5px;
        line-height: 1.65;
    }

    .hero-actions {
        margin-top: 32px;
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
    }

    .section {
        padding: 70px 5%;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .section-title p {
        font-size: 15.5px;
    }

    .service-card {
        min-height: 280px;
        border-radius: 22px;
        padding: 26px;
    }

    .service-card h3 {
        font-size: 23px;
    }

    .service-card p {
        font-size: 15px;
        line-height: 1.65;
    }

    .method-card {
        border-radius: 22px;
    }

    .method-icon {
        font-size: 34px;
    }

    .method-card small {
        font-size: 24px;
    }

    .method-card h3 {
        font-size: 22px;
    }

    .contact-content h2 {
        font-size: 34px;
    }

    .contact-content p {
        font-size: 15.5px;
    }

    .form {
        padding: 22px;
        border-radius: 22px;
    }

    .form input,
    .form select,
    .form textarea {
        padding: 14px;
        font-size: 14px;
    }

    .footer {
        padding: 26px 5%;
        font-size: 14px;
    }

    .rgpd-check {
        padding: 12px;
    }

    .privacy-page {
        padding: 120px 20px 60px;
    }

    .privacy-content article {
        padding: 20px;
    }
}

/* RESPONSIVO - TELEMÓVEIS MUITO PEQUENOS */

@media (max-width: 380px) {
    .hero h1 {
        font-size: 34px;
    }

    .section-title h2,
    .contact-content h2 {
        font-size: 30px;
    }

    .service-card {
        padding: 22px;
    }
}