*{
    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: 1rem;
    font-weight: normal;
}

.logo-tempo{
    width:100%;
    max-width:400px;
}

.hero-description{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    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;
}

.btn-primary{
    background:#00a6ff;
    color:white;
}

.btn-primary:hover{
    background:#0089d1;
    transform:translateY(-3px);
}

.btn-outline{
    border:2px solid white;
    color:white;
}

.btn-outline:hover{
    background:white;
    color:black;
}

/* SECTION TITLE */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.list{
    display:flex;
    gap:50px;
    justify-content:center;
    flex-wrap:wrap;
    color:#5fbef1 ;
    font-weight: 700;
    margin-bottom: 80px;
}

.question{
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.question-image{
     width: 100%;
     display: flex;
}

.recuadro{
    background: #1a1a1a;
    padding: 30px;
    text-align: left;
    border-radius: 12px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.question-image img{
    width: 100%;
    max-width: 400px;
    margin: auto;
}
.section-title h2{
    font-size:42px;
    margin-bottom:20px;
    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;

}
/* 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;
}

/* INFO SECTION */

.info{
    color:white;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
}

.info-box{
    padding:35px;
    border-radius:20px;
}

.info-content{
    background:#1a1a1a;
    padding:30px;
    border-radius:12px;
    text-align:left;
}

.info-p{
    margin-top:40px;
    line-height:1.6;
    color:#f1f1f1;
    text-align: center;
}

.info-image{
    display:flex;
    justify-content:center;
    width: 100%;
}
.info-image img{
    width:100%;
    max-width:1200px;
}
.info-p span{
    color:#e6eaec;
    font-weight:700;
    font-size: 25px;
}
.info-box h3{
    margin-bottom:20px;
    font-size:24px;
}

.info-box p{
    margin-bottom:15px;
    line-height:1.3;
    font-size: 15px;
}

.tempo-sect{
    width:100%;
    max-width:400px;
}

.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:1200px;
    margin-top: 5px;
}
/* PLANS */

.plans{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.plan{
    border:3px solid #e4e4e4;
    border-radius:24px;
    padding:30px;
    transition:.3s;
    background:linear-gradient(135deg,#073a75,#40a2c9, #77def8);
}

.plan:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.plan h3{
    font-size:28px;
    margin-bottom:10px;
    color: white;
    text-align: center;
}

.plan small{
    color:#fcfcfc;
    font-weight:700;
    text-align: center;
}

.plan ul{
    list-style:none;
    margin:30px 0;
}

.plan ul li{
    margin-bottom:14px;
    color:#fffbfb;
    line-height:1.6;
}

.plan .btn{
    width:100%;
    text-align:center;
}

/* FAQ */

.faq{
    background:#020202;
}

.faq-list{
    display:grid;
    gap:20px;
}

.faq-item{
    background:white;
    border-radius:16px;
    padding:25px;
    box-shadow:0 4px 15px rgba(0,0,0,.04);
}

.faq-item h4{
    margin-bottom:10px;
    font-size:20px;
}

/* CTA */

.cta{
    color:white;
    text-align:center;
}

.cta h2{
    font-size:48px;
    margin-bottom:25px;
}
/* FOOTER */

footer{
    background:#0d0d0d;
    color:#aaa;
    text-align:center;
    padding:30px;
    font-size:14px;
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero h1{
        font-size:40px;
    }

    .section-title h2{
        font-size:32px;
    }

    .cta h2{
        font-size:34px;
    }

}
