/*
 * ============================================================
 *  TEXACO VALERIANO — Child Theme Stylesheet
 *  Archivo: texaco-valeriano.css
 *  Descripción: Estilos principales para el sitio web de
 *               Texaco Valeriano, Siguatepeque, Honduras.
 *  Versión: 1.0
 * ============================================================
 */

/* ============================================================
   VARIABLES DE MARCA / DESIGN TOKENS
   ============================================================ */
:root {
    /* Colores Texaco */
    --red-texaco: #d42027;
    --red-dark: #a51820;
    --red-light: #e84b52;

    /* Azules */
    --blue-dark: #0a1628;
    --blue-mid: #1a2b4a;
    --blue-light: #2c4a7a;

    /* Neutros */
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gray-light: #ebebeb;
    --gray-mid: #9a9a9a;
    --gray-dark: #3a3a3a;
    --black: #0d0d0d;

    /* Tipografía */
    --font-heading: "Oswald", "Arial Narrow", Arial, sans-serif;
    --font-body: "Source Sans 3", "Open Sans", Arial, sans-serif;

    /* Espaciado */
    --section-pad: 80px 0;
    --section-pad-sm: 48px 0;
    --container: 1180px;
    --radius: 8px;
    --radius-lg: 16px;

    /* Sombras */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 8px 36px rgba(0, 0, 0, 0.22);
    --shadow-red: 0 4px 20px rgba(212, 32, 39, 0.3);

    /* Transiciones */
    --transition: 0.25s ease;
}

/* ============================================================
   RESET Y BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--red-texaco);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--red-dark);
}

ul,
ol {
    list-style: none;
}

/* ============================================================
   TIPOGRAFÍA — Google Fonts import via functions.php
   Se importan: Oswald (headings) + Source Sans 3 (body)
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--blue-dark);
    font-weight: 700;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}
h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}
h4 {
    font-size: 1.2rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.tv-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.tv-section {
    padding: var(--section-pad);
}

.tv-section--gray {
    background: var(--off-white);
}

.tv-section--dark {
    background: var(--blue-dark);
    color: var(--white);
}

.tv-section--dark h2,
.tv-section--dark h3,
.tv-section--dark p {
    color: var(--white);
}

.tv-section-title {
    text-align: center;
    margin-bottom: 12px;
}

.tv-section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-mid);
    max-width: 640px;
    margin: 0 auto 48px;
}

.tv-section--dark .tv-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Línea decorativa roja bajo títulos */
.tv-title-line {
    display: block;
    width: 60px;
    height: 4px;
    background: var(--red-texaco);
    margin: 12px auto 0;
    border-radius: 2px;
}

.tv-title-line--left {
    margin: 12px 0 0;
}

/* ============================================================
   BOTONES
   ============================================================ */
.tv-btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.2;
}

.tv-btn--primary {
    background: var(--red-texaco);
    color: var(--white);
    border-color: var(--red-texaco);
    box-shadow: var(--shadow-red);
}

.tv-btn--primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 32, 39, 0.4);
}

.tv-btn--outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.tv-btn--outline:hover {
    background: var(--white);
    color: var(--blue-dark);
    transform: translateY(-2px);
}

.tv-btn--outline-red {
    background: transparent;
    color: var(--red-texaco);
    border-color: var(--red-texaco);
}

.tv-btn--outline-red:hover {
    background: var(--red-texaco);
    color: var(--white);
    transform: translateY(-2px);
}

.tv-btn--dark {
    background: var(--blue-dark);
    color: var(--white);
    border-color: var(--blue-dark);
}

.tv-btn--dark:hover {
    background: var(--blue-mid);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================================
   NAVBAR / HEADER GLOBAL
   ============================================================ */
.tv-navbar {
    background: var(--blue-dark);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.tv-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.tv-navbar__logo img {
    height: 38px !important;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.tv-navbar__nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.tv-navbar__nav a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
}

.tv-navbar__nav a:hover {
    color: var(--red-texaco);
}

.tv-navbar__cta {
    background: var(--red-texaco);
    color: var(--white);
    padding: 10px 22px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition);
}

.tv-navbar__cta:hover {
    background: var(--red-dark);
    color: var(--white);
}

/* Hamburger móvil */
.tv-navbar__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.tv-navbar__toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 2px;
    transition: all var(--transition);
}
.tv-navbar .tv-navbar__toggle span {
    display: block !important;
    min-height: 3px !important;
    background-color: #ffffff !important;
    border-radius: 999px !important;
    margin: -1px 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}
