/* ======= ESTILOS BASE ======= */
:root {
    --color-background: #05151e;
    --color-primary: #007cc2;
    --color-secondary: #00a6ff;
    --color-accent: #00e5ff;
    --color-text: #ffffff;
    --color-text-secondary: #b0e0ff;
    --color-dark: #020a10;
    --font-main: 'Poppins', sans-serif;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-background);
    color: var(--color-text);
    font-size: 1.6rem;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 124, 194, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 229, 255, 0.03) 0%, transparent 30%);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230077cc' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

a {
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

section {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
}





.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    z-index: -1;
    transition: all 0.4s ease;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 166, 255, 0.4);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    color: #fff;
    background-color: var(--color-primary);
}

/* ======= HEADER E NAVEGAÇÃO ======= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    background: rgba(5, 21, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 124, 194, 0.1);
    transform: translateY(-100%);
    animation: slideDown 0.5s ease forwards;
}

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

.logo {
    width: 180px;
    position: relative;
}

.logo img {
    filter: drop-shadow(0 0 10px rgba(0, 166, 255, 0.3));
}

.nav-list {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.nav-list a {
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width 0.3s ease;
}

.nav-list a:hover::before {
    width: 100%;
}

.btn-nav {
    padding: 1rem 10rem;
    border-radius: 5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-3px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* ======= HERO SECTION ======= */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 12rem 0 6rem;
    position: relative;
    background: var(--color-dark);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 166, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 229, 255, 0.1) 0%, transparent 30%);
    z-index: 0;
}

.hero .container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Dá mais espaço para o vídeo */
    gap: 5rem;
    align-items: center;
}

.hero-content {
    position: relative;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.7s forwards;
    line-height: 1.6;
}

.hero .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-video {
    position: relative;
    padding: 2rem;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease 0.9s forwards;
    width: 100%;
    perspective: 1500px;
}

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}



.video-container video,
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    opacity: 1;
}

.video-overlay i {
    font-size: 4rem;
    color: #fff;
    opacity: 1;
}

/* Interface Section */
.interface {
    position: relative;
    padding: 6rem 0;
    background: var(--color-bg-alt);
    overflow: hidden;
}

.interface-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.interface-image {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.interface-image img {
    width: 100%;
    height: auto;
    display: block;
}



.interface-text {
    max-width: 500px;
}

.interface-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

/* Product Image Section */
.product-image-section {
    padding: 80px 0;
    text-align: center;
    background-color: #05151e;
}

.product-image-section img {
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 124, 194, 0.2);
}

.interface-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.interface-list i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* ======= Integração WinControl Section ======= */
.integracao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.integracao-image iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 15px;
    border: 0;
    box-shadow: 0 15px 35px rgba(0, 124, 194, 0.25);
}

/* Modal de Vídeo */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.video-modal video {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.1);
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-overlay:hover i {
    transform: scale(1.1);
    opacity: 1;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ======= BENEFÍCIOS SECTION ======= */
.benefits {
    background: var(--color-dark);
    padding: 10rem 0;
    position: relative;
    overflow: hidden; /* Added overflow hidden */
}

.benefits .section-title {
    text-align: center;
    margin-bottom: 6rem;
    color: #fff;
    font-size: 3.8rem; /* Levemente menor para elegância */
    font-weight: 600; /* Forte, mas não excessivamente pesado */
    letter-spacing: 0.5px; /* Sutil espaçamento */
    opacity: 0; /* Para animação fadeInUp */
    transform: translateY(20px); /* Para animação fadeInUp */
    animation: fadeInUp 1s ease forwards; /* Reaplicar animação se não herdada */
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03); /* Slightly more subtle base background */
    border-radius: 10px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle initial border */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    position: relative; /* Keep for potential future pseudo-elements if needed for other effects */
    overflow: hidden; /* Keep for potential future pseudo-elements */
}

.benefit-card:hover {
    transform: translateY(-6px) scale(1.01); /* Subtle lift and slight scale */
    background: rgba(255, 255, 255, 0.05); /* Slightly lighter on hover */
    box-shadow: 0 8px 25px rgba(0, 20, 30, 0.3); /* Softer, darker shadow for depth */
    border-color: var(--color-primary); /* Accent border on hover */
}

