/* ===========================
   VARIABLES Y RESET
   =========================== */
:root {
    --primary-color: #ff2b42;
    --dark-color: #222222;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --font-headings: 'Raleway', sans-serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===========================
   HEADER / NAVIGATION
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-bg);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-headings);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--dark-color);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
}

/* ===========================
   HERO SECTION / SLIDER
   =========================== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 95vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--light-bg);
    z-index: 1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
    animation: slideInLeft 0.8s ease forwards;
}

.hero-slide:not(.active) .hero-text {
    animation: none;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 50px;
    letter-spacing: -1px;
}

.btn-primary {
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 16px 35px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

/* ===========================
   SLIDER - NAVIGATION ARROWS
   =========================== */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow:hover svg {
    stroke: var(--white);
}

.slider-arrow svg {
    stroke: var(--dark-color);
    transition: stroke 0.3s ease;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* ===========================
   PRELOADER
   =========================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.preloader-logo img {
    max-width: 200px;
    height: auto;
}

.preloader-spinner {
    display: flex;
    justify-content: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* ===========================
   SLIDER - PAGINATION
   =========================== */
.hero-pagination {
    position: absolute;
    bottom: 100px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-headings);
    font-size: 32px;
    font-weight: 300;
    z-index: 100;
}

.pagination-current {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-color);
}

.pagination-separator {
    color: var(--dark-color);
}

.pagination-total {
    color: #999;
}

.pagination-progress {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 200px;
    height: 3px;
    background-color: #ddd;
    --progress: 16.66%;
}

.pagination-progress::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: var(--progress);
    height: 100%;
    background-color: var(--primary-color);
    transition: width 0.5s ease;
}

/* ===========================
   SLIDER - SCROLL BUTTON
   =========================== */
.hero-scroll {
    position: absolute;
    bottom: 100px;
    right: 40px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 100;
}

.hero-scroll:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.scroll-text {
    font-family: var(--font-headings);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.4;
    color: var(--dark-color);
}

.scroll-arrow {
    font-size: 20px;
    margin-top: 5px;
    color: var(--dark-color);
}

/* ===========================
   SISTEMA DE DISEÑO - TÍTULOS Y TEXTOS GLOBALES
   =========================== */

/* Título de sección (H2) - Usado en todas las secciones */
.section-title {
    font-family: var(--font-headings);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--dark-color);
    margin-bottom: 60px;
    text-transform: uppercase;
}

/* Título de contenido (H3) - Usado dentro de cada sección */
.content-title {
    font-family: var(--font-headings);
    font-size: 42px;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

/* Subtítulo de contenido - Usado para destacar texto */
.content-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Texto de introducción - Párrafos principales */
.content-intro {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 25px;
}

/* ===========================
   QUIENES SOMOS SECTION
   =========================== */
.about {
    padding: 120px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ===========================
   SIMPLE GALLERY SYSTEM
   =========================== */
.simple-gallery {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
}

.simple-gallery-container {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.simple-gallery-container img {
    min-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.simple-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.simple-gallery-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.simple-gallery-btn:hover svg {
    stroke: var(--white);
}

.simple-gallery-btn svg {
    stroke: var(--primary-color);
    transition: stroke 0.3s ease;
}

.simple-gallery-prev {
    left: 20px;
}

.simple-gallery-next {
    right: 20px;
}

.about-content {
    padding: 0 20px;
}

.about-text {
    margin-bottom: 50px;
}

.about-text p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    font-weight: 700;
    color: var(--dark-color);
}

.about-date {
    display: flex;
    align-items: center;
    gap: 20px;
}

.date-line {
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.date-text {
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark-color);
    text-transform: uppercase;
}

/* Animaciones de scroll */
.section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-image,
.about-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-image.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.about-content.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* ===========================
   PROPUESTA DE VALOR SECTION
   =========================== */
.value-proposition {
    padding: 120px 0;
    background-color: var(--light-bg);
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.value-content {
    padding: 0 20px;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.value-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-size: 22px;
    font-weight: 900;
}

.value-item-content {
    flex: 1;
}

.value-item-title {
    font-family: var(--font-headings);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.value-item-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-color);
    margin: 0;
}

/* Animaciones de scroll */
.value-image,
.value-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.value-image.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.value-content.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* ===========================
   SERVICIOS SECTION
   =========================== */
.services {
    padding: 120px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.services-content {
    padding: 0 20px;
}

.services-intro {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 35px;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--dark-color);
}

.service-icon {
    flex-shrink: 0;
    stroke: var(--primary-color);
}

.btn-secondary {
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 16px 35px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--dark-color);
}

/* ===========================
   TOAST NOTIFICATIONS
   =========================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 300px;
    padding: 16px 20px;
    background-color: var(--white);
    color: var(--dark-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 14px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left-color: #28a745;
}

.toast.error {
    border-left-color: var(--primary-color);
}

.toast-message {
    margin-right: 15px;
}

.toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.toast-close:hover {
    color: var(--dark-color);
}
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

.services-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    height: 100%;
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-image-1,
.service-image-2,
.service-image-3,
.service-image-4,
.service-image-5,
.service-image-6 {
    min-height: 280px;
}

/* Animaciones de scroll */
.services-content,
.services-images {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.services-images.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* ===========================
   SHOWROOM SECTION
   =========================== */
.showroom {
    padding: 120px 0 0 0;
    background-color: var(--light-bg);
}

.showroom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding-bottom: 80px;
}

.showroom-text-left {
    padding-right: 20px;
}

.showroom-title {
    font-family: var(--font-headings);
    font-size: 48px;
    font-weight: 900;
    color: var(--dark-color);
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0;
}

.showroom-text-right {
    padding-left: 20px;
}

.showroom-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--dark-color);
    margin: 0;
}

