/* ==================================================
   TIEMPOS MÁS
   Modern Landing Page
================================================== */

:root{

    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --secondary:#0ea5e9;
    --success:#10b981;

    --dark:#0f172a;
    --gray:#64748b;
    --light:#f8fafc;

    --white:#ffffff;

    --radius:16px;
    --shadow:0 12px 40px rgba(0,0,0,.08);
    --transition:.30s;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;
    color:var(--dark);
    background:#fff;
    line-height:1.7;

}

/* ==================================================
NAVBAR
================================================== */

.navbar{

    padding:18px 0;
    transition:.3s;

}

.navbar-brand{

    font-size:1.6rem;
    font-weight:700;
    color:var(--primary)!important;

}

.nav-link{

    color:#444;
    font-weight:500;
    margin-left:18px;

}

.nav-link:hover{

    color:var(--primary);

}

.btn{

    border-radius:12px;
    padding:12px 28px;
    font-weight:600;
    transition:.3s;

}

.btn-primary{

    background:var(--primary);
    border:none;

}

.btn-primary:hover{

    background:var(--primary-dark);
    transform:translateY(-2px);

}

.btn-outline-primary:hover{

    transform:translateY(-2px);

}

/* ==================================================
HERO
================================================== */

.hero{

    padding:100px 0;
    background:

    linear-gradient(
        180deg,
        #f8fbff 0%,
        #ffffff 100%
    );

}

.hero h1{

    font-size:3.4rem;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;

}

.hero .lead{

    font-size:1.2rem;
    color:var(--gray);

}

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-top:35px;

}

.hero-image{

    max-width:100%;
    animation:float 5s ease infinite;

}

.hero-features{

    display:flex;
    flex-wrap:wrap;
    gap:30px;

}

.hero-features div{

    font-weight:600;

}

.hero-features i{

    color:var(--success);
    margin-right:8px;

}

/*=============================
STATISTICS
=============================*/

.stats-section{

background:linear-gradient(135deg,#2563eb,#1e40af);

padding:70px 0;

color:white;

}

.stat-card{

padding:20px;

}

.stat-card h2{

font-size:3rem;

font-weight:800;

margin-bottom:10px;

color:white;

}

.stat-card p{

color:rgba(255,255,255,.85);

font-size:1rem;

margin:0;

}

@media(max-width:768px){

.stat-card{

margin-bottom:30px;

}

.stat-card h2{

font-size:2.3rem;

}

}

/* ==================================================
SECTION TITLES
================================================== */

section{

    padding:90px 0;

}

section h2{

    font-size:2.4rem;
    font-weight:700;
    margin-bottom:15px;

}

section p{

    color:var(--gray);

}

/* ==================================================
FEATURES
================================================== */

.feature-card{

    background:white;
    padding:40px 30px;

    border-radius:18px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-card i{

    font-size:48px;

    color:var(--primary);

    margin-bottom:20px;

}

.feature-card h4{

    font-weight:700;

    margin-bottom:15px;

}

/* ==================================================
PRICING
================================================== */

.pricing{

    background:var(--light);

}

.price-card{

    background:white;

    padding:45px;

    border-radius:18px;

    text-align:center;

    box-shadow:var(--shadow);

    position:relative;

    transition:.3s;

    height:100%;

}

.price-card:hover{

    transform:translateY(-8px);

}

.price-card h3{

    font-weight:700;

}

.price-card h1{

    font-size:3rem;

    margin:25px 0;

    color:var(--primary);

}

.price-card ul{

    list-style:none;

    padding:0;

    margin:35px 0;

}

.price-card li{

    padding:10px 0;

    border-bottom:1px solid #eee;

}

.featured{

    border:3px solid var(--primary);

    transform:scale(1.04);

}

.popular{

    position:absolute;

    top:-15px;

    left:50%;

    transform:translateX(-50%);

    background:var(--primary);

    color:white;

    padding:8px 20px;

    border-radius:50px;

    font-size:.9rem;

    font-weight:600;

}

/*===========================
GALLERY
===========================*/

.gallery-section{

background:#f8fafc;

}

.gallery-card{

background:white;

border-radius:18px;

overflow:hidden;

box-shadow:0 20px 40px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.gallery-card:hover{

transform:translateY(-10px);

}

.gallery-card img{

width:100%;

height:260px;

object-fit:cover;

transition:.5s;

display:block;

}

.gallery-card:hover img{

transform:scale(1.05);

}

.gallery-caption{

padding:25px;

}

.gallery-caption h5{

font-weight:700;

margin-bottom:10px;

}

.gallery-caption p{

margin:0;

color:#64748b;

}

/* ==================================================
VIDEOS
================================================== */

video{

    border-radius:18px;

    box-shadow:var(--shadow);

    transition:.3s;

}

video:hover{

    transform:scale(1.02);

}

/* ==================================================
CTA
================================================== */

.cta{

    background:

    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:white;

}

.cta h2{

    color:white;

}

.cta p{

    color:rgba(255,255,255,.85);

    max-width:700px;

    margin:auto;

    margin-bottom:35px;

}

.cta .btn{

    background:white;

    color:var(--primary);

    border:none;

    font-weight:700;

}

.cta .btn:hover{

    transform:translateY(-3px);

}

/* ==================================================
WHATSAPP
================================================== */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    background:#25D366;

    color:white;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:34px;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

}

.whatsapp-float:hover{

    color:white;

    transform:scale(1.1);

}

/* ==================================================
BADGES
================================================== */

.badge{

    padding:10px 18px;

    border-radius:40px;

    font-size:.9rem;

}

/* ==================================================
ANIMATIONS
================================================== */

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0px);

    }

}

/* ==================================================
FOOTER
================================================== */

footer{

    background:#0f172a;

    color:white;

    padding:50px 0;

}

footer a{

    color:white;

    text-decoration:none;

}

footer a:hover{

    color:#60a5fa;

}

/* ==================================================
RESPONSIVE
================================================== */

@media(max-width:992px){

.hero{

    text-align:center;

    padding:80px 0;

}

.hero h1{

    font-size:2.7rem;

}

.hero-buttons{

    justify-content:center;

}

.hero-features{

    justify-content:center;

    margin-bottom:50px;

}

.featured{

    transform:none;

    margin-top:30px;

}

}

@media(max-width:768px){

.hero h1{

    font-size:2.2rem;

}

section{

    padding:70px 0;

}

section h2{

    font-size:2rem;

}

.price-card{

    margin-bottom:30px;

}

.hero-buttons{

    flex-direction:column;

}

.btn{

    width:100%;

}

.whatsapp-float{

    width:58px;

    height:58px;

    font-size:28px;

}

}

@media(max-width:576px){

.navbar-brand{

    font-size:1.3rem;

}

.hero{

    padding-top:60px;

}

.hero h1{

    font-size:2rem;

}

.hero .lead{

    font-size:1rem;

}

section h2{

    font-size:1.7rem;

}

.feature-card{

    padding:30px;

}

.price-card{

    padding:30px;

}

}