/* ============================================================
   HERO — PÁGINA PRINCIPAL
   ============================================================ */
.tv-hero {
    background: linear-gradient(
        135deg,
        var(--blue-dark) 0%,
        var(--blue-mid) 55%,
        #1e0406 100%
    );
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}

/* Patrón de textura diagonal */
.tv-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255, 255, 255, 0.015) 40px,
        rgba(255, 255, 255, 0.015) 80px
    );
    pointer-events: none;
}

/* Acento rojo lateral */
.tv-hero::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--red-texaco);
}

.tv-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tv-hero__badge {
    display: inline-block;
    background: var(--red-texaco);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.tv-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.tv-hero__title span {
    color: var(--red-texaco);
}

.tv-hero__subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.tv-hero__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.7;
}

.tv-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Panel visual derecho del hero */
.tv-hero__visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.tv-hero__logo-wrap {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    text-align: center;
    width: 100%;
    backdrop-filter: blur(8px);
}

.tv-hero__logo-wrap img {
    max-height: 90px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
}

/* Stats en el hero */
.tv-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}

.tv-hero__stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 18px 14px;
    text-align: center;
    backdrop-filter: blur(4px);
}

.tv-hero__stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--red-texaco);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.tv-hero__stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.3;
}

/* ============================================================
   SECCIÓN SERVICIOS — CARDS
   ============================================================ */
.tv-services {
    background: var(--white);
    padding: var(--section-pad);
}

.tv-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tv-service-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.tv-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red-texaco);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.tv-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.tv-service-card:hover::before {
    transform: scaleX(1);
}

.tv-service-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    transition: background var(--transition);
}

.tv-service-card:hover .tv-service-card__icon {
    background: linear-gradient(135deg, var(--red-texaco), var(--red-dark));
}

.tv-service-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.tv-service-card__text {
    font-size: 0.93rem;
    color: var(--gray-mid);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   SECCIÓN GASTRONÓMICA — PIZZA Y POLLO
   ============================================================ */
.tv-food {
    background: var(--off-white);
    padding: var(--section-pad);
}

.tv-food__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.tv-food-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
}

.tv-food-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.tv-food-block__img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    background: var(--gray-light);
}

.tv-food-block__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tv-food-block:hover .tv-food-block__img img {
    transform: scale(1.05);
}

/* Placeholder cuando no hay imagen */
.tv-food-block__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    color: rgba(255, 255, 255, 0.5);
    font-size: 3.5rem;
    gap: 8px;
}

