* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #000000;
    color: #111;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Handyman';
    src: url('handyman.woff2') format('woff2'),
         url('handyman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 40px 0;
}

/* Video Fondo */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 50%;
}

.hero {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    padding-bottom: 0px;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(0,1,14,0.85), rgba(5,22,41,0.9), rgba(23,55,87,0.95));
    overflow: hidden;
    color: white;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 45px;
    line-height: 1.1;
    margin-left: 30%;
    margin-bottom: 30px;
    font-weight: 800;
    font-family: Handyman;
}

.floating-back-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 99;
}

.btn-floating {
    background: rgba(0, 166, 255, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-floating:hover {
    background: #0089d1;
    transform: translateX(-5px);
}

.btn-floating i {
    font-size: 18px;
}

.image-underline {
    position: relative;
    display: inline-block;
}

.image-underline::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: 100%;
    height: 30px;
    background-image: url('IMAGENES/TEMPO6.png');
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: -1;
}

.image-underline2 {
    position: relative;
    display: inline-block;
}

.image-underline2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: 100%;
    height: 30px;
    background-image: url('IMAGENES/TEMPO7.png');
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: -1;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.check-item i {
    color: #4CAF50;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.check-item h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: normal;
}

.logo-tempo {
    width: 100%;
    max-width: 400px;
}

.hero-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-image-container {
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 300px;
}

.buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 34px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
    display: inline-block;
    margin: 0 auto;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #00a6ff;
    color: white;
}

.btn-primary:hover {
    background: #0089d1;
    transform: translateY(-3px);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h3 {
    color: #eff9ff;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
}

.list {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    color: #5fbef1;
    font-weight: 700;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 800;
    color: #fafafa;
}

.section-title p {
    color: #f1f1f1;
    font-size: 18px;
    max-width: 800px;
    margin: auto;
    line-height: 1.7;
}

.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

.modalidad-toggle {
    display: flex;
    justify-content: center;
    gap: 0px; 
    margin-bottom: 50px;
    flex-wrap: wrap;
    width: 100%; 
}

.toggle-btn {
    flex: 1; 
    min-width: 150px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(0,166,255,0.5);
    color: white;
    padding: 12px 42px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.toggle-btn i {
    margin-right: 10px;
}

.toggle-btn.activo {
    background: #feffff;
    border-color: #00a6ff;
    color: #00a6ff;
    box-shadow: 0 0 20px rgba(0,166,255,0.4);
}

.toggle-btn:hover:not(.activo) {
    background: rgba(0,166,255,0.3);
    border-color: #00a6ff;
}

.sistemas-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 30px;
}

.sistema-card {
    border-radius: 32px;
    padding: 45px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    color: white;
}


.sistema-encabezado {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,166,255,0.3);
}

.logo-nombre {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.logo-nombre i {
    font-size: 2.5rem;
    color: #00a6ff;
}

.logo-nombre h2 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0;
    margin-bottom: 10px;

}

.logo-nombre span {
    color: #00a6ff;
}

.sistema-subtitulo {
    text-align: center;
    font-size: 1rem;
    color: #cbd5e6;
    font-weight: 500;
    margin-top: 50px;
}


