:root {
    --td-primary: #0069b4;
    --td-secondary: #ff6f01;
    --td-accent: #ff8c34;
    --td-dark: #1b2430;
    --td-bg: #f6f7fb;
    --td-radius-lg: 1.2rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    color: #222;
    background-color: #fff;
}

/* HEADER */
.td-logo {
    height: 40px;
}

/* Banner hero */
.td-banner-hero {
    position: relative;
    width: 100%;
    min-height: 260px;
    background-size: cover;
    background-position: center;
}

.td-banner-hero__overlay {
    width: 100%;
    height: 100%;
    padding: 3rem 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.55)
    );
    display: flex;
    align-items: center;
}

.td-banner-hero__box {
    max-width: 720px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--td-radius-lg);
    padding: 1.5rem 2rem;
    margin: 0 auto;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
    text-align: center;
}

.td-banner-hero__tagline {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--td-secondary);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.td-banner-hero__title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--td-dark);
    margin-bottom: 0.3rem;
}

.td-banner-hero__subtitle {
    color: #555;
    font-size: 0.98rem;
    margin: 0;
}

/* MAIN GENÉRICO */
.td-main {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Tarjetas de servicio/producto */
.td-service-card,
.td-product-card {
    background-color: #ffffff;
    border-radius: var(--td-radius-lg);
    padding: 1.8rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.td-service-image,
.td-product-image {
    max-height: 240px;
    object-fit: cover;
    border-radius: var(--td-radius-lg);
}

.td-service-title,
.td-product-title {
    color: var(--td-dark);
}

/* Bandas de frases célebres */
.td-quote-strip {
    padding: 1.8rem 0;
    text-align: center;
}

.td-quote-strip--primary {
    background-color: var(--td-primary);
}

.td-quote-strip--secondary {
    background-color: var(--td-secondary);
}

.td-quote-strip--accent {
    background-color: var(--td-accent);
}

.td-quote-strip p {
    margin: 0;
    color: #000; /* lo que pediste: texto en negro */
    font-weight: 500;
}

/* Resumen carrito */
.td-cart-summary {
    margin-top: 2rem;
    padding: 1.5rem 1.8rem;
    border-radius: var(--td-radius-lg);
    background-color: var(--td-bg);
}

/* Footer */
.td-footer {
    background-color: #0b1020;
    color: #cbd5f5;
    margin-top: 3rem;
}

.td-footer a {
    color: #cbd5f5;
    text-decoration: none;
}

.td-footer a:hover {
    text-decoration: underline;
}

/* Alertas */
.td-alert {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.td-alert--success {
    background-color: #d1fae5;
    color: #065f46;
}

.td-alert--error {
    background-color: #fee2e2;
    color: #b91c1c;
}

