/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter', sans-serif;
    background:#0B0B0B;
    color:#fff;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:15px;
}

/* ================= NAVBAR ================= */
.menu-check{
    display:none;
}

.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
    color:#fff;
}
.logo{
    text-decoration:none;
    color:#D4AF37;
    font-weight:800;
    font-size:22px;
}

.logo a,
.logo a:link,
.logo a:visited,
.logo a:hover,
.logo a:active{
    text-decoration: none !important;
    color: inherit !important;
}


.logo:hover{
    text-decoration:none;
    color:#F5D76E;
}

/* MOBILE MENU REAL SIN JS */
@media(max-width:768px){

    .navbar{
        height:78px;
    }

    .nav-container{
        height:100%;
        padding:0 16px;
        position:relative;
    }

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        width:42px;
        height:42px;
        border-radius:12px;
        background:rgba(255,255,255,.06);
        border:1px solid rgba(212,175,55,.25);
        color:#fff;
        z-index:10001;
    }

    .nav-links{
        position:absolute;
        top:78px;
        left:16px;
        right:16px;
        width:auto;
        display:none;
        flex-direction:column;
        gap:0;
        background:rgba(5,5,5,.98);
        backdrop-filter:blur(14px);
        border:1px solid rgba(212,175,55,.22);
        border-radius:18px;
        overflow:hidden;
        padding:8px;
        z-index:10000;
    }

  #menuCheck:checked ~ .nav-links{
    display:flex !important;

}
.nav-links{
    z-index:9999;
}

.menu-toggle{
    z-index:10000;
}
.nav-links{
    display:none;
}

    .nav-links a{
        width:100%;
        padding:15px;
        border-radius:12px;
        color:#fff;
    }

    .nav-links a:hover{
        background:rgba(212,175,55,.08);
    }

    .login-btn{
        margin-top:8px;
        justify-content:center;
        color:#050505 !important;
    }
}
/* OCULTAR EL CHECKBOX (ESTO TE ESTÁ FALLANDO) */
.menu-check{
    display:none;
}
.navbar{
    width:100%;
    background:#050505;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    border-bottom:1px solid rgba(212,175,55,.25);
    backdrop-filter:blur(10px);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-weight:800;
    font-size:22px;
    color:#D4AF37;
    letter-spacing:1px;
}
.logo{
    text-decoration:none !important;
    color:#fff !important;
}
/* ===== LOGO PREMIUM TUEQUINO ===== */

.logo1{
    position:relative;
    display:inline-block;
    font-size:22px;
    font-weight:1000;
    letter-spacing:2px;
    text-transform:uppercase;

    color:#fff;
    text-decoration:none !important;

    /* brillo base */
    background:linear-gradient(
        90deg,
        #ffffff 0%,
        #f4d46b 40%,
        #ffffff 60%,
        #f4d46b 100%
    );
    background-size:200% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:logoShine 6s linear infinite;

    /* glow sutil */
    text-shadow:
        0 0 10px rgba(212,175,55,.25),
        0 0 20px rgba(212,175,55,.15);
}

/* línea elegante abajo */
.logo1::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0%;
    height:2px;
    background:linear-gradient(90deg,#f4d46b,#ffffff);
    transition:.4s ease;
}

/* hover */
.logo1:hover::after{
    width:100%;
}

/* animación brillo */
@keyframes logoShine{
    0%{
        background-position:0% center;
    }
    100%{
        background-position:200% center;
    }
}

/* mobile ajuste */
@media(max-width:768px){
    .logo1{
        font-size:18px;
        letter-spacing:1px;
    }
}

.nav-links{
    display:flex;
    align-items:center;
    gap:25px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    transition:.3s ease;
    position:relative;
}

.nav-links a:hover{
    color:#D4AF37;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#D4AF37;
    transition:.3s ease;
}

.nav-links a:hover::after{
    width:100%;
}

.login-btn{
    display:flex;
    align-items:center;
    gap:7px;
    background:linear-gradient(135deg,#D4AF37,#F5D76E);
    color:#050505 !important;
    padding:9px 18px;
    border-radius:999px;
    font-weight:700;
    box-shadow:0 8px 20px rgba(212,175,55,.25);
}

.login-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 26px rgba(212,175,55,.35);
}

.login-btn::after{
    display:none;
}

.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
    color:#fff;
}

/* ================= HERO ================= */