.tv-food-block__img-placeholder span {
    font-size: 0.85rem;
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tv-food-block__body {
    padding: 28px 28px 32px;
}

.tv-food-block__label {
    display: inline-block;
    background: var(--red-texaco);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.tv-food-block__title {
    font-size: 1.6rem;
    color: var(--blue-dark);
    margin-bottom: 10px;
}

.tv-food-block__desc {
    color: var(--gray-mid);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* ============================================================
   SECCIÓN LAVADO Y CUIDADO VEHICULAR
   ============================================================ */
.tv-wash {
    background: var(--white);
    padding: var(--section-pad);
}

.tv-wash__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tv-wash__content {
}

.tv-wash__content .tv-section-title {
    text-align: left;
}

.tv-wash__content .tv-title-line {
    margin: 12px 0 24px;
}

.tv-wash__content p {
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.tv-wash__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tv-wash__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    background: var(--off-white);
    border-radius: var(--radius);
    border-left: 3px solid var(--red-texaco);
    transition: all var(--transition);
}

.tv-wash__item:hover {
    background: var(--gray-light);
    transform: translateX(4px);
}

.tv-wash__item-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.tv-wash__item-text h4 {
    font-size: 0.98rem;
    color: var(--blue-dark);
    margin-bottom: 4px;
}

.tv-wash__item-text p {
    font-size: 0.85rem;
    color: var(--gray-mid);
    margin: 0;
}

/* Panel visual del lavado */
.tv-wash__visual {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tv-wash__visual::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(212, 32, 39, 0.15);
}

.tv-wash__visual-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    display: block;
}

.tv-wash__visual h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.tv-wash__visual p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

/* ============================================================
   SECCIÓN UBICACIÓN
   ============================================================ */
.tv-location {
    background: var(--blue-dark);
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
}

.tv-location::before {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(212, 32, 39, 0.08);
}

.tv-location__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tv-location__content .tv-section-title {
    text-align: left;
    color: var(--white);
}

.tv-location__content .tv-title-line {
    margin: 12px 0 24px;
}

.tv-location__content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.tv-location__data {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.tv-location__data-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
}

.tv-location__data-item .icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Mapa placeholder */
.tv-location__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 340px;
    background: var(--blue-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.tv-location__map-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
}

.tv-location__map-placeholder .map-icon {
    font-size: 3.5rem;
    margin-bottom: 12px;
    display: block;
}

.tv-location__map-placeholder p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* Contenedor para el iframe de Google Maps */
.tv-location__map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.tv-cta {
    background: linear-gradient(
        135deg,
        var(--red-dark) 0%,
        var(--red-texaco) 60%,
        #c0392b 100%
    );
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tv-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgba(0, 0, 0, 0.04) 30px,
        rgba(0, 0, 0, 0.04) 60px
    );
    pointer-events: none;
}

.tv-cta__title {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 16px;
    position: relative;
}

.tv-cta__subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.tv-cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.tv-footer {
    background: var(--black);
    padding: 56px 0 28px;
}

.tv-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.tv-footer__logo img {
    max-height: 55px;
    width: auto;
    margin-bottom: 16px;
    object-fit: contain;
}

.tv-footer__desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tv-footer__col-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red-texaco);
    margin-bottom: 18px;
}

.tv-footer__col ul li {
    margin-bottom: 10px;
}

.tv-footer__col ul li a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    transition: color var(--transition);
}

.tv-footer__col ul li a:hover {
    color: var(--white);
}

.tv-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    margin-bottom: 12px;
}

.tv-footer__contact-item .icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.tv-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.tv-footer__copy {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================================
   PÁGINA DE VACANTES — HERO
   ============================================================ */
.tv-vacantes-hero {
    background: linear-gradient(
        135deg,
        var(--blue-dark) 0%,
        var(--blue-mid) 70%,
        #1a0406 100%
    );
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tv-vacantes-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red-texaco);
}

.tv-vacantes-hero__badge {
    display: inline-block;
    background: var(--red-texaco);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.tv-vacantes-hero__title {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 16px;
}

.tv-vacantes-hero__subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   SECCIÓN BENEFICIOS
   ============================================================ */
.tv-benefits {
    background: var(--off-white);
    padding: var(--section-pad-sm);
}

.tv-benefits__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.tv-benefit-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 40px;
    padding: 12px 22px;
    font-size: 0.95rem;
    color: var(--blue-dark);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all var(--transition);
}

.tv-benefit-pill:hover {
    border-color: var(--red-texaco);
    box-shadow: 0 4px 16px rgba(212, 32, 39, 0.12);
    transform: translateY(-2px);
}

.tv-benefit-pill .pill-icon {
    font-size: 1.2rem;
}

/* ============================================================
   CARDS DE VACANTES
   ============================================================ */
.tv-jobs {
    background: var(--white);
    padding: var(--section-pad);
}

.tv-jobs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tv-job-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.tv-job-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-texaco), var(--red-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.tv-job-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.tv-job-card:hover::after {
    transform: scaleX(1);
}

.tv-job-card__icon {
    width: 56px;
    height: 56px;
    background: var(--off-white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    transition: background var(--transition);
}

.tv-job-card:hover .tv-job-card__icon {
    background: var(--red-texaco);
}

.tv-job-card__num {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red-texaco);
    margin-bottom: 8px;
}

.tv-job-card__title {
    font-size: 1.2rem;
    color: var(--blue-dark);
    margin-bottom: 12px;
}

.tv-job-card__desc {
    font-size: 0.92rem;
    color: var(--gray-mid);
    line-height: 1.65;
    margin-bottom: 22px;
}

.tv-job-card__apply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--red-texaco);
    transition: gap var(--transition);
}