.showroom-gallery-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.showroom-gallery-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.showroom-gallery {
    display: flex;
    gap: 0;
    animation: scrollGallery 90s linear infinite;
    width: fit-content;
    cursor: grab;
    user-select: none;
}

.showroom-gallery:hover {
    animation-play-state: paused;
}

.showroom-gallery:active {
    cursor: grabbing;
}

.gallery-item {
    flex-shrink: 0;
    width: 500px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Animaciones de scroll */
.showroom-text-left,
.showroom-text-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.showroom-text-left.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.showroom-text-right.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq {
    padding: 120px 0;
    background-color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 80px;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 120px;
}

.faq-left .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.faq-left .content-title {
    margin-bottom: 20px;
    text-align: left;
}

.faq-description {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-color);
    margin: 0;
    text-align: left;
}

.faq-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border-bottom: 2px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-number {
    font-family: var(--font-headings);
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-question-text {
    font-family: var(--font-headings);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    flex: 1;
    transition: color 0.3s ease;
}

.faq-question:hover .faq-question-text {
    color: var(--primary-color);
}

.faq-icon {
    font-family: var(--font-headings);
    font-size: 32px;
    font-weight: 300;
    color: var(--dark-color);
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0 0 48px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 30px 48px;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-answer li {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-color);
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.faq-answer li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Animaciones de scroll */
.faq-header,
.faq-intro {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.faq-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-intro.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.faq-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:nth-child(1).animate-in {
    transition-delay: 0.1s;
}

.faq-item:nth-child(2).animate-in {
    transition-delay: 0.2s;
}

.faq-item:nth-child(3).animate-in {
    transition-delay: 0.3s;
}

.faq-item:nth-child(4).animate-in {
    transition-delay: 0.4s;
}

/* ===========================
   LAVADERO SECTION
   =========================== */
.lavadero {
    padding: 120px 0;
    background-color: var(--light-bg);
}

.lavadero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lavadero-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lavadero-badge svg {
    stroke: var(--primary-color);
    flex-shrink: 0;
}

.lavadero-badge span {
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.4;
}

.lavadero-content {
    padding: 0 20px;
}

.lavadero-intro {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.lavadero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    stroke: var(--primary-color);
    margin-top: 2px;
}

.feature-content {
    flex: 1;
}

.lavadero-content .content-title {
    margin-bottom: 20px;
}

.feature-title {
    font-family: var(--font-headings);
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-color);
    margin: 0;
}

/* Animaciones de scroll */
.lavadero-image,
.lavadero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.lavadero-image.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.lavadero-content.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* ===========================
   CONTROL DE CALIDAD / CTA SECTION
   =========================== */
.calidad {
    padding: 80px 0;
    background-image: url('../img/hero-banner/_MG_0648.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.calidad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(227, 6, 19, 0.20);
    pointer-events: none;
}

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

.calidad-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.calidad-text {
    padding-right: 20px;
}

.calidad-content-title {
    color: var(--white);
    margin-bottom: 20px;
}

.calidad-intro {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.calidad-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    align-items: start;
}

.calidad-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.calidad-check {
    flex-shrink: 0;
    stroke: var(--white);
}

.calidad-item span {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--white);
}

/* ===========================
   CONTACTO SECTION
   =========================== */
.contacto {
    padding: 120px 0;
    background-color: var(--white);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contacto-content {
    padding-right: 20px;
}

.contacto-text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-title {
    font-family: var(--font-headings);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.info-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-color);
    margin: 0;
}

.contacto-form {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-textarea {
    resize: vertical;
    margin-bottom: 25px;
}

.contacto-form .btn-primary {
    width: 100%;
}

/* Animaciones de scroll */
.contacto-content,
.contacto-form {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contacto-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contacto-form.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background-color: var(--dark-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-title {
    font-family: var(--font-headings);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ===========================
   ANIMACIONES
   =========================== */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Breakpoint intermedio - 1300px */
@media (max-width: 1300px) {
    /* Propuesta de Valor Section */
    .value-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .value-content {
        padding: 0 40px;
    }
    
    /* Servicios Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    /* Hero Section / Slider */
    .hero-slide::before {
        width: 100%;
        background-color: rgba(245, 245, 245, 0.65);
    }
    
    .hero-bg {
        width: 100%;
        left: 0;
        right: 0;
        opacity: 1;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    /* Slider - Navigation Arrows */
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    /* Quienes Somos Section */
    .about {
        padding: 80px 0;
    }
    
    /* Sistema de Diseño - Títulos */
    .section-title {
        font-size: 14px;
        margin-bottom: 50px;
    }
    
    .content-title {
        font-size: 36px;
    }
    
    .content-subtitle {
        font-size: 17px;
    }
    
    /* Quienes Somos Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .simple-gallery {
        height: 500px;
        margin-bottom: 0;
    }
    
    /* Propuesta de Valor Section */
    .value-proposition {
        padding: 80px 0;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    
    .value-item-title {
        font-size: 16px;
    }
    
    .value-item-text {
        font-size: 14px;
    }
    
    /* Servicios Section */
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-intro {
        font-size: 16px;
    }
    
    .services-list {
        grid-template-columns: 1fr 1fr;
        gap: 15px 25px;
    }
    
    .services-images {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .service-image-1,
    .service-image-2,
    .service-image-3,
    .service-image-4,
    .service-image-5,
    .service-image-6 {
        min-height: 200px;
    }
    
    /* Showroom Section */
    .showroom {
        padding: 80px 0 0 0;
    }
    
    .showroom-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 60px;
    }
    
    .showroom-title {
        font-size: 36px;
    }
    
    .showroom-text-left,
    .showroom-text-right {
        padding: 0;
    }
    
    .showroom-text {
        font-size: 16px;
    }
    
    .gallery-item {
        width: 400px;
        height: 300px;
    }
    
    /* FAQ Section */
    .faq {
        padding: 80px 0;
    }
    
    .faq-header {
        margin-bottom: 30px;
    }
    
    .faq-intro {
        margin-bottom: 60px;
    }
    
    .faq-description {
        font-size: 16px;
    }
    
    /* FAQ Section - Tablet */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .faq-left {
        position: static;
    }
    
    .faq-question {
        gap: 20px;
        padding: 25px 0;
    }
    
    .faq-question-text {
        font-size: 20px;
    }
    
    .faq-answer {
        padding: 0 0 0 38px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 0 25px 38px;
    }
    
    /* Lavadero Section */
    .lavadero {
        padding: 80px 0;
    }
    
    .lavadero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    
    .lavadero-intro {
        font-size: 15px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    /* Control de Calidad Section */
    .calidad {
        padding: 60px 0;
    }
    
    .calidad-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .calidad-text {
        padding-right: 0;
    }
    
    .calidad-intro {
        font-size: 16px;
    }
    
    .calidad-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .calidad-item span {
        font-size: 14px;
    }
    
    /* Contacto Section */
    .contacto {
        padding: 80px 0;
    }
    
    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contacto-content {
        padding-right: 0;
    }
    
    .contacto-text {
        font-size: 17px;
        margin-bottom: 40px;
    }
    
    .contacto-info {
        gap: 30px;
    }
    
    .contacto-form {
        padding: 35px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
}

/* Extra Small - 400px */
@media (max-width: 400px) {
    .services-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Tablet Small - 950px - Menu Hamburguesa */
@media (max-width: 950px) {
    /* Header / Navigation */
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        pointer-events: none;
    }
    
    .nav.active {
        transform: translateX(0);
        pointer-events: all;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-link {
        padding: 15px 30px;
        font-size: 18px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link-wsp {
        justify-content: center;
    }
}

/* Ocultar botón flotante cuando el menú está abierto */
body.menu-open .whatsapp-float {
    display: none;
}

/* Mobile - 768px */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 20px;
    }
    
    /* Hero Section / Slider */
    .hero-slide::before {
        width: 100%;
        background-color: rgba(245, 245, 245, 0.8);
    }
    
    .hero-bg {
        width: 100%;
        left: 0;
        right: 0;
        opacity: 1;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    /* Slider - Pagination */
    .hero-pagination {
        left: 20px;
        bottom: 50px;
    }
    
    /* Slider - Scroll Button */
    .hero-scroll {
        width: 80px;
        height: 80px;
        right: 20px;
        bottom: 50px;
    }
    
    .scroll-text {
        font-size: 8px;
    }
    
    /* Sistema de Diseño - Títulos */
    .section-title {
        font-size: 12px;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }
    
    .content-title {
        font-size: 32px;
    }
    
    .content-subtitle {
        font-size: 16px;
    }
    
    /* Quienes Somos Section */
    .about {
        padding: 60px 0;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .simple-gallery {
        height: 400px;
        margin-bottom: 0;
    }
    
    .about-content {
        padding: 0;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    /* Propuesta de Valor Section */
    .value-proposition {
        padding: 60px 0;
    }
    
    .value-grid {
        gap: 40px;
    }
    
    
    .value-overlay {
        padding: 30px 20px;
    }
    
    .overlay-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .overlay-text {
        font-size: 14px;
    }
    
    .value-content {
        padding: 0;
    }
    
    .value-list {
        gap: 30px;
    }
    
    .value-item {
        gap: 15px;
    }
    
    .value-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .value-item-title {
        font-size: 16px;
    }
    
    .value-item-text {
        font-size: 14px;
    }
    
    /* Servicios Section */
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        gap: 40px;
    }
    
    .services-content {
        padding: 0;
    }
    
    .services-intro {
        font-size: 15px;
    }
    
    .services-list {
        grid-template-columns: 1fr 1fr;
        gap: 12px 20px;
        margin-bottom: 30px;
    }
    
    .service-item {
        font-size: 14px;
    }
    
    .services-images {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .service-image-1,
    .service-image-2,
    .service-image-3,
    .service-image-4,
    .service-image-5,
    .service-image-6 {
        min-height: 160px;
    }
    
    /* Showroom Section */
    .showroom {
        padding: 60px 0 0 0;
    }
    
    .showroom-content {
        gap: 30px;
        padding-bottom: 40px;
    }
    
    .showroom-title {
        font-size: 28px;
    }
    
    .showroom-text {
        font-size: 15px;
    }
    
    .gallery-item {
        width: 300px;
        height: 250px;
    }
    
    /* FAQ Section */
    .faq {
        padding: 60px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-left {
        position: static;
    }
    
    .faq-header {
        margin-bottom: 25px;
    }
    
    .faq-intro {
        margin-bottom: 50px;
    }
    
    .faq-description {
        font-size: 15px;
    }
    
    .faq-question {
        gap: 15px;
        padding: 20px 0;
    }
    
    .faq-number {
        font-size: 16px;
    }
    
    .faq-question-text {
        font-size: 18px;
    }
    
    .faq-icon {
        font-size: 28px;
    }
    
    .faq-answer {
        padding: 0 0 0 31px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 0 20px 31px;
    }
    
    .faq-answer p,
    .faq-answer li {
        font-size: 15px;
    }
    
    /* Lavadero Section */
    .lavadero {
        padding: 60px 0;
    }
    
    .lavadero-grid {
        gap: 40px;
    }
    
    
    .lavadero-badge {
        bottom: 20px;
        left: 20px;
        padding: 15px 20px;
    }
    
    .lavadero-badge svg {
        width: 30px;
        height: 30px;
    }
    
    .lavadero-badge span {
        font-size: 12px;
    }
    
    .lavadero-content {
        padding: 0;
    }
    
    .lavadero-intro {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .lavadero-features {
        gap: 18px;
        margin-bottom: 30px;
    }
    
    .feature-title {
        font-size: 16px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    /* Control de Calidad Section */
    .calidad {
        padding: 50px 0;
    }
    
    .calidad-grid {
        gap: 40px;
    }
    
    .calidad-intro {
        font-size: 15px;
    }
    
    .calidad-list {
        gap: 8px;
    }
    
    .calidad-item span {
        font-size: 14px;
    }
    
    /* Contacto Section */
    .contacto {
        padding: 60px 0;
    }
    
    .contacto-grid {
        gap: 50px;
    }
    
    .contacto-text {
        font-size: 16px;
        margin-bottom: 35px;
    }
    
    .contacto-info {
        gap: 25px;
    }
    
    .info-title {
        font-size: 16px;
    }
    
    .info-text {
        font-size: 15px;
    }
    
    .contacto-form {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 30px;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
    
    .footer-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .footer-link,
    .footer-text {
        font-size: 14px;
    }
}

/* ===========================
   ANIMACIONES DE ENTRADA
   =========================== */
.hero-pagination,
.hero-scroll {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slider-arrow {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.5s forwards;
}

/* ===========================
   WHATSAPP
   =========================== */
.nav-link-wsp {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #25D366 !important;
}

.nav-link-wsp svg {
    stroke: #25D366;
}

.nav-link-wsp:hover {
    color: #128C7E !important;
}

.nav-link-wsp:hover svg {
    stroke: #128C7E;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* Mobile Small - 600px */
@media (max-width: 600px) {
    /* FAQ Section - Una columna */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-left {
        position: static;
    }
}