.hero{
    height:100vh;
    min-height:600px;
    background:
    linear-gradient(rgba(0,0,0,.50), rgba(0,0,0,.82)),
    url('../images/hero.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
    animation:zoomHero 20s ease infinite alternate;
    color:#fff;
}

@keyframes zoomHero{
    from{background-size:100%;}
    to{background-size:110%;}
}

.hero-content{
    max-width:700px;
    animation:fadeUp 1s ease;
    color:#fff;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero h1{
    font-size:44px;
    margin-bottom:15px;
    font-weight:700;
    color:#fff;
}

.hero p{
    font-size:16px;
    margin-bottom:25px;
    opacity:.9;
    color:#fff;
}

/* ================= BUSCADOR ================= */

.search-box{
    display:flex;
    background:#fff;
    border-radius:50px;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.4);
}

.search-box input{
    flex:1;
    border:none;
    padding:15px;
    outline:none;
    font-size:14px;
    color:#111;
}

.search-box button{
    background:linear-gradient(135deg,#D4AF37,#F5D76E);
    border:none;
    padding:0 25px;
    color:#050505;
    font-weight:800;
    cursor:pointer;
}

/* ================= FILTROS ================= */

.filters{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:center;
}

.filters button{
    border:1px solid rgba(212,175,55,.35);
    background:rgba(212,175,55,.08);
    color:#fff;
    padding:8px 15px;
    border-radius:20px;
    cursor:pointer;
    transition:.3s ease;
}

.filters button:hover{
    background:#D4AF37;
    color:#050505;
}

/* ================= CABALLOS DESTACADOS ================= */

.featured-horses{
    background:#0B0B0B;
    padding:90px 20px;
}

.section-header{
    text-align:center;
    max-width:650px;
    margin:0 auto 45px;
}

.section-header span{
    color:#D4AF37;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-header h2{
    font-size:34px;
    margin:10px 0;
    color:#fff;
}

.section-header p{
    color:#b7b7b7;
    font-size:15px;
}

.horse-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.horse-card{
    background:#111;
    border:1px solid rgba(212,175,55,.18);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 45px rgba(0,0,0,.35);
    transition:.35s ease;
}

.horse-card:hover{
    transform:translateY(-8px);
    border-color:rgba(212,175,55,.55);
    box-shadow:0 25px 60px rgba(212,175,55,.12);
}

.horse-img{
    height:260px;
    overflow:hidden;
    position:relative;
}

.horse-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.horse-card:hover .horse-img img{
    transform:scale(1.08);
}

.badge{
    position:absolute;
    top:15px;
    left:15px;
    background:linear-gradient(135deg,#D4AF37,#F5D76E);
    color:#050505;
    padding:7px 13px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    z-index:6;
}

.horse-info{
    padding:22px;
}

.horse-info h3{
    font-size:20px;
    margin-bottom:8px;
    color:#fff;
}

.location{
    color:#aaa;
    font-size:14px;
    margin-bottom:16px;
}

.location i{
    color:#D4AF37;
    margin-right:5px;
}

.horse-data{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:20px;
}

.horse-data span{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#ddd;
    padding:7px 10px;
    border-radius:999px;
    font-size:12px;
}

.horse-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.horse-footer strong{
    color:#D4AF37;
    font-size:18px;
}

.horse-footer a{
    text-decoration:none;
    color:#050505;
    background:linear-gradient(135deg,#D4AF37,#F5D76E);
    padding:10px 16px;
    border-radius:999px;
    font-size:13px;
    font-weight:800;
}

/* CARRUSEL CARDS */

.card-carousel{
    width:100%;
    height:100%;
    overflow:hidden;
    position:relative;
}

.card-carousel-track{
    display:flex;
    height:100%;
    transition:transform .35s ease;
}

.card-carousel-track img{
    width:100%;
    height:100%;
    object-fit:cover;
    flex:0 0 100%;
}

.carousel-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.55);
    color:#fff;
    font-size:24px;
    cursor:pointer;
    z-index:5;
    line-height:1;
    transition:.3s ease;
}

.prev-btn{
    left:10px;
}

.next-btn{
    right:10px;
}

.carousel-btn:hover{
    background:#D4AF37;
    color:#050505;
}

/* ================= CTA PUBLICAR ================= */

.publish-cta{
    position:relative;
    min-height:430px;
    background:url('../images/publicar.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:40px 20px;
    overflow:hidden;
}

.publish-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.88),
        rgba(0,0,0,.55),
        rgba(0,0,0,.88)
    );
}

.publish-content{
    position:relative;
    z-index:2;
    max-width:760px;
    color:#fff;
}

.publish-content span{
    color:#D4AF37;
    font-size:13px;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}

.publish-content h2{
    font-size:42px;
    line-height:1.12;
    margin:14px 0;
}

.publish-content p{
    color:#ddd;
    font-size:16px;
    line-height:1.7;
    margin-bottom:26px;
}

.publish-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    background:linear-gradient(135deg,#D4AF37,#F5D76E);
    color:#050505;
    padding:15px 24px;
    border-radius:999px;
    font-weight:900;
    box-shadow:0 18px 35px rgba(212,175,55,.25);
    transition:.3s ease;
}