.tv-job-card__apply:hover {
    gap: 10px;
    color: var(--red-dark);
}

/* ============================================================
   FORMULARIO DE APLICACIÓN LABORAL
   ============================================================ */
.tv-form-section {
    background: var(--off-white);
    padding: var(--section-pad);
}

.tv-form-section__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.tv-form-info {
}

.tv-form-info .tv-section-title {
    text-align: left;
}

.tv-form-info .tv-title-line {
    margin: 12px 0 20px;
}

.tv-form-info p {
    color: var(--gray-mid);
    font-size: 0.96rem;
    margin-bottom: 16px;
}

.tv-form-info__note {
    background: var(--blue-dark);
    color: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    font-size: 0.9rem;
    margin-top: 24px;
    line-height: 1.6;
}

.tv-form-info__note strong {
    color: var(--red-texaco);
}

/* Contenedor del formulario CF7 */
.tv-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-card);
}

/* Estilos CF7 */
.tv-form-wrap .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tv-form-wrap .wpcf7-form-control-wrap {
    display: block;
}

.tv-form-wrap .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.tv-form-wrap .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tv-form-wrap .form-label {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--blue-dark);
}

.tv-form-wrap .form-label .req {
    color: var(--red-texaco);
    margin-left: 2px;
}

/* Input/Select/Textarea base */
.tv-form-wrap input[type="text"],
.tv-form-wrap input[type="email"],
.tv-form-wrap input[type="tel"],
.tv-form-wrap select,
.tv-form-wrap textarea,
.tv-form-wrap input[type="file"],
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea,
.wpcf7-form input[type="file"] {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.96rem;
    color: var(--gray-dark);
    background: var(--white);
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.tv-form-wrap input:focus,
.tv-form-wrap select:focus,
.tv-form-wrap textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    border-color: var(--red-texaco);
    box-shadow: 0 0 0 3px rgba(212, 32, 39, 0.1);
}

.tv-form-wrap textarea,
.wpcf7-form textarea {
    min-height: 100px;
    resize: vertical;
}

.tv-form-wrap input[type="file"],
.wpcf7-form input[type="file"] {
    padding: 10px 14px;
    background: var(--off-white);
    cursor: pointer;
    font-size: 0.9rem;
}

/* Checkbox de privacidad CF7 */
.wpcf7-acceptance label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.92rem;
    color: var(--gray-mid);
    line-height: 1.5;
}

.wpcf7-acceptance input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--red-texaco);
}

/* Botón submit CF7 */
.wpcf7-submit,
.tv-form-submit {
    width: 100%;
    background: var(--red-texaco);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: var(--shadow-red);
    margin-top: 8px;
}

.wpcf7-submit:hover,
.tv-form-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 32, 39, 0.4);
}

/* Mensajes CF7 */
.wpcf7-response-output {
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 0.92rem;
    margin-top: 8px;
    border: none !important;
}

.wpcf7-mail-sent-ok {
    background: #e8f5e9;
    color: #2e7d32;
}

.wpcf7-validation-errors,
.wpcf7-spam-blocked {
    background: #fff3e0;
    color: #e65100;
}

/* ============================================================
   SKIP TO CONTENT (ACCESIBILIDAD)
   ============================================================ */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--red-texaco);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 0 0 var(--radius) var(--radius);
    font-weight: 600;
    z-index: 9999;
    transition: top var(--transition);
}

.skip-to-content:focus {
    top: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 992px)
   ============================================================ */
