/* ======================================================
   ASTURLIFT ASCENSORES - Custom Stylesheet
   Colors: #023C7C (primary blue) | #ffffff (white) | #ECC522 (yellow accent)
   ====================================================== */

/* ==============================
   CSS VARIABLES
============================== */
:root {
    --blue: #023C7C;
    --blue-dark: #012858;
    --blue-mid: #034a98;
    --yellow: #ECC522;
    --yellow-dark: #c9a61a;
    --white: #ffffff;
    --light: #f0f5fb;
    --gray: #e5edf6;
    --text: #1a2535;
    --text-light: #5d6e82;
    --border: #d6e1f0;
    --shadow: 0 4px 20px rgba(2, 60, 124, 0.10);
    --shadow-lg: 0 12px 48px rgba(2, 60, 124, 0.18);
    --radius: 14px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--text);
}

/* ==============================
   UTILITY CLASSES
============================== */
.section-pad {
    padding: 100px 0;
}

.section-pad-sm {
    padding: 60px 0;
}

.section-pad-top {
    padding-top: 100px;
}

.bg-light-blue {
    background-color: var(--light);
}

.bg-blue {
    background-color: var(--blue);
}

.text-yellow {
    color: var(--yellow) !important;
}

.text-blue {
    color: var(--blue) !important;
}

/* Section Heading */
.section-heading {
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    background: rgba(2, 60, 124, 0.1);
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag.yellow {
    background: rgba(236, 197, 34, 0.15);
    color: var(--yellow-dark);
}

.section-tag.white {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 16px;
}

.section-title.white {
    color: var(--white);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
}

/* ==============================
   BUTTONS
============================== */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    border: 2px solid var(--blue);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2, 60, 124, 0.3);
}

.btn-yellow {
    background: var(--yellow);
    color: var(--blue-dark);
    border-color: var(--yellow);
    font-weight: 700;
}

.btn-yellow:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
    color: var(--blue-dark);
    box-shadow: 0 8px 24px rgba(236, 197, 34, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--blue);
    border-color: var(--white);
}

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

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

/* ==============================
   NAVBAR
============================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    transition: var(--transition);
}

/* Transparent state (on hero) */
.site-header.transparent .navbar-wrap {
    padding: 28px 0;
}

/* Scrolled state */
.site-header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(2,60,124,0.10);
}

.site-header.scrolled .navbar-wrap {
    padding: 14px 0;
}

/* Always solid for inner pages */
.site-header.solid {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(2,60,124,0.10);
}

.site-header.solid .navbar-wrap {
    padding: 16px 0;
}

/* Logo */
.navbar-logo img {
    height: 48px;
    width: auto;
    transition: filter 0.3s ease;
}

.logo-white {
    filter: brightness(0) invert(1);
}

/* Nav links */
.navbar-nav-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.navbar-nav-wrap .nav-link {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--blue);
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
}

.navbar-nav-wrap .nav-link:hover {
    background: var(--light);
    color: var(--blue);
}

/* On transparent header, nav links white */
.site-header.transparent .navbar-nav-wrap .nav-link {
    color: rgba(255,255,255,0.9);
}

.site-header.transparent .navbar-nav-wrap .nav-link:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

/* Dropdown */
.nav-item-dropdown {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.nav-item-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 9px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 8px;
}

.nav-dropdown a:hover {
    background: var(--light);
    color: var(--blue);
}

/* Nav right area */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-weight: 600;
}

.navbar-phone .phone-icon {
    width: 38px;
    height: 38px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--blue);
    transition: var(--transition);
}

.navbar-phone:hover .phone-icon {
    background: var(--blue);
    color: var(--white);
}

.site-header.transparent .navbar-phone {
    color: var(--white);
}

.site-header.transparent .navbar-phone .phone-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.btn-mant {
    background: var(--yellow);
    color: var(--blue-dark) !important;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 50px;
    letter-spacing: 0.03em;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-mant:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 197, 34, 0.4);
}

/* Mobile toggle */
.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.navbar-toggler span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--blue);
    border-radius: 3px;
    transition: var(--transition);
}

