/* RESET */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: 'Inter', sans-serif;
    color: #E3E3E3;
    background-color: #1a1a1a;
    line-height: 1.6;
}

/* HERO DEL PRODUCTO */

.dte-hero {
    position: relative;
    padding: 180px 40px 80px;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.dte-hero::before {
    content: '';
    position: absolute;
    inset: -5px;
    background-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.35) 100%
    ), var(--producto-bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px);
    z-index: 0;
}

.dte-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #1a1a1a);
    z-index: 1;
    pointer-events: none;
}

.dte-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.dte-hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #ff9900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    border: 1px solid #ff9900;
    padding: 4px 14px;
    border-radius: 20px;
}

.dte-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.dte-hero-slogan {
    font-size: 1.2rem;
    font-weight: 300;
    color: #E3E3E3;
    max-width: 500px;
}

/* CONTENIDO */

.dte-content {
    background-color: #1a1a1a;
    padding: 80px 40px;
}

.dte-content-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.dte-block {
    position: relative;
    padding-left: 24px;
    border-left: 3px solid #ff9900;
}

.dte-text {
    font-size: 1.1rem;
    font-weight: 300;
    color: #E3E3E3;
    line-height: 1.8;
}

/* CTA */

.dte-cta {
    background-color: #2F2F2F;
    padding: 80px 40px;
    text-align: center;
}

.dte-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.dte-cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: #E3E3E3;
    margin-bottom: 12px;
}

.dte-cta-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: #aaa;
    margin-bottom: 36px;
}

.dte-cta-btn {
    display: inline-block;
    background-color: #ff9900;
    color: #fff;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.dte-cta-btn:hover {
    background-color: #e08700;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .dte-hero {
        padding: 160px 40px 70px;
    }

    .dte-hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 640px) {
    .dte-hero {
        padding: 140px 20px 60px;
        min-height: 350px;
    }

    .dte-hero-title {
        font-size: 2.2rem;
    }

    .dte-hero-slogan {
        font-size: 1rem;
    }

    .dte-content {
        padding: 50px 20px;
    }

    .dte-text {
        font-size: 1rem;
    }

    .dte-cta {
        padding: 60px 20px;
    }

    .dte-cta-title {
        font-size: 1.6rem;
    }
}