@media (max-width: 992px) {
    .tv-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tv-hero__visual {
        order: -1;
    }

    .tv-hero__logo-wrap {
        padding: 24px;
    }

    .tv-hero__stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .tv-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tv-food__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .tv-wash__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tv-location__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tv-jobs__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tv-form-section__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .tv-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .tv-navbar__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--blue-dark);
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    .tv-navbar__nav.is-open {
        display: flex;
    }

    .tv-navbar__nav a {
        padding: 14px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        width: 100%;
    }

    .tv-navbar__toggle {
        display: block;
    }

    .tv-navbar {
        position: sticky;
    }
}

/* ============================================================
   RESPONSIVE — MÓVIL (max 640px)
   ============================================================ */
@media (max-width: 640px) {
    :root {
        --section-pad: 56px 0;
        --section-pad-sm: 36px 0;
    }

    .tv-hero {
        min-height: auto;
        padding: 60px 0 50px;
    }

    .tv-hero__actions {
        width: 100%;
        max-width: 300px !important;
        margin-left: inherit !important;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .tv-hero__actions .tv-btn {
        width: 100%;
        text-align: center;
    }

    .tv-hero__stats {
        grid-template-columns: 1fr 1fr;
    }

    .tv-services__grid {
        grid-template-columns: 1fr;
    }

    .tv-wash__items {
        grid-template-columns: 1fr;
    }

    .tv-jobs__grid {
        grid-template-columns: 1fr;
    }

    .tv-form-wrap {
        padding: 28px 20px;
    }

    .tv-form-wrap .form-row {
        grid-template-columns: 1fr;
    }

    .tv-footer__grid {
        grid-template-columns: 1fr;
    }

    .tv-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .tv-cta__actions {
        flex-direction: column;
        align-items: center;
        max-width: 300px !important;
    }

    .tv-cta__actions .tv-btn {
        width: 100%;
        max-width: 320px;
    }
}

/* ============================================================
   ANIMACIONES DE ENTRADA (Intersection Observer vía JS)
   ============================================================ */
.tv-animate {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.tv-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.tv-animate--delay-1 {
    transition-delay: 0.1s;
}
.tv-animate--delay-2 {
    transition-delay: 0.2s;
}
.tv-animate--delay-3 {
    transition-delay: 0.3s;
}
.tv-animate--delay-4 {
    transition-delay: 0.4s;
}
.tv-animate--delay-5 {
    transition-delay: 0.5s;
}

/* ============================================================
   UTILIDADES GENERALES
   ============================================================ */
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-white {
    color: var(--white);
}
.text-red {
    color: var(--red-texaco);
}
.mt-8 {
    margin-top: 8px;
}
.mt-16 {
    margin-top: 16px;
}
.mt-24 {
    margin-top: 24px;
}
.mt-32 {
    margin-top: 32px;
}
.mb-8 {
    margin-bottom: 8px;
}
.mb-16 {
    margin-bottom: 16px;
}
.mb-24 {
    margin-bottom: 24px;
}
.mb-32 {
    margin-bottom: 32px;
}

/* ============================================================
   FIX RESPONSIVE — MENU, HERO Y FOOTER TEXACO VALERIANO
   Pegar al final de texaco-valeriano.css
   ============================================================ */

/* Evita desbordes horizontales generales */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Botones: mejor comportamiento en pantallas pequeñas */
.tv-btn {
    white-space: normal;
    word-break: normal;
}

/* ============================================================
   TABLET Y MOVIL — MENU HAMBURGUESA
   ============================================================ */
@media (max-width: 992px) {
    .tv-navbar {
        padding: 10px 0;
    }

    .tv-navbar__inner {
        position: relative;
    }

    .tv-navbar__logo img {
        height: 34px !important;
        max-width: 160px;
    }

    .tv-navbar__toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 42px;
        height: 42px;
        padding: 8px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
    }

    .tv-navbar__toggle span {
        width: 24px;
        height: 3px;
        margin: 3px 0;
    }

    .tv-navbar__nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        width: auto;
        background: var(--blue-dark);
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 18px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
        z-index: 2000;
    }

    .tv-navbar__nav.is-open {
        display: flex;
    }

    .tv-navbar__nav a,
    .tv-navbar__nav .tv-navbar__cta {
        display: block;
        width: 100%;
        padding: 14px 16px;
        text-align: center;
        border-radius: 10px;
        border-bottom: none;
        background: rgba(255, 255, 255, 0.06);
        color: var(--white);
    }

    .tv-navbar__nav a:hover {
        background: rgba(212, 32, 39, 0.95);
        color: var(--white);
    }

    .tv-navbar__nav .tv-navbar__cta {
        background: var(--red-texaco);
        color: var(--white);
        margin-top: 4px;
    }
}