.publish-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 24px 50px rgba(212,175,55,.38);
}

/* ================= CRIADEROS ================= */

.featured-stables{
    background:#0F0F0F;
    padding:90px 20px;
}

.stables-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.stable-card{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    height:320px;
    cursor:pointer;
}

.stable-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.stable-card:hover img{
    transform:scale(1.1);
}

.stable-info{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:20px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.9),
        rgba(0,0,0,.3),
        transparent
    );
}

.stable-info h3{
    font-size:20px;
    margin-bottom:5px;
    color:#fff;
}

.stable-info p{
    font-size:14px;
    color:#ccc;
    margin-bottom:10px;
}

.stable-stats{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:12px;
}

.stable-stats span{
    font-size:12px;
    background:rgba(255,255,255,.08);
    padding:6px 10px;
    border-radius:999px;
    color:#fff;
}

.stable-info a{
    display:inline-block;
    background:linear-gradient(135deg,#D4AF37,#F5D76E);
    color:#050505;
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:800;
    text-decoration:none;
}

/* ================= COMO FUNCIONA ================= */

.how-it-works{
    background:#0B0B0B;
    padding:90px 20px;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
}

.step-card{
    position:relative;
    background:#151515;
    border:1px solid rgba(212,175,55,.14);
    border-radius:24px;
    padding:32px 26px;
    overflow:hidden;
    transition:.35s ease;
}

.step-card:hover{
    transform:translateY(-8px);
    border-color:rgba(212,175,55,.45);
    box-shadow:0 25px 60px rgba(212,175,55,.12);
}

.step-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#D4AF37,#F5D76E);
    color:#050505;
    font-size:23px;
    margin-bottom:22px;
}

.step-card span{
    position:absolute;
    top:22px;
    right:24px;
    color:rgba(212,175,55,.28);
    font-size:38px;
    font-weight:900;
}

.step-card h3{
    font-size:20px;
    margin-bottom:10px;
    color:#fff;
}

.step-card p{
    color:#aaa;
    font-size:14px;
    line-height:1.7;
}

/* ================= PLANES ================= */

.pricing-section{
    background:#101010;
    padding:90px 20px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:25px;
    align-items:stretch;
}

.pricing-card{
    position:relative;
    background:#171717;
    border:1px solid rgba(212,175,55,.14);
    border-radius:28px;
    padding:32px 26px;
    overflow:hidden;
    transition:.35s ease;
}

.pricing-card:hover{
    transform:translateY(-8px);
    border-color:rgba(212,175,55,.45);
    box-shadow:0 25px 60px rgba(212,175,55,.12);
}

.featured-plan{
    border-color:rgba(212,175,55,.65);
    background:linear-gradient(180deg, rgba(212,175,55,.12), rgba(23,23,23,1) 38%);
    transform:scale(1.03);
}