.benefit-icon {
    font-size: 3.5rem; /* Ajuste caso esteja usando ícones de fonte, ou ignore se for SVG/imagem */
    color: var(--color-primary);
    margin-bottom: 2rem;
    display: inline-block; /* Para aplicar transformações e transições */
    transition: transform 0.3s ease, color 0.3s ease;
    /* Se o ícone for um elemento com background, como antes, mantenha: */
    /* width: 70px; */ /* Levemente menor para elegância */
    /* height: 70px; */
    /* background: var(--color-primary); */
    /* border-radius: 50%; */
    /* display: flex; */ /* Se precisar centralizar algo dentro */
    /* align-items: center; */
    /* justify-content: center; */
    /* margin: 0 auto 2rem; */ /* Se for display: block ou flex */
}

/* Estilos para o título dentro do card de benefício */
.benefit-card h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-top: 0; /* Reset margin top */
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Estilos para o parágrafo dentro do card de benefício */
.benefit-card p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Efeito de hover no ícone quando o card está em hover */
.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(4deg); /* Leve aumento e rotação */
    color: var(--color-accent); /* Mudar para cor de destaque no hover */
    /* Se o ícone tiver background, pode mudar o background também: */
    /* background: var(--color-accent); */
}

.benefit-icon i {
    font-size: 3rem; /* Ajuste conforme o tamanho do seu ícone de fonte */
    /* A cor do ícone em si será herdada ou pode ser definida aqui se necessário */
    /* Se o .benefit-icon for um container colorido, o ícone dentro pode ser branco */
    /* color: #fff; */ 
}

/* ======= INTERFACE SECTION ======= */
.interface {
    background: linear-gradient(125deg, #05151e 0%, #030a10 50%, #05151e 100%);
    padding: 14rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0,124,194,0.12);
    border-bottom: 1px solid rgba(0,124,194,0.12);
}

.interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 75% 20%, rgba(0,124,194,0.08) 0%, rgba(5,21,30,0) 50%),
        radial-gradient(circle at 25% 80%, rgba(0,198,251,0.05) 0%, rgba(5,21,30,0) 40%),
        linear-gradient(180deg, rgba(0,124,194,0.02) 0%, rgba(5,21,30,0) 100%);
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}

.interface::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: 
        linear-gradient(rgba(0,124,194,0.02), rgba(0,198,251,0.02)),
        radial-gradient(circle at center, rgba(0,124,194,0.03) 0%, transparent 70%);
    transform: rotate(-12deg);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.7;
}

.interface .section-title {
    text-align: left;
    margin-bottom: 3.6rem;
    color: #fff;
    font-size: 3.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    display: block;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
    margin: 0;
}



@keyframes titleShine {
    0% {
        background-position: -100% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: -100% 50%;
    }
}

@keyframes checkBounce {
    0%, 100% {
        transform: rotate(45deg) translate(-1px, -1px);
    }
    50% {
        transform: rotate(45deg) translate(-1px, -3px);
    }
}

.interface-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.interface-text {
    position: relative;
}

.interface-text::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -60px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at center, rgba(0,124,194,0.1) 0%, rgba(5,21,30,0) 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
    animation: pulseGlow 4s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.interface-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

@media (max-width: 991px) {
  .interface-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .interface-text {
    text-align: left;
    align-items: flex-start;
  }
  .interface-image {
    margin-bottom: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 991px) {
  .interface-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .interface-image {
    margin-bottom: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .interface-text {
    text-align: left;
  }
}

.interface-image {
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 1s ease forwards;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 
        0 20px 40px rgba(0, 124, 194, 0.18),
        0 2px 16px rgba(0,0,0,0.35),
        0 0 0 1px rgba(0,124,194,0.1);
    transition: all 0.5s cubic-bezier(.4,1.7,.7,1.1);
    perspective: 1000px;
    transform-style: preserve-3d;
}

.interface-image::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 24px;
    background: 
        radial-gradient(circle at 60% 30%, rgba(0,124,194,0.25) 0%, rgba(0,124,194,0) 70%),
        radial-gradient(circle at 30% 70%, rgba(0,198,251,0.15) 0%, rgba(0,124,194,0) 60%);
    z-index: -1;
    filter: blur(15px);
    pointer-events: none;
    opacity: 0.8;
    transition: all 0.5s ease;
}

.interface-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,124,194,0.1), rgba(0,198,251,0.1));
    z-index: -1;
    transition: all 0.5s ease;
}

.interface-image img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

.interface-image:hover {
    transform: translateY(-12px) scale(1.03) rotate3d(1, 5, 1, 2deg);
    box-shadow: 
        0 32px 64px rgba(0,124,194,0.25),
        0 8px 32px rgba(0,0,0,0.4),
        0 0 0 1px rgba(0,124,194,0.2);
}

