@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: Montserrat, sans-serif;
}

body {
    background: #0f0f1e;
    color: #f8fbf8; 
    font-size: 1rem;
    overflow-x: hidden;
    overflow-y: auto;
}

header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    padding: 30px 50px;
    display: flex;
    align-items: center;
    gap: 28px;
    z-index: 3;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1px;
    cursor: pointer;
    /*color: #00f7ff;*/
    color: #f8fbf8;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.logo-text {
    font-family: Teko, sans-serif;
    font-size: 2rem;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
    border-radius: 10%;
    cursor: pointer;
}

header nav ul {
    display: flex;
    gap: 48px;
}

header nav ul li {
    cursor: pointer;
    position: relative;
    padding: 5px 0;
}

.nav-link {
    color: inherit;
    text-decoration: none;
}

header nav ul li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #00f7ff;
    transition: width 0.3s ease;
}

header nav ul li:hover::after {
    width: 100%;
}    

.header-actions {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
}

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

.social-menu {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.social-link {
    --social-accent: #00f7ff;
    position: relative;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: #f8fbf8;
    background: rgba(248, 251, 248, 0.08);
    border: 1px solid rgba(0, 247, 255, 0.18);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.35s ease, color 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.social-link i {
    font-size: 1.05rem;
}

.social-link.whatsapp {
    --social-accent: #25d366;
}

.social-link.instagram {
    --social-accent: #ff6fb5;
}

.social-link.linkedin {
    --social-accent: #60a5fa;
}

.social-link.youtube {
    --social-accent: #ff6b6b;
}

.social-tooltip {
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    transform: translate(-50%, -10px);
    padding: 8px 12px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #061421;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.social-tooltip::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent;
}

.social-link.whatsapp .social-tooltip {
    background: linear-gradient(135deg, #c2ffd8, #25d366);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.3);
}

.social-link.whatsapp .social-tooltip::after {
    border-bottom-color: #25d366;
}

.social-link.instagram .social-tooltip {
    background: linear-gradient(135deg, #ffd1e8, #ff6fb5);
    box-shadow: 0 12px 25px rgba(255, 111, 181, 0.28);
}

.social-link.instagram .social-tooltip::after {
    border-bottom-color: #ff6fb5;
}

.social-link.linkedin .social-tooltip {
    background: linear-gradient(135deg, #d6ecff, #60a5fa);
    box-shadow: 0 12px 25px rgba(96, 165, 250, 0.28);
}

.social-link.linkedin .social-tooltip::after {
    border-bottom-color: #60a5fa;
}

.social-link.youtube .social-tooltip {
    background: linear-gradient(135deg, #ffd3d3, #ff6b6b);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.28);
}

.social-link.youtube .social-tooltip::after {
    border-bottom-color: #ff6b6b;
}

.social-link:hover,
.social-link:focus-visible {
    transform: translateY(6px);
    color: var(--social-accent);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(0, 247, 255, 0.45);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3), 0 0 24px rgba(0, 247, 255, 0.14);
}

.social-link:hover .social-tooltip,
.social-link:focus-visible .social-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.policy-page {
    position: relative;
    min-height: 100vh;
    padding: 150px 50px 70px;
    background: linear-gradient(135deg, #0f0f1e 0%, #1b1f3f 52%, #11152b 100%);
    overflow: hidden;
}

.policy-page::before {
    content: '';
    position: absolute;
    inset: 110px auto auto 50%;
    width: 560px;
    height: 560px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.14) 0%, rgba(15, 15, 30, 0) 72%);
    pointer-events: none;
}

.policy-shell {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.policy-hero {
    max-width: 760px;
    margin-bottom: 28px;
}

.policy-eyebrow {
    margin-bottom: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #00f7ff;
}

.policy-title {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    line-height: 1;
    margin-bottom: 14px;
}

.policy-updated {
    font-size: 1rem;
    color: #b8b8d0;
}

.policy-card {
    padding: 38px 40px;
    border-radius: 32px;
    border: 1px solid rgba(0, 247, 255, 0.16);
    background: rgba(12, 18, 37, 0.72);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.policy-intro,
.policy-section p,
.policy-list li {
    color: #c5c8dc;
    line-height: 1.8;
}

.policy-intro + .policy-intro {
    margin-top: 16px;
}

.policy-section + .policy-section {
    margin-top: 28px;
}

.policy-section h2,
.policy-section h3 {
    font-family: "Orbitron", sans-serif;
}

.policy-section h2 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #00f7ff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.policy-section h3 {
    margin: 18px 0 10px;
    font-size: 0.92rem;
    color: #f8fbf8;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.policy-list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
    padding-left: 18px;
}

.policy-list li {
    list-style: disc;
}

.policy-links a {
    color: #8cecff;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.policy-links a:hover,
.policy-links a:focus-visible {
    color: #00f7ff;
    text-shadow: 0 0 12px rgba(0, 247, 255, 0.28);
}

.container {
    height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #0f0f1e 0%, #1f1f3a 100%);
    overflow: hidden;
}

.container::before {
    content: '';
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.2) 0%, rgba(15, 15, 30, 0) 70%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(50%);
    z-index: 1;
    animation: pulse 2s infinite alternate;

    pointer-events: none;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }

}

.list {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.item {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;

    /*ANIMACAO*/
    transform: translateX(100vw);
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
}

.active {
    opacity: 1;
    transform: translateX(0);
}

.product-img {
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.product-img img {
    max-width: 80%;
    max-height: 60%;
    filter: drop-shadow(0 0 30px rgba(0, 247, 255, 0.3));

    /*ANIMACAO*/
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
}

.active .product-img img {
    transform: translateX(0);
    opacity: 1;
}

.content {
    width: 55%;
    padding-right: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 2;
    flex-direction: column;
}

.brand-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-image {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: -18px;

    /* ANIMACAO */
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.8s;
}

.active .content-image {
    transform: translateX(0);
    opacity: 1;
}

.content-image img {
    width: 320px;
    height: auto;
    display: block;
    
}

.product-tag {
    font-size: 1rem;
    text-transform: uppercase;
    color: #00f7ff;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    
    /*ANIMACAO*/
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.4s;
}

.active .product-tag {
    transform: translateX(0);
    opacity: 1;
}

.product-name {
    font-size: 4.5rem;
    font-family: "Orbitron", sans-serif;
    line-height: 1.1;
    margin-bottom: 0;
    font-weight: 600;
 
    /*ANIMACAO*/
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.7s;
}

.active .product-name {
    transform: translateX(0);
    opacity: 1;
}


.description {
    font-size: 1.1rem;
    color: #b8b8d0;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;

    /*ANIMACAO*/
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.4s;
}

.active .description {
    transform: translateX(0);
    opacity: 1;
}

.btn {
    padding: 12px 16px;
    background: linear-gradient(90deg, #00f7ff, #0066ff);
    border-radius: 30px;
    color: #000;
    font-family: "Orbitron", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border: none;

    position: relative;
    z-index: 10;

    /* ANIMACAO */
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.6s;
}

.active .btn {
    transform: translateX(0);
    opacity: 1;
}

.btn:hover {
    transform: translateX(0) translateY(-2px);
    background: linear-gradient(90deg, #2ffcff, #1b7cff);
    box-shadow: 0 8px 24px rgba(0, 247, 255, 0.28);
}

.btn:active {
    transform: translateX(0) translateY(0);
    box-shadow: 0 4px 12px rgba(0, 247, 255, 0.18);
}

.arrows {
    position: absolute;
    width: 90%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.arrows-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 247, 255, 0.3);
}

.arrows-btn:hover {
    background-color: rgba(0, 247, 255, 0.2);
    border-color: #00f7ff;
}

.arrows-btn:active {
    transform: scale(0.92);
    background-color: rgba(0, 247, 255, 0.35);
    border-color: #00f7ff;
    box-shadow: inset 0 0 12px rgba(0, 247, 255, 0.35);
}

.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-area: 15px;
    z-index: 5;
}

.numbers {
    font-family: "Orbitron", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 20px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.dot.active {
    background-color: #00f7ff;
    box-shadow: rgba(0, 247, 255, 0.5);
}

.site-footer {
    position: relative;
    padding: 56px 50px 28px;
    background:
        linear-gradient(180deg, rgba(15, 15, 30, 0.94) 0%, rgba(11, 17, 33, 1) 100%);
    border-top: 1px solid rgba(0, 247, 255, 0.16);
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 50%;
    width: 420px;
    height: 420px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(0, 247, 255, 0.14) 0%, rgba(15, 15, 30, 0) 70%);
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-brand img {
    width: 62px;
    height: auto;
    margin-bottom: 16px;
}

.footer-brand h2,
.footer-column h3 {
    font-family: "Orbitron", sans-serif;
}

.footer-brand h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.footer-brand p,
.footer-column ul li,
.footer-bottom p {
    color: #b8b8d0;
    line-height: 1.7;
}

.footer-bottom a {
    color: #b8b8d0;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: #00f7ff;
    text-shadow: 0 0 12px rgba(0, 247, 255, 0.35);
}

.footer-column h3 {
    margin-bottom: 14px;
    font-size: 1rem;
    color: #00f7ff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-column ul {
    display: grid;
    gap: 8px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 36px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.tech-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 247, 255, 0.2);
}

.circle:nth-child(1){
    width: 150px;
    height: 150px;
    top: 15%;
    left: 10%;
}

.circle:nth-child(2){
    width: 80px;
    height: 80px;
    top: 70%;
    left: 80%;
}

.circle:nth-child(3){
    width: 20px;
    height: 20px;
    top: 80%;
    left: 85%;
}

.circle:nth-child(4){
    width: 30px;
    height: 30px;
    top: 15%;
    left: 88%;
}

.circle:nth-child(5){
    width: 130px;
    height: 130px;
    top: 70%;
    left: 20%;
}

@media (max-width: 1024px) {
    body {
        overflow-x: hidden;
        overflow-y: auto;
    }

    header {
        width: 100%;
        padding: 24px 32px;
        gap: 24px;
    }

    .logo img {
        height: 38px;
    }

    .logo-text {
        font-size: 1.75rem;
    }

    .header-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 18px;
    }

    header nav ul {
        gap: 28px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-menu {
        gap: 10px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .policy-page {
        padding: 140px 32px 64px;
    }

    .policy-card {
        padding: 34px 32px;
    }

    .container {
        min-height: 100vh;
        height: auto;
        padding: 120px 0 110px;
    }

    .list {
        width: 88%;
    }

    .product-img {
        width: 42%;
    }

    .product-img img {
        max-width: 90%;
        max-height: 52%;
    }

    .content {
        width: 58%;
        padding-right: 24px;
    }

    .content-image img {
        width: min(280px, 100%);
    }

    .product-name {
        font-size: 3.6rem;
    }

    .description {
        font-size: 1rem;
        max-width: 520px;
    }

    .arrows {
        width: 96%;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        overflow-y: auto;
    }

    header {
        width: 100%;
        padding: 18px 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 14px;
    }

    .logo {
        gap: 8px;
    }

    .logo img {
        height: 34px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .header-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 16px;
    }

    header nav {
        width: 100%;
        justify-content: center;
    }

    header nav ul {
        gap: 14px 22px;
        justify-content: center;
        flex-wrap: wrap;
    }

    header nav ul li {
        font-size: 0.95rem;
    }

    .social-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-link {
        width: 42px;
        height: 42px;
    }

    .social-tooltip {
        display: none;
    }

    .policy-page {
        padding: 168px 20px 56px;
    }

    .policy-hero {
        margin-bottom: 22px;
    }

    .policy-card {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .policy-section + .policy-section {
        margin-top: 24px;
    }

    .container {
        min-height: 100vh;
        height: auto;
        padding: 150px 0 120px;
    }

    .list {
        width: 100%;
    }

    .item {
        flex-direction: column;
        justify-content: flex-start;
        gap: 18px;
        padding: 0 24px;
    }

    .product-img {
        width: 100%;
        height: auto;
        min-height: 220px;
        padding-top: 12px;
    }

    .product-img img {
        max-width: min(320px, 78vw);
        max-height: none;
    }

    .content {
        width: 100%;
        padding-right: 0;
        align-items: center;
        text-align: center;
    }

    .brand-signature {
        width: 100%;
    }

    .content-image {
        margin-top: -10px;
    }

    .content-image img {
        width: min(240px, 62vw);
    }

    .product-tag {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .product-name {
        font-size: 2.5rem;
    }

    .description {
        font-size: 0.98rem;
        line-height: 1.5;
        margin-bottom: 22px;
        max-width: 100%;
    }

    .btn {
        padding: 12px 20px;
    }

    .arrows {
        width: calc(100% - 24px);
        top: auto;
        bottom: 92px;
        transform: translateX(-50%);
    }

    .arrows-btn {
        width: 42px;
        height: 42px;
    }

    .indicators {
        bottom: 30px;
    }

    .numbers {
        font-size: 0.95rem;
    }

    .dots {
        gap: 8px;
    }

    .dot {
        width: 16px;
    }

    .site-footer {
        padding: 48px 24px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        margin-top: 28px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
        overflow-y: auto;
    }

    header {
        padding: 16px 14px;
        gap: 12px;
    }

    .logo img {
        height: 30px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .header-actions {
        gap: 12px;
    }

    header nav ul {
        gap: 10px 16px;
    }

    header nav ul li {
        font-size: 0.82rem;
    }

    .social-menu {
        gap: 8px;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .social-link i {
        font-size: 0.95rem;
    }

    .policy-page {
        padding: 156px 16px 44px;
    }

    .policy-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.16em;
    }

    .policy-card {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .policy-section h2 {
        font-size: 0.95rem;
    }

    .policy-section h3 {
        font-size: 0.82rem;
    }

    .container {
        padding: 140px 0 110px;
    }

    .item {
        gap: 14px;
        padding: 0 16px;
    }

    .product-img {
        min-height: 180px;
    }

    .product-img img {
        max-width: min(250px, 76vw);
    }

    .content-image img {
        width: min(200px, 58vw);
    }

    .product-tag {
        font-size: 0.76rem;
        letter-spacing: 1.2px;
    }

    .product-name {
        font-size: 1.95rem;
        line-height: 1.15;
    }

    .description {
        font-size: 0.92rem;
        margin-bottom: 18px;
    }

    .btn {
        width: 100%;
        max-width: 220px;
        font-size: 0.9rem;
        padding: 11px 16px;
    }

    .arrows {
        width: calc(100% - 16px);
        bottom: 86px;
    }

    .arrows-btn {
        width: 38px;
        height: 38px;
    }

    .indicators {
        bottom: 24px;
    }

    .numbers {
        font-size: 0.85rem;
    }

    .dots {
        gap: 6px;
    }

    .dot {
        width: 14px;
        height: 3px;
    }

    .site-footer {
        padding: 40px 16px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-brand h2 {
        font-size: 1.55rem;
    }

    .footer-column h3 {
        font-size: 0.92rem;
    }
}