.popular-badge{
    position:absolute;
    top:18px;
    right:18px;
    background:linear-gradient(135deg,#D4AF37,#F5D76E);
    color:#050505;
    padding:7px 12px;
    border-radius:999px;
    font-size:11px;
    font-weight:900;
}

.plan-tag{
    color:#D4AF37;
    font-size:12px;
    font-weight:900;
    letter-spacing:1.6px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.pricing-card h3{
    color:#fff;
    font-size:25px;
    margin-bottom:10px;
}

.plan-desc{
    color:#aaa;
    font-size:14px;
    line-height:1.6;
    min-height:45px;
    margin-bottom:24px;
}

.price{
    display:flex;
    align-items:flex-end;
    gap:8px;
    margin-bottom:26px;
}

.price strong{
    color:#fff;
    font-size:34px;
    font-weight:900;
}

.price span{
    color:#999;
    font-size:13px;
    margin-bottom:6px;
}

.pricing-card ul{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:13px;
    margin-bottom:28px;
}

.pricing-card li{
    color:#ddd;
    font-size:14px;
    display:flex;
    gap:10px;
    align-items:flex-start;
}

.pricing-card li i{
    color:#D4AF37;
    margin-top:2px;
}

.plan-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    width:100%;
    background:linear-gradient(135deg,#D4AF37,#F5D76E);
    color:#050505;
    padding:14px 18px;
    border-radius:999px;
    font-weight:900;
    transition:.3s ease;
}

.plan-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 35px rgba(212,175,55,.28);
}

/* ================= FOOTER ================= */

.footer{
    background:#0A0A0A;
    padding:70px 20px 25px;
    border-top:1px solid rgba(212,175,55,.12);
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:40px;
    margin-bottom:40px;
}

.footer-logo{
    color:#D4AF37;
    font-size:22px;
    margin-bottom:12px;
}

.footer-col p{
    color:#aaa;
    font-size:14px;
    line-height:1.7;
    margin-bottom:12px;
}

.footer-col h4{
    color:#fff;
    margin-bottom:15px;
    font-size:15px;
}

.footer-col a{
    display:block;
    color:#aaa;
    text-decoration:none;
    font-size:14px;
    margin-bottom:10px;
    transition:.3s ease;
}

.footer-col a:hover{
    color:#D4AF37;
}

.footer-col i{
    color:#D4AF37;
    margin-right:8px;
}

.socials{
    display:flex;
    gap:12px;
    margin-top:15px;
}

.socials a{
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#151515;
    color:#fff;
    transition:.3s ease;
}

.socials a:hover{
    background:#D4AF37;
    color:#050505;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.05);
    padding-top:18px;
}

.footer-bottom p{
    color:#777;
    font-size:13px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:950px){
    .pricing-grid{
        grid-template-columns:1fr;
    }

    .featured-plan{
        transform:none;
    }
}

@media(max-width:900px){
    .horse-grid,
    .stables-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .steps-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:768px){
@media(max-width:768px){

    .navbar{
        height:78px;
    }

    .nav-container{
        height:100%;
        padding:0 16px;
        position:relative;
    }

    .menu-check{
        display:none !important;
    }

    .menu-toggle{
        display:flex !important;
        align-items:center;
        justify-content:center;
        width:42px;
        height:42px;
        border-radius:12px;
        background:rgba(255,255,255,.06);
        border:1px solid rgba(212,175,55,.35);
        color:#fff;
        z-index:10002;
    }

    .nav-links{
        position:fixed;
        top:88px;
        left:50%;
        transform:translateX(-50%);
        width:calc(100% - 40px);
        max-width:340px;

        display:flex !important;
        flex-direction:column;
        gap:8px;

        background:rgba(5,5,5,.98);
        border:1px solid rgba(212,175,55,.28);
        border-radius:20px;
        padding:14px;

        opacity:0;
        visibility:hidden;
        pointer-events:none;

        z-index:10001;
        box-shadow:0 25px 60px rgba(0,0,0,.65);
    }

    #menuCheck:checked ~ .nav-links{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
    }

    .nav-links a{
        display:flex;
        align-items:center;
        justify-content:center;
        width:100%;
        min-height:46px;
        padding:13px 15px;
        color:#fff;
        background:rgba(255,255,255,.04);
        border-radius:13px;
        text-decoration:none;
        font-size:14px;
        font-weight:700;
    }

    .nav-links a:hover{
        background:rgba(212,175,55,.13);
        color:#D4AF37;
    }

    .nav-links a::after{
        display:none;
    }

    .login-btn{
        margin-top:4px;
        background:linear-gradient(135deg,#D4AF37,#F5D76E) !important;
        color:#050505 !important;
    }
}
/* ================= MODAL LOGIN ================= */

.login-modal{
    position:fixed;
    inset:0;
    z-index:999999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.login-modal.active{
    display:flex;
}

.login-modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.78);
    backdrop-filter:blur(10px);
}

.login-modal-box{
    position:relative;
    width:100%;
    max-width:430px;
    background:#111;
    border:1px solid rgba(212,175,55,.22);
    border-radius:28px;
    padding:32px;
    box-shadow:0 30px 90px rgba(0,0,0,.7);
    z-index:2;
    animation:modalUp .35s ease;
}

@keyframes modalUp{
    from{
        opacity:0;
        transform:translateY(25px) scale(.96);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

.login-close{
    position:absolute;
    top:18px;
    right:18px;
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    color:#fff;
    cursor:pointer;
    font-size:17px;
}

.login-close:hover{
    background:#D4AF37;
    color:#050505;
}

.login-modal-header{
    text-align:center;
    margin-bottom:24px;
}

.login-modal-header span{
    color:#D4AF37;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1.6px;
}

.login-modal-header h2{
    color:#fff;
    font-size:30px;
    margin:8px 0;
}

.login-modal-header p{
    color:#aaa;
    font-size:14px;
    line-height:1.6;
}

.login-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.login-field label{
    display:block;
    color:#ddd;
    font-size:13px;
    margin-bottom:7px;
    font-weight:700;
}

.login-field input{
    width:100%;
    background:#0B0B0B;
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    padding:14px 15px;
    border-radius:15px;
    outline:none;
    font-size:14px;
}

.login-field input:focus{
    border-color:#D4AF37;
}

.login-submit{
    margin-top:8px;
    border:none;
    border-radius:999px;
    padding:15px;
    background:linear-gradient(135deg,#D4AF37,#F5D76E);
    color:#050505;
    font-weight:900;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
}

.login-register-box{
    margin-top:24px;
    padding:20px;
    border-radius:22px;
    background:rgba(212,175,55,.08);
    border:1px solid rgba(212,175,55,.18);
    text-align:center;
}

.login-register-box h3{
    color:#fff;
    font-size:18px;
    margin-bottom:7px;
}

.login-register-box p{
    color:#aaa;
    font-size:13px;
    line-height:1.6;
    margin-bottom:15px;
}

.register-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    text-decoration:none;
    background:#fff;
    color:#050505;
    padding:13px 16px;
    border-radius:999px;
    font-weight:900;
    transition:.3s;
}

.register-btn:hover{
    background:#D4AF37;
}

@media(max-width:600px){
    .login-modal-box{
        padding:26px 20px;
        border-radius:24px;
    }

    .login-modal-header h2{
        font-size:26px;
    }
}
    .hero{
        height:auto;
        min-height:720px;
        padding:120px 20px 70px;
        background-position:center top;
        background-size:cover;
        animation:none;
    }

    .hero-content{
        width:100%;
        max-width:340px;
        margin:auto;
    }

    .hero h1{
        font-size:31px;
        line-height:1.25;
        margin-bottom:14px;
    }

    .hero p{
        font-size:15px;
        line-height:1.5;
        margin-bottom:22px;
    }

    .search-box{
        width:100%;
        background:rgba(255,255,255,.14);
        backdrop-filter:blur(14px);
        border:1px solid rgba(255,255,255,.22);
        border-radius:22px;
        padding:8px;
        display:flex;
        flex-direction:column;
        gap:8px;
        box-shadow:0 18px 45px rgba(0,0,0,.35);
    }

    .search-box input{
        width:100%;
        background:rgba(255,255,255,.92);
        color:#111;
        border-radius:16px;
        padding:15px 16px;
        font-size:14px;
    }

    .search-box button{
        width:100%;
        border-radius:16px;
        padding:15px;
        font-size:14px;
    }

    .filters{
        margin-top:20px;
        gap:9px;
    }

    .filters button{
        padding:8px 15px;
        font-size:13px;
        background:rgba(0,0,0,.35);
        backdrop-filter:blur(8px);
    }
}

@media(max-width:600px){

    .featured-horses,
    .featured-stables,
    .how-it-works,
    .pricing-section{
        padding:70px 15px;
    }

    .section-header h2{
        font-size:27px;
    }

    .horse-grid,
    .stables-grid{
        grid-template-columns:1fr;
    }

    .horse-img{
        height:220px;
    }

    .stable-card{
        height:260px;
    }

    .publish-cta{
        min-height:500px;
    }

    .publish-content h2{
        font-size:30px;
    }

    .publish-content p{
        font-size:14px;
    }

    .publish-btn{
        width:100%;
        justify-content:center;
        padding:14px 18px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer{
        text-align:center;
    }

    .socials{
        justify-content:center;
    }
}
/* ================= MODAL LOGIN FIX FINAL ================= */

.login-modal{
    position:fixed;
    inset:0;
    z-index:999999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.login-modal.active{
    display:flex !important;
}

.login-modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(10px);
}

.login-modal-box{
    position:relative;
    width:100%;
    max-width:430px;
    background:#111;
    border:1px solid rgba(212,175,55,.25);
    border-radius:28px;
    padding:32px;
    z-index:2;
    box-shadow:0 30px 90px rgba(0,0,0,.75);
}

.login-close{
    position:absolute;
    top:16px;
    right:16px;
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    cursor:pointer;
}

.login-modal-header{
    text-align:center;
    margin-bottom:22px;
}

.login-modal-header span{
    color:#D4AF37;
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1.5px;
}

.login-modal-header h2{
    color:#fff;
    font-size:30px;
    margin:8px 0;
}

.login-modal-header p{
    color:#aaa;
    font-size:14px;
    line-height:1.6;
}

.login-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.login-field label{
    color:#ddd;
    font-size:13px;
    font-weight:700;
    margin-bottom:7px;
    display:block;
}

.login-field input{
    width:100%;
    background:#0B0B0B;
    border:1px solid rgba(255,255,255,.1);
    color:#fff;
    padding:14px;
    border-radius:15px;
    outline:none;
}

.login-field input:focus{
    border-color:#D4AF37;
}

.login-submit{
    border:none;
    border-radius:999px;
    padding:15px;
    background:linear-gradient(135deg,#D4AF37,#F5D76E);
    color:#050505;
    font-weight:900;
    cursor:pointer;
}

.login-register-box{
    margin-top:24px;
    padding:20px;
    border-radius:22px;
    background:rgba(212,175,55,.08);
    border:1px solid rgba(212,175,55,.18);
    text-align:center;
}

.login-register-box h3{
    color:#fff;
    font-size:18px;
    margin-bottom:7px;
}

.login-register-box p{
    color:#aaa;
    font-size:13px;
    margin-bottom:15px;
}

.register-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    text-decoration:none;
    background:#fff;
    color:#050505;
    padding:13px;
    border-radius:999px;
    font-weight:900;
}

.register-btn:hover{
    background:#D4AF37;
}
#planes{
    scroll-margin-top: 100px;
}
.upload-box input[type="file"] {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px dashed rgba(212,175,55,0.4);
    background: #0a0a0a;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

.upload-box input[type="file"]:hover {
    border-color: #d4af37;
    background: #111;
}

.upload-box small {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.7;
}
/* ===== HERO APP TUEQUINO ===== */

.hero-app{
    padding:80px 20px 60px;
    display:flex;
    justify-content:center;
}

.hero-box{
    width:100%;
    max-width:900px;
    padding:40px;
    border-radius:28px;
    background:#ffffff;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

/* TOP */
.hero-top{
    margin-bottom:20px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:6px 12px;
    border-radius:999px;
    font-size:12px;
    font-weight:800;
    background:#f4f4f4;
    color:#333;
}

/* TITULO */
.hero-box h1{
    font-size:clamp(34px, 6vw, 64px);
    line-height:1.05;
    margin:0;
    font-weight:900;
    color:#111;
}

.hero-box h1 span{
    color:#c89b2c;
}

/* TEXTO */
.hero-box p{
    margin:16px 0 28px;
    color:#555;
    font-size:16px;
    max-width:520px;
}

/* BUSCADOR */
.search-app{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 12px;
    border-radius:16px;
    border:1px solid #e5e5e5;
    background:#fafafa;
}

.search-app i{
    color:#999;
}

.search-app input{
    flex:1;
    border:0;
    outline:0;
    background:transparent;
    font-size:14px;
}

.search-app button{
    width:42px;
    height:42px;
    border-radius:12px;
    border:0;
    background:#111;
    color:#fff;
    cursor:pointer;
}

/* FILTROS */
.filters-app{
    margin-top:18px;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.filters-app button{
    padding:10px 14px;
    border-radius:999px;
    border:1px solid #e5e5e5;
    background:#fff;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
}

.filters-app button.active{
    background:#111;
    color:#fff;
    border-color:#111;
}

/* MOBILE */
@media(max-width:768px){

    .hero-app{
        padding:60px 16px;
    }

    .hero-box{
        padding:26px 20px;
        border-radius:22px;
    }

    .hero-box h1{
        font-size:32px;
    }

    .search-app{
        border-radius:14px;
    }

    .search-app button{
        width:38px;
        height:38px;
    }

    .filters-app{
        flex-wrap:nowrap;
        overflow-x:auto;
    }

    .filters-app button{
        white-space:nowrap;
    }

}
/* ===== HERO PRO INTEGRADO TUEQUINO ===== */

.hero-content.hero-pro{
    width:min(100% - 32px, 1050px);
    margin:0 auto;
    min-height:calc(100vh - 90px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    gap:32px;
    position:relative;
    z-index:2;
}

.hero-copy{
    max-width:780px;
}

.hero-pill{
    display:inline-flex;
    align-items:center;
    gap:9px;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(0,0,0,.34);
    border:1px solid rgba(255,255,255,.18);
    color:#f4d46b;
    font-size:13px;
    font-weight:900;
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    box-shadow:0 12px 40px rgba(0,0,0,.25);
}

.hero-pro h1{
    margin:22px 0 0;
    color:#fff;
    font-size:clamp(44px, 8vw, 92px);
    line-height:.92;
    letter-spacing:-4px;
    font-weight:950;
    text-shadow:0 24px 70px rgba(0,0,0,.75);
}

.hero-pro p{
    max-width:640px;
    margin:24px 0 0;
    color:rgba(255,255,255,.88);
    font-size:clamp(16px, 2vw, 22px);
    line-height:1.5;
    text-shadow:0 12px 36px rgba(0,0,0,.65);
}

.hero-search-panel{
    width:min(100%, 850px);
    display:flex;
    flex-direction:column;
    gap:14px;
}

.search-line{
    width:100%;
    min-height:70px;
    display:flex;
    align-items:center;
    gap:14px;
    padding:10px 10px 10px 24px;
    border-radius:999px;
    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.24);
    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);
    box-shadow:0 24px 70px rgba(0,0,0,.35);
}

.search-line i{
    color:#f4d46b;
    font-size:18px;
}

.search-line input{
    flex:1;
    border:0;
    outline:0;
    background:transparent;
    color:#fff;
    font-size:15px;
    font-weight:700;
}

.search-line input::placeholder{
    color:rgba(255,255,255,.72);
}

.search-line button{
    height:50px;
    padding:0 26px;
    border:0;
    border-radius:999px;
    background:linear-gradient(135deg,#f8dd78,#b8860b);
    color:#080808;
    font-weight:950;
    cursor:pointer;
    box-shadow:0 16px 34px rgba(212,175,55,.32);
}

.filters-pro{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.filters-pro button{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:11px 16px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.20);
    background:rgba(0,0,0,.28);
    color:#fff;
    font-size:13px;
    font-weight:900;
    cursor:pointer;
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
}

.filters-pro button:hover{
    background:rgba(212,175,55,.20);
    border-color:rgba(212,175,55,.45);
    color:#f4d46b;
}

@media(max-width:768px){

    .hero-content.hero-pro{
        width:calc(100% - 28px);
        min-height:calc(100vh - 78px);
        justify-content:flex-end;
        padding-bottom:42px;
        gap:24px;
    }

    .hero-pill{
        font-size:12px;
        padding:9px 13px;
    }

    .hero-pro h1{
        font-size:42px;
        line-height:.96;
        letter-spacing:-2px;
    }

    .hero-pro p{
        font-size:15px;
        line-height:1.45;
        margin-top:16px;
    }

    .search-line{
        min-height:auto;
        border-radius:24px;
        padding:15px;
        display:grid;
        grid-template-columns:22px 1fr;
        gap:12px;
    }

    .search-line button{
        grid-column:1 / -1;
        width:100%;
        height:48px;
    }

    .filters-pro{
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:4px;
        scrollbar-width:none;
    }

    .filters-pro::-webkit-scrollbar{
        display:none;
    }

    .filters-pro button{
        flex:0 0 auto;
        white-space:nowrap;
    }
}
.hero-explore-cta{
    position:relative;
    margin-top:26px;
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:13px 18px 13px 14px;
    border-radius:999px;
    text-decoration:none;
    color:#080808;
    background:linear-gradient(135deg,#ffe58a,#c99518 55%,#f8d86b);
    box-shadow:
        0 18px 45px rgba(212,175,55,.36),
        inset 0 1px 0 rgba(255,255,255,.65);
    overflow:hidden;
    isolation:isolate;
    transform:translateZ(0);
    animation:ctaFloat 3.2s ease-in-out infinite;
}

.hero-explore-cta::before{
    content:"";
    position:absolute;
    inset:-2px;
    background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,.85) 45%,transparent 65%);
    transform:translateX(-120%);
    animation:ctaShine 2.8s ease-in-out infinite;
    z-index:-1;
}

.cta-icon{
    width:46px;
    height:46px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:#090909;
    color:#f8d86b;
    box-shadow:0 10px 28px rgba(0,0,0,.28);
}

.hero-explore-cta span strong{
    display:block;
    font-size:15px;
    font-weight:950;
    line-height:1.05;
}

.hero-explore-cta span small{
    display:block;
    margin-top:3px;
    font-size:11px;
    font-weight:900;
    opacity:.72;
}

.cta-arrow{
    margin-left:4px;
    transition:.25s ease;
}

.hero-explore-cta:hover{
    transform:translateY(-4px) scale(1.015);
    box-shadow:
        0 24px 60px rgba(212,175,55,.5),
        inset 0 1px 0 rgba(255,255,255,.75);
}

.hero-explore-cta:hover .cta-arrow{
    transform:translateX(5px);
}

@keyframes ctaShine{
    0%,45%{ transform:translateX(-130%); }
    75%,100%{ transform:translateX(130%); }
}

@keyframes ctaFloat{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-5px); }
}

@media(max-width:768px){
    .hero-explore-cta{
        width:100%;
        justify-content:flex-start;
        margin-top:20px;
        padding:12px 16px 12px 12px;
    }

    .hero-explore-cta span strong{
        font-size:14px;
    }

    .cta-icon{
        width:42px;
        height:42px;
    }

    .cta-arrow{
        margin-left:auto;
    }
}
/* ===== SCROLL INDICATOR PREMIUM ===== */

.scroll-indicator{
    margin-top:28px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
    color:rgba(255,255,255,.7);
    font-size:12px;
    font-weight:700;
    letter-spacing:.5px;
    animation:fadeInUp 1.5s ease;
}

.scroll-indicator span{
    opacity:.7;
}

/* flecha */
.scroll-arrow{
    width:22px;
    height:22px;
    border-left:2px solid rgba(255,255,255,.7);
    border-bottom:2px solid rgba(255,255,255,.7);
    transform:rotate(-45deg);
    animation:scrollBounce 1.6s infinite;
}

/* animación bounce */
@keyframes scrollBounce{
    0%{ transform:translateY(0) rotate(-45deg); opacity:1; }
    50%{ transform:translateY(8px) rotate(-45deg); opacity:.6; }
    100%{ transform:translateY(0) rotate(-45deg); opacity:1; }
}

/* entrada suave */
@keyframes fadeInUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* móvil */
@media(max-width:768px){
    .scroll-indicator{
        margin-top:18px;
    }
}
.login-error{
    margin: 12px 0;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 55, 55, 0.12);
    border: 1px solid rgba(255, 55, 55, 0.35);
    color: #ff6b6b;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
.stable-no-image{
    height:260px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:linear-gradient(135deg,#111,#050505);
    color:#d6b14a;
    border-bottom:1px solid rgba(214,177,74,.2);
}

.stable-no-image i{
    font-size:34px;
}

.stable-no-image span{
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
}
.share-box{
    margin-top:18px;
    padding:18px;
    border-radius:22px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(214,177,74,.18);
}

.share-box h4{
    margin:0 0 14px;
    color:#f3d46e;
    font-size:15px;
    font-weight:900;
}

.share-actions{
    display:grid;
    gap:10px;
}

.share-btn{
    width:100%;
    min-height:50px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    text-decoration:none;
    font-weight:900;
    border:none;
    cursor:pointer;
    font-size:14px;
}

.whatsapp-share{
    background:#25D366;
    color:#050505;
}

.copy-share{
    background:#fff;
    color:#050505;
}
.mini-share-btn{
    flex:1;
    height:42px;
    border-radius:14px;
    border:1px solid rgba(212,175,55,.18);
    background:rgba(255,255,255,.03);
    color:#d4af37;
    font-size:13px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    cursor:pointer;
    text-decoration:none;
    transition:.25s;
}

.mini-share-btn:hover{
    background:#d4af37;
    color:#050505;
    transform:translateY(-2px);
}
.hero-publish-cta{
    position:relative;
    margin-top:16px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    width:100%;
    padding:18px 20px;
    border-radius:24px;
    text-decoration:none;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    overflow:hidden;
    transition:.30s ease;
}

.hero-publish-cta::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(212,175,55,0.08),
        transparent 40%
    );
    pointer-events:none;
}

.hero-publish-cta:hover{
    transform:translateY(-4px);
    border-color:rgba(212,175,55,.30);
    box-shadow:0 18px 45px rgba(0,0,0,.35);
}

.publish-icon{
    width:52px;
    height:52px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#d4af37,#f1d27a);
    color:#111;
    font-size:18px;
    flex-shrink:0;
    box-shadow:0 10px 25px rgba(212,175,55,.22);
}

.publish-text{
    flex:1;
    display:flex;
    flex-direction:column;
}

.publish-text strong{
    color:#fff;
    font-size:16px;
    font-weight:700;
    margin-bottom:3px;
}

.publish-text span{
    color:rgba(255,255,255,.62);
    font-size:13px;
}

.publish-badge{
    padding:8px 14px;
    border-radius:999px;
    background:rgba(212,175,55,.12);
    border:1px solid rgba(212,175,55,.20);
    color:#d4af37;
    font-size:11px;
    font-weight:800;
    letter-spacing:.5px;
    text-transform:uppercase;
}

/* MOBILE */

@media(max-width:768px){

    .hero-publish-cta{
        padding:16px;
        gap:12px;
    }

    .publish-icon{
        width:46px;
        height:46px;
        border-radius:15px;
        font-size:16px;
    }

    .publish-text strong{
        font-size:15px;
    }

    .publish-text span{
        font-size:12px;
    }

    .publish-badge{
        display:none;
    }
}
.footer-social-premium{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:22px;
}

.footer-social-premium a{
    position:relative;

    width:46px;
    height:46px;

    min-width:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    text-decoration:none;

    color:#f3d46e;

    font-size:17px;

    background:
        radial-gradient(circle at top left, rgba(255,224,130,.18), transparent 38%),
        linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));

    border:1px solid rgba(214,177,74,.16);

    box-shadow:
        0 10px 24px rgba(0,0,0,.32),
        inset 0 0 14px rgba(255,224,130,.03);

    overflow:hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.footer-social-premium a::before{
    content:"";

    position:absolute;
    inset:-1px;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,224,130,.25),
        transparent
    );

    transform:translateX(-140%);
    transition:transform .65s ease;
}

.footer-social-premium a:hover::before{
    transform:translateX(140%);
}

.footer-social-premium a:hover{
    transform:translateY(-4px);

    border-color:rgba(255,224,130,.45);

    box-shadow:
        0 16px 40px rgba(214,177,74,.14),
        0 0 18px rgba(255,224,130,.08);
}

.footer-social-premium i{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    justify-content:center;

    line-height:1;
}