.interface-image:hover::after {
    opacity: 1;
    filter: blur(20px);
    transform: scale(1.1);
}

.interface-image:hover::before {
    opacity: 0.8;
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(0,124,194,0.15), rgba(0,198,251,0.15));
}

.interface-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.interface-text {
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease forwards;
}

.interface-text h2 {
    color: #fff;
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 3.6rem;
    text-align: left;
    display: inline-block;
}

.interface-text p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.7rem;
    line-height: 1.7;
    margin-bottom: 2.0rem;
    text-align: left;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease 0.2s forwards;
    max-width: 90%;
    margin-top: 1.6rem;
}

.interface-list {
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    position: relative;
}

.interface-list::before {
    content: '';
    position: absolute;
    left: -20px;
    top: -20px;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at left, rgba(0,124,194,0.08) 0%, rgba(5,21,30,0) 70%);
    pointer-events: none;
    z-index: -1;
}

.interface-list li {
    color: #fff;
    font-size: 1.65rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1.4rem 2rem;
    border-radius: 16px;
    background: rgba(0,124,194,0.08);
    box-shadow: 
        0 4px 16px rgba(0,124,194,0.07),
        0 1px 3px rgba(0,0,0,0.1),
        0 0 0 1px rgba(0,124,194,0.1);
    font-weight: 500;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s cubic-bezier(.4,1.7,.7,1.1);
    position: relative;
    overflow: hidden;
}

.interface-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #007cc2, #00c6fb);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.interface-list li:hover {
    background: rgba(0,124,194,0.13);
    color: #fff;
    box-shadow: 
        0 8px 32px rgba(0,124,194,0.15),
        0 2px 8px rgba(0,0,0,0.1),
        0 0 0 1px rgba(0,124,194,0.2);
    transform: translateX(15px) scale(1.03);
}

.interface-list li:hover::before {
    background: linear-gradient(to bottom, #00c6fb, #007cc2);
    box-shadow: 0 0 20px rgba(0,198,251,0.4);
}

/* Adicionando delays para animação em cascata dos itens da lista */
.interface-list li:nth-child(1) {
    animation: fadeInRight 1s ease 0.4s forwards;
}
.interface-list li:nth-child(2) {
    animation: fadeInRight 1s ease 0.5s forwards;
}
.interface-list li:nth-child(3) {
    animation: fadeInRight 1s ease 0.6s forwards;
}
.interface-list li:nth-child(4) {
    animation: fadeInRight 1s ease 0.7s forwards;
}
/* Adicione mais nth-child selectors se houver mais itens */

.interface-list li i {
    color: #fff;
    font-size: 1.45rem;
    border-radius: 14px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007cc2, #00c6fb);
    box-shadow: 
        0 4px 16px rgba(0,124,194,0.25),
        0 1px 4px rgba(0,0,0,0.2),
        inset 0 2px 4px rgba(255,255,255,0.15);
    transition: all 0.4s cubic-bezier(.4,1.7,.7,1.1);
    position: relative;
    z-index: 1;
    transform: rotate(-8deg);
    backdrop-filter: blur(4px);
}

.interface-list li i::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 14px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) translate(-1px, -1px);
    opacity: 0.95;
}

.interface-list li i::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0,124,194,0.5), rgba(0,198,251,0.5));
    z-index: -1;
    filter: blur(4px);
    opacity: 0;
    transition: all 0.4s ease;
}

.interface-list li i::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 14px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) translate(-1px, -1px);
    opacity: 0.95;
}