.sistema-contenido {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.sistema-media {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sistema-video {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.sistema-video iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

.sistema-imagen {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.sistema-imagen img {
    width: 100%;
    height: auto;
    display: block;
}

.sistema-info {
    display: flex;
    flex-direction: column;
}

.sistema-descripcion {
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e6;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}

.conoce-mas {
    display:grid;
    align-items: center;
    padding: 12px 15px;
    margin: auto;
    color: #fdfdfd;
    text-decoration: none;
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 100px;
    background-color: #4197c5;
    transition: 0.2s;
}

.conoce-mas:hover {
    color: #4caeff;
    text-decoration: underline;
}

.beneficios-titulo {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 20px 0 20px 0;
    color: white;
    letter-spacing: 1px;
}

.beneficios-lista {
    list-style: none;
    margin: 0 0 30px 0;
}

.beneficios-lista li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.5;
}

.beneficios-lista li i {
    color: #00a6ff;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.beneficio-titulo {
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 5px;
}

.beneficio-texto {
    color: #cbd5e6;
}

.cierre-sistema {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 20px 0 25px 0;
    text-align: center;
    padding: 15px;
    border-radius: 40px;
}

.card-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-sistema {
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
    display: inline-block;
    cursor: pointer;
}

.btn-cotizar {
    background: #00a6ff;
    color: white;
    border: none;
}

.btn-cotizar:hover {
    background: #0089d1;
    transform: translateY(-2px);
}

.btn-demo {
    background: transparent;
    color: white;
    border: 2px solid #00a6ff;
}

.btn-demo:hover {
    background: rgba(0,166,255,0.1);
    transform: translateY(-2px);
}

.sistema-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #00a6ff, transparent);
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 900px) {
    .sistema-contenido {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sistema-card {
        padding: 25px;
    }
    .logo-nombre h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
        margin-left: 0;
    }
    .hero-description {
        grid-template-columns: 1fr;
    }
    .toggle-btn {
        padding: 10px 24px;
        font-size: 1.1rem;
    }
    .section-title h2 {
        font-size: 28px;
    }
}

/* info section */
.info {
    color: white;
}

.info-grid {
    gap: 40px;
}

.info-box {
    padding: 35px;
    border-radius: 20px;
}

.info-content {
    padding: 30px;
    margin-left: 30%;
}

.info-content p {
    line-height: 1.6;
    color: #f1f1f1;
    margin: 0;
    padding: 0;
    text-align: right !important;
}

.info-image {
    display: flex;
    justify-content: center;
    width: 100%;
}

.info-image img {
    width: 100%;
    max-width: 1200px;
}

.control h2 {
    font-size: 35px;
    color: #fafafa;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.control span {
    color: #7ed2ff;
    font-weight: 700;
}

.control img {
    width: 100%;
    max-width: 1000px;
    margin-top: 5px;
}

.implementa{
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: white;
    gap: 60px;
}

.implementa img{
    width: 100%;
    max-width: 400px;
}

.img-imp{
    width: 100%;
    height: auto;
}

.implementa p{
    line-height: 1.6;
    color: #f1f1f1;
    margin: 0;
    padding:20px;
}

.implementa button{
margin: 0 40% ;
font-size: 16px;
}
/* FEATURES */

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    padding-top: 40px;
}

.feature{
    background:#f8f9fb;
    padding:35px 10px 10px 20px;
    border-radius:20px;
    transition:.3s;
}

.feature:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.feature-icon{
    font-size:42px;
    margin-bottom:20px;
}

.feature-icon img{
    width:100%;
    max-width:150px;
}


.feature a{
    color:#007bff;
    text-decoration:none;
    font-weight:700;
    font-size: 14px;
    margin-left:50%;
}
.feature h4{
    border-top: 2px solid rgb(12, 12, 14); 
    padding-top:  10px; 
    display: inline-block; 
    color:#000000;
    font-weight: 000 !important;
    font-size: 0.8rem;
    text-align: left;
}

.comparacion-footer {
    margin-top: 50px;
    padding: 30px 20px;
    border-top: 1px solid rgba(0,166,255,0.3);
    border-bottom: 1px solid rgba(0,166,255,0.3);
    background: linear-gradient(135deg, rgba(0,166,255,0.05), rgba(0,166,255,0.02));
    border-radius: 20px;
}

.comparacion-contenido {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.comparacion-pregunta {
    font-size: 1.8rem;
    color: #cbd5e6;
    margin: 0;
    font-weight: 800;
}

.btn-comparacion-categoria {
    background: transparent;
    border: 2px solid #00a6ff;
    color: #00a6ff;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-comparacion-categoria i {
    transition: transform 0.3s ease;
}

.btn-comparacion-categoria:hover {
    background: #00a6ff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,166,255,0.3);
}

.btn-comparacion-categoria:hover i {
    transform: translateX(5px);
    color: white;
}

@media (max-width: 768px) {
    .comparacion-pregunta {
        font-size: 0.9rem;
    }
    .btn-comparacion-categoria {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}

/* FAQ */

.faq{
    background:#020202;
}

.faq-list{
    display:grid;
    gap:10px;
}

.faq-item{
    background:white;
    border-radius:16px;
    padding:15px;
    box-shadow:0 4px 15px rgba(0,0,0,.04);
}

.faq-item h4{
    margin-bottom:10px;
    font-size:15px;
}

.fac-item p{
    color:#333;
    line-height:1.5;
    font-size: 10px !important;
}
/* CTA */

.cta{
    color:white;
    text-align:center;
}

.cta h2{
    font-size:48px;
    margin-bottom:25px;
}


footer {
    background: #0d0d0d;
    color: #aaa;
    text-align: center;
    padding: 30px;
    font-size: 14px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
}

.footer-logo img {
    max-width: 180px;
}

.marcas {
    display: flex;
    gap: 40px;
    margin-top: 15px;
}

.marcas a, .recursos-list a {
    color: #aaa;
    text-decoration: none;
    transition: 0.2s;
}

.marcas a:hover, .recursos-list a:hover {
    color: #00a6ff;
}

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 15px;
}

.social-links a {
    color: white;
    background: #1e293b;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.social-links a:hover {
    background: #00a6ff;
    transform: translateY(-3px);
}

.recuadro {
    background: #1a1a1a;
    padding: 30px;
    text-align: left;
    border-radius: 12px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.recuadro p {
    color: white;
}