.site-header.transparent .navbar-toggler span {
    background: var(--white);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blue-dark);
    z-index: 999;
    padding: 100px 30px 40px;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255,255,255,0.15);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu a {
    display: block;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu .mobile-sub a {
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 20px;
    color: rgba(255,255,255,0.8);
    border-bottom: none;
}

.mobile-menu .mobile-cta {
    margin-top: 30px;
    background: var(--yellow);
    color: var(--blue-dark) !important;
    border-radius: 50px;
    text-align: center;
    padding: 18px !important;
    font-size: 1.1rem !important;
    border-bottom: none !important;
}

/* ==============================
   HERO SECTION
============================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/interior-ascensor.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(2, 40, 88, 0.92) 0%, rgba(2, 60, 124, 0.78) 55%, rgba(1, 35, 75, 0.60) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 160px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--yellow);
}

.hero-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    max-width: 520px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 60px;
}

.hero-image-wrap {
    position: relative;
}

.hero-image-wrap img {
    border-radius: var(--radius-lg);
    max-height: 480px;
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.hero-exp-badge {
    position: absolute;
    bottom: -24px;
    left: -20px;
    background: var(--yellow);
    border-radius: var(--radius);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(236,197,34,0.3);
}

.hero-exp-badge .exp-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.hero-exp-badge .exp-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--blue-dark);
    line-height: 1;
}

.hero-exp-badge .exp-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--blue-dark);
    line-height: 1.3;
}

/* Stats strip */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(1, 40, 88, 0.85);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stats-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 22px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-number {
    display: block;
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* ==============================
   SERVICES SECTION
============================== */
.services-section {
    padding: 100px 0 80px;
    background: var(--white);
}

.service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

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

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

/* Featured maintenance card */
.service-card.featured {
    background: var(--blue);
    border-color: var(--blue);
}

.service-card.featured::before {
    background: var(--yellow);
    transform: scaleX(1);
}

.service-card.featured:hover {
    background: var(--blue-mid);
    border-color: var(--blue-mid);
}

.service-card-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(2, 60, 124, 0.07);
    line-height: 1;
    margin-bottom: -16px;
    font-variant-numeric: tabular-nums;
}

.service-card.featured .service-card-num {
    color: rgba(255,255,255,0.1);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card-tag {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
    opacity: 0.7;
}

.service-card.featured .service-card-tag {
    color: var(--yellow);
    opacity: 1;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.service-card.featured p {
    color: rgba(255,255,255,0.8);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue);
    margin-top: 20px;
}

.service-card.featured .service-card-link {
    color: var(--yellow);
}

.service-card-link:hover {
    gap: 10px;
}

/* ==============================
   MAINTENANCE FEATURED SECTION
============================== */
.mant-section {
    background: var(--blue);
    padding: 0;
    overflow: hidden;
}

.mant-section .mant-content {
    padding: 90px 60px 90px 0;
}

.mant-section .mant-image {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.mant-section .mant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.mant-section .mant-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--blue) 0%, transparent 40%);
    z-index: 1;
}

.mant-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 36px 0 40px;
}

.mant-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 20px 22px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.mant-step:hover {
    background: rgba(255,255,255,0.12);
}

.mant-step-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--blue-dark);
    line-height: 1;
}

.mant-step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.mant-step-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

.mant-phone-strip {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 14px 28px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-top: 12px;
}

.mant-phone-strip .ph-icon {
    width: 38px;
    height: 38px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-dark);
    font-size: 1rem;
}

.mant-phone-strip .ph-info small {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
}

.mant-phone-strip .ph-info strong {
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 800;
}

/* ==============================
   NORMATIVA CTA
============================== */
.normativa-cta {
    position: relative;
    padding: 100px 0;
    background-image: url('../images/eficiencia.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.normativa-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(1, 40, 88, 0.82);
}

.normativa-cta .container {
    position: relative;
    z-index: 1;
}

.normativa-cta .cta-label {
    display: inline-block;
    background: var(--yellow);
    color: var(--blue-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.normativa-cta h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.2;
    text-align: center;
}

/* ==============================
   ABOUT SECTION
============================== */
.about-section {
    padding: 100px 0;
    background: var(--light);
}

.about-image-wrap {
    position: relative;
    padding-bottom: 40px;
}

.about-image-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-exp-box {
    position: absolute;
    bottom: 0;
    right: -20px;
    background: var(--blue);
    color: var(--white);
    border-radius: var(--radius);
    padding: 20px 26px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
}

.about-exp-box .icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.about-exp-box .exp-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
}

.about-exp-box .exp-txt {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.35;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

.about-item:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
}

.about-item .about-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    object-fit: contain;
}

.about-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.about-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.55;
}

/* ==============================
   PAGE HEADER (Inner pages)
============================== */
.page-header {
    background: var(--blue);
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    color: var(--yellow);
}

.breadcrumb-nav .separator {
    color: rgba(255,255,255,0.35);
}

.breadcrumb-nav .current {
    color: var(--yellow);
    font-weight: 600;
}

/* ==============================
   BLOG / PRODUCT CARDS
============================== */
.product-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-4px);
}

.product-card-img {
    overflow: hidden;
    height: 200px;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(2,60,124,0.08);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 14px;
}

.product-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.product-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--blue);
    margin-top: 18px;
    padding: 9px 18px;
    background: var(--light);
    border-radius: 50px;
    transition: var(--transition);
}

.product-card .card-link:hover {
    background: var(--blue);
    color: var(--white);
}

/* ==============================
   PROCESS CARDS (Steps)
============================== */
.process-section {
    background: var(--blue);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/embellecedor2.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.process-card:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}

