.te_hero {
    background: url('../img/tes_frazcos.jpeg') center/cover no-repeat;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlayServicios {
    width: 100%;
    height: 50vh;
    background: rgba(4, 4, 4, 0.567);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* overlay abajo del texto */
}
.te_hero_content{
    color: white;
    max-width: 700px;
    position: relative;
    z-index: 2; /* texto por encima */
}
.te_hero_content h1 {
    color: #fff;
    font-size: 3rem;
    text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

.te_hero_content p {
    color: #eee;
    margin-top: 10px;
    font-size: 1.2rem;
}

.te_main {
    padding: 60px 10%;
}

/* INTRO */
.te_intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.te_intro h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* TEXTO COMPLETO PREMIUM */
.te_texto_completo {
    background: #fafafa;
    padding: 40px 50px;
    border-radius: 15px;
    line-height: 1.7;
    margin-bottom: 60px;
}

.te_texto_completo h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.precio_te {
    font-size: 1.3rem;
    margin-top: 30px;
    text-align: center;
    color: #333;
}

/* BENEFICIOS */
.te_mezclas {
    text-align: center;
    padding: 80px 20px;
}

.te_mezclas_sub {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #555;
}

/* GRID */
.te_cards_grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
}

/* CARD */
.te_card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform .3s, box-shadow .3s;
}

.te_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.te_emoji {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.btn_te_ver {
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: .3s;
}

.btn_te_ver:hover {
    background: #333;
}

/* MODAL */
.te_modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.te_modal_content {
    background: white;
    width: 90%;
    max-width: 520px;
    padding: 30px;
    border-radius: 20px;
    position: relative;
}

#teModalClose {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    cursor: pointer;
}

.te_modal_body h3 {
    margin-top: 20px;
    color: #444;
}

.btn_whats {
    display: inline-block;
    margin-top: 20px;
    background: #25D366;
    padding: 12px 25px;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.btn_whats:hover {
    background: #1ebe5c;
}


/* CTA FINAL */
.te_cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 0;
    background: #f4f1ed;
    border-radius: 12px;
}

.te_btn {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 25px;
    background: #6c4f36;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.te_btn:hover {
    background: #4a3625;
}

/* FOOTER */
.te_footer {
    text-align: center;
    padding: 25px;
    color: #555;
    margin-top: 60px;
}