/* ============================================================
   MOVIL — HERO PRINCIPAL CENTRADO
   ============================================================ */
@media (max-width: 640px) {
    .tv-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .tv-hero {
        min-height: auto;
        padding: 42px 0 44px;
        text-align: center;
    }

    .tv-hero::after {
        width: 4px;
    }

    .tv-hero__inner {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .tv-hero__content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .tv-hero__badge {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.76rem;
        padding: 6px 14px;
    }

    .tv-hero__title {
        text-align: center;
        font-size: clamp(2.6rem, 14vw, 4rem);
        line-height: 0.98;
        margin-bottom: 18px;
    }

    .tv-hero__subtitle {
        text-align: center;
        font-size: 1.05rem;
        line-height: 1.45;
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }

    .tv-hero__desc {
        text-align: center;
        font-size: 0.98rem;
        line-height: 1.65;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 28px;
    }

    .tv-hero__actions {
        width: 100%;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .tv-hero__actions .tv-btn {
        display: flex;
        width: 100%;
        min-height: 50px;
        padding: 13px 16px;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
        line-height: 1.25;
        letter-spacing: 0.04em;
        white-space: normal;
    }

    .tv-hero__visual {
        order: -1;
        width: 100%;
        align-items: center;
    }

    .tv-hero__logo-wrap {
        width: 100%;
        max-width: 300px !important;
        padding: 20px 18px;
        margin-left: auto;
        margin-right: auto;
    }

    .tv-hero__logo-wrap img {
        max-height: 64px !important;
        width: auto !important;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .tv-hero__stats {
        width: 100%;
        max-width: 340px;
        grid-template-columns: 1fr;
        margin-left: auto;
        margin-right: auto;
    }

    .tv-hero__stat {
        padding: 14px 12px;
    }

    .tv-hero__stat-number {
        font-size: 1.55rem;
    }

    .tv-hero__stat-label {
        font-size: 0.74rem;
    }
}

/* ============================================================
   MOVIL — SECCIONES GENERALES
   ============================================================ */
@media (max-width: 640px) {
    .tv-section-title,
    .tv-section-subtitle {
        text-align: center;
    }

    .tv-title-line,
    .tv-title-line--left {
        margin-left: auto;
        margin-right: auto;
    }

    .tv-wash__content,
    .tv-wash__content .tv-section-title,
    .tv-location__content,
    .tv-location__content .tv-section-title {
        text-align: center;
    }

    .tv-wash__content .tv-title-line,
    .tv-location__content .tv-title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .tv-location__data-item {
        justify-content: center;
        text-align: center;
        align-items: flex-start;
    }

    .tv-location__map {
        height: 300px;
    }

    .tv-cta__actions {
        width: 100%;
        max-width: 300px !important;
        margin-left: auto;
        margin-right: auto;
    }

    .tv-cta__actions .tv-btn {
        width: 100%;
        max-width: 250px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 13px 16px;
        font-size: 0.9rem;
        white-space: normal;
    }
}

/* ============================================================
   MOVIL — FOOTER CENTRADO
   ============================================================ */
@media (max-width: 640px) {
    .tv-footer {
        text-align: center;
        padding: 46px 0 24px;
    }

    .tv-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        margin-bottom: 36px;
    }

    .tv-footer__col {
        text-align: center;
    }

    .tv-footer__logo img {
        margin-left: auto;
        margin-right: auto;
        max-height: 42px !important;
    }

    .tv-footer__desc {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .tv-footer__col ul {
        padding-left: 0;
        margin-left: 0;
    }

    .tv-footer__contact-item {
        justify-content: center;
        text-align: center;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .tv-footer__bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .tv-footer__copy {
        text-align: center;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}