.process-num {
    width: 64px;
    height: 64px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--blue-dark);
    margin: 0 auto 22px;
    box-shadow: 0 4px 16px rgba(236,197,34,0.3);
}

.process-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.process-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* ==============================
   CONTACT PAGE
============================== */
.contact-card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.contact-card {
    min-width: 220px;
    max-width: 300px;
    margin: 0 auto;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.contact-card .cc-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 20px;
}

.cc-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

.cc-phone { background: var(--blue); }
.cc-email { background: var(--blue-mid); }
.cc-whatsapp { background: #25d366; }

.contact-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.contact-card a {
    font-size: 0.95rem;
    color: var(--blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.contact-card a:hover {
    color: var(--blue-mid);
}

/* Contact form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 680px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 7px;
}

.form-control-custom {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-control-custom:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(2,60,124,0.1);
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 130px;
}

/* ==============================
   NORMATIVA PAGE
============================== */
.normativa-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    height: 100%;
    text-align: center;
    transition: var(--transition);
}

.normativa-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.normativa-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin: 0 auto 18px;
}

.normativa-card p {
    font-size: 0.92rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
}

/* ==============================
   ABOUT (Company Page)
============================== */
.about-page-section {
    padding: 90px 0 100px;
}

/* ==============================
   ACCESSIBILITY TABLE
============================== */
.acc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-top: 24px;
}

.acc-table th {
    background: var(--blue);
    color: var(--white);
    padding: 12px 18px;
    text-align: left;
    font-weight: 600;
}

.acc-table td {
    padding: 11px 18px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.acc-table tr:hover td {
    background: var(--light);
}

/* ==============================
   FOOTER
============================== */
.site-footer {
    background: var(--blue-dark);
    color: rgba(255,255,255,0.8);
    padding-top: 80px;
}

.footer-wave {
    display: block;
    margin-bottom: -2px;
}

.footer-logo img {
    height: 52px;
    width: auto;
    margin-bottom: 18px;
}

.footer-about-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 14px;
}

.footer-schedule {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
}

.footer-schedule strong {
    color: var(--yellow);
    font-weight: 600;
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item .fi-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--yellow);
    flex-shrink: 0;
}

.footer-contact-item .fi-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.footer-contact-item .fi-text a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.footer-contact-item .fi-text a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 22px 0;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: var(--yellow);
}

/* ==============================
   WHATSAPP FLOAT BUTTON
============================== */
.wa-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 90px;
    right: 24px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* Scroll to top */
.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 998;
    border: none;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--blue-mid);
    transform: translateY(-3px);
}

/* ==============================
   PRELOADER
============================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    width: 200px;
    animation: fadeUpIn 0.6s ease;
}

@keyframes fadeUpIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==============================
   FADE-IN ANIMATIONS
============================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1199px) {
    .mant-section .mant-content {
        padding: 70px 40px 70px 0;
    }
}

@media (max-width: 991px) {
    .navbar-nav-wrap, .navbar-right {
        display: none;
    }
    .navbar-toggler {
        display: flex;
    }
    .hero-image-wrap {
        display: none;
    }
    .mant-section .mant-content {
        padding: 70px 0;
    }
    .mant-section .mant-image {
        min-height: 350px;
    }
    .stat-divider {
        display: none;
    }
    .about-exp-box {
        right: 0;
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 70px 0;
    }
    .hero-content {
        padding: 130px 0 120px;
        text-align: center !important;
    }
    .hero-stats-inner {
        gap: 10px;
        padding: 18px 0;
    }
    .stat-item {
        padding: 0 12px;
    }
    .stat-number {
        font-size: 1.4rem;
    }
    .contact-form-wrap {
        padding: 36px 28px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal-links {
        justify-content: center;
    }
    .hero-badge {
        font-size: 0.75rem;
    }
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    .about-exp-box {
        position: static;
        margin-top: 20px;
        width: fit-content;
    }
    /* Centrado de botones hero en móvil */
    .hero-buttons {
        justify-content: center !important;
        align-items: center !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }
    /* Centrado de sección mantenimiento en móvil */
    .mant-section .mant-content {
        text-align: center !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    .mant-cta-wrap {
        justify-content: center !important;
    }
    .mant-steps {
        text-align: left !important;
    }
}

@media (max-width: 991px) {
    .hero-buttons {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }
    .hero-buttons .btn-primary-custom {
        margin: 0 auto !important;
    }
    .mant-cta-wrap {
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        text-align: center !important;
        width: 100% !important;
    }
    .mant-cta-wrap .btn-primary-custom,
    .mant-cta-wrap .mant-phone-strip {
        margin: 0 auto !important;
    }
    .mant-section .mant-content {
        padding-right: 24px !important;
    }
}

@media (max-width: 576px) {
    .mant-phone-strip {
        flex-direction: column;
        text-align: center;
        border-radius: var(--radius);
    }
}