/* Ícones coloridos diferentes para cada item */
.interface-list li:nth-child(1) i {
    background: linear-gradient(135deg, #007cc2, #00c6fb);
    font-size: 1.6rem;
}
.interface-list li:nth-child(2) i {
    background: linear-gradient(135deg, #00c6fb, #00e6b0);
    font-size: 1.5rem;
}
.interface-list li:nth-child(3) i {
    background: linear-gradient(135deg, #00e6b0, #007cc2);
    font-size: 1.4rem;
}
.interface-list li:nth-child(4) i {
    background: linear-gradient(135deg, #007cc2, #00e6b0);
    font-size: 1.5rem;
}

.interface-list li:hover i {
    transform: scale(1.15) rotate(0deg);
    box-shadow: 
        0 8px 24px rgba(0,124,194,0.3),
        0 2px 8px rgba(0,0,0,0.2),
        inset 0 3px 6px rgba(255,255,255,0.2);
}

.interface-list li:hover i::before {
    animation: checkBounce 0.5s cubic-bezier(.4,1.7,.7,1.1);
}

.interface-list li:hover i::before {
    opacity: 1;
}

.interface-list li:hover i::after {
    opacity: 1;
    filter: blur(8px);
    transform: scale(1.1);
}

.interface-list li:hover i {
    filter: brightness(1.12) saturate(1.2);
    color: #fff;
    transform: scale(1.13) rotate(7deg);
    box-shadow: 0 8px 18px rgba(0,124,194,0.22);
}

.interface-list li:hover {
    color: #fff;
    transform: translateX(5px); /* Leve deslocamento para a direita */
}

.interface-list li:hover i {
    transform: scale(1.1); /* Ícone aumenta um pouco */
}

.interface-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.interface-list li i {
    color: var(--color-primary);
    font-size: 2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

/* ======= FEATURES SECTION ======= */
.features {
    background: var(--color-dark);
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.features .section-title {
    text-align: center;
    margin-bottom: 6rem;
    color: #fff;
    font-size: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08); /* Subtle initial border */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    background-color: rgba(255, 255, 255, 0.02); /* Even more subtle base background */
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-5px); /* Subtle lift */
    background-color: rgba(255, 255, 255, 0.04); /* Slightly lighter on hover */
    box-shadow: 0 6px 20px rgba(0, 15, 25, 0.25); /* Softer, darker shadow */
    border-color: var(--color-secondary); /* Accent border with secondary color for variation */
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2.4rem;
    color: #fff;
}

.feature-text h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.6rem;
    line-height: 1.6;
}

/* ======= CTA SECTION ======= */
.cta {
    background: var(--color-background);
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 4rem;
    border-radius: 20px;
    background: rgba(5, 21, 30, 0.7);
    border: 1px solid rgba(0, 124, 194, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.cta .section-title {
    margin-bottom: 2rem;
    color: #fff;
    font-size: 4rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.8rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.6rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid transparent;
}

.contact-link:hover {
    color: var(--color-primary);
    background: rgba(0, 124, 194, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.contact-link i {
    font-size: 2rem;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.contact-link:hover i {
    color: #fff;
}

/* ======= FOOTER ======= */
.footer {
    background: var(--color-dark);
    padding: 4rem 0;
    border-top: 1px solid rgba(0, 124, 194, 0.2);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* MOVED MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .monitor-mockup {
        max-width: 500px;
    }

    .interface-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .interface-image {
        order: -1; /* Image on top on mobile */
        margin-bottom: 3rem;
    }

    .interface-text h2 {
        text-align: center;
    }

    .interface-list li {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Seção de Integração com WinControl */
.integracao-wincontrol {
    padding: 80px 0;
    background-color: var(--color-background);
    position: relative;
    overflow: hidden;
}

.integracao-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.integracao-image {
    flex: 1;
}

.integracao-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.integracao-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 124, 194, 0.2);
}

.integracao-text h2 {
    margin-bottom: 20px;
}

.integracao-text .section-title {
    text-align: left;
}

.requisitos {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.requisitos h3 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.requisitos-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requisitos-list li {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.requisitos-list li i {
    color: var(--color-secondary);
    font-size: 1.8rem;
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 3.2rem;
    }

    .integracao-content {
        flex-direction: column;
        gap: 40px;
    }
    .interface-text h2 {
        font-size: 2.8rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .footer-content {
        /* Already column from previous footer update, ensure gap */
        gap: 1.5rem;
    }
    .footer-links {
        flex-direction: column; /* Stack links on smaller screens */
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .monitor-mockup {
        max-width: 100%;
    }

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

    .interface-text h2 {
        font-size: 2.4rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card,
    .feature-item {
        padding: 2.5rem 1.5rem;
    }

    .benefit-icon,
    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .benefit-icon i,
    .feature-icon i {
        font-size: 2.4rem;
    }

    .benefit-card h3,
    .feature-text h3 {
        font-size: 1.8rem;
    }

    .benefit-card p,
    .feature-text p {
        font-size: 1.5rem;
    }

    .cta-content {
        padding: 3rem 2rem;
    }

    .cta .section-title {
        font-size: 2.8rem;
    }

    .cta p {
        font-size: 1.6rem;
    }

    .contact-link {
        font-size: 1.5rem;
        padding: 0.8rem 1.2rem;
    }

    .contact-link i {
        font-size: 1.8rem;
    }
}
