/* ========================================
   BLUEHANDS - LAVADERO INDUSTRIAL
   Stylesheet Principal
======================================== */

/* ========================================
   BASE: Reset & Variables
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

:root {
    --primary-color: #051a53;
    --secondary-color: #222222;
    --dark-blue: #051a53;
    --text-dark: #222222;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-light: #f3f4f6;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

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

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

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.preloader-spinner p {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation: fadeInUp 0.8s ease forwards;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   SECTION: Top Bar
======================================== */
.top-bar {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info-top {
    display: flex;
    gap: 24px;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.3s;
}

.contact-link:hover {
    opacity: 0.8;
}

.contact-link i {
    font-size: 14px;
}

.whatsapp-link {
    display: flex;
    align-items: center;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 18px;
}

/* ========================================
   SECTION: Header
======================================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    min-height: 50px;
}

.logo {
    display: flex;
    align-items: center;
    padding: 2px 0;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav ul li {
    position: relative;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    padding: 8px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   SECTION: Hero
======================================== */
.hero {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-bg.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(30, 64, 175, 0.20) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 700px;
    color: var(--white);
    animation: fadeInUp 1s ease;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--white);
}

.hero p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
    color: var(--white);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    text-decoration: none;
    text-align: center;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

/* ========================================
   COMPONENT: Gallery with Navigation
======================================== */
.gallery-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.gallery-image.active {
    opacity: 1;
}

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

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

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

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

.gallery-btn i {
    font-size: 20px;
    color: var(--dark-blue);
}

.gallery-btn:hover i {
    color: white;
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background-color: white;
    width: 30px;
    border-radius: 5px;
}

/* ========================================
   SECTION: About (Nuestro Lavadero)
======================================== */
.about {
    padding: 100px 0;
    background-color: var(--gray-light);
}

/* Patrón estándar para labels de sección */
.section-label,
.section-label-top {
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2.6px;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.about-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-text h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--dark-blue);
    font-weight: 700;
}

.about-intro {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
}

.about-description {
    margin-top: 30px;
}

.about-description p {
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 15px;
}

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

.highlight-text {
    font-size: 19px !important;
    line-height: 1.8 !important;
    color: var(--dark-blue) !important;
    padding-bottom: 8px !important;
    border-bottom: 2px solid var(--dark-blue);
    margin-bottom: 0 !important;
    display: inline-block;
}

.highlight-text strong {
    font-weight: 700;
    color: var(--primary-color);
}

.btn-primary i {
    transition: transform 0.3s;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

/* ========================================
   SECTION: What Makes Us Unique
======================================== */
.unique {
    padding: 100px 0;
    background-color: var(--dark-blue);
    color: var(--white);
}

.unique .section-label-top {
    color: var(--white);
}

/* Section Header Split - Patrón como FAQ */
.section-header-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: center;
}

.header-left h2 {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
}

.header-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
}

.unique .header-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.header-right p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.header-right p:last-child {
    margin-bottom: 0;
}

/* Unique section specific */


.unique .header-left h2 {
    color: var(--white);
}

.unique .highlight {
    color: #fbbf24;
}

.unique .header-right p {
    color: rgba(255, 255, 255, 0.85);
}

/* Services section specific */
.services .header-left h2 {
    color: var(--dark-blue);
}

.services .header-right p {
    color: var(--text-dark);
}

.unique-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: stretch;
}

.unique-image .gallery-wrapper {
    height: 100%;
    min-height: 600px;
}

.unique-services {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    justify-content: space-between;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.service-number {
    font-size: 32px;
    font-weight: 700;
    min-width: 50px;
}

.service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 24px;
    color: var(--white);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--white);
    font-weight: 600;
}

.service-content p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.service-link {
    color:white ;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

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

.service-link i {
    font-size: 11px;
}

/* ========================================
   SECTION: Services
======================================== */
.services {
    padding: 100px 0;
    background-color: var(--gray-light);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-plan {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 550px;
}

.service-plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fbbf24;
    color: var(--dark-blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.plan-icon i {
    font-size: 36px;
    color: var(--white);
}

.plan-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.plan-content {
    margin-bottom: 30px;
    flex: 1;
}

.plan-intro {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex: 1;
}

.plan-features li {
    padding: 16px 0;
    display: flex;
    align-items: start;
    gap: 14px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
}

.plan-features li div {
    flex: 1;
}

.plan-features i {
    color: #10b981;
    margin-top: 4px;
    flex-shrink: 0;
}

.plan-features li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}


.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}


.plan-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    text-decoration: none;
}

.plan-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}


.plan-btn i {
    transition: transform 0.3s;
}

.plan-btn:hover i {
    transform: translateX(4px);
}

/* ========================================
   SECTION: Full Width Carousel
======================================== */
.carousel-section {
    width: 100%;
    overflow: hidden;
    background-color: var(--gray-light);
    padding: 60px 0;
    position: relative;
}

.full-carousel {
    width: 100%;
    overflow: hidden;
}

.carousel-wrapper-auto {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track-container {
    width: 100%;
    overflow: hidden;
}

.carousel-track-auto {
    display: flex;
    animation: scrollHorizontal 60s linear infinite;
    width: max-content;
    will-change: transform;
}

.carousel-track-auto img {
    width: 700px;
    height: 500px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    cursor: grab;
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.carousel-track-auto img:active {
    cursor: grabbing;
}

.carousel-track-auto:hover {
    animation-play-state: paused;
}

.carousel-track-auto img:hover {
    transform: scale(1.02);
}

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

/* Image Modal/Lightbox */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.image-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 30px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.modal-nav:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--primary-color);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

.faq-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.faq-left h2 {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 24px;
    color: var(--dark-blue);
    font-weight: 700;
}

.faq-left p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.faq-cta {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.faq-cta:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    padding-left: 10px;
}

.faq-number {
    font-size: 20px;
    font-weight: 700;
    color: #051a53;
    min-width: 40px;
}

.faq-question h3 {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 0;
}

.faq-toggle {
    font-size: 32px;
    font-weight: 300;
    color: var(--dark-blue);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 0 0 60px;
}

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

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.faq-answer ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    padding-left: 20px;
    position: relative;
}

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

/* ========================================
   SECTION: Contact
======================================== */
.contact {
    padding: 100px 0;
    background-color: var(--dark-blue);
}

.contact .section-label-top {
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--primary-color);
    padding: 50px 40px;
    border-radius: 16px;
}

.contact-form-wrapper h2 {
    font-size: 26px;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    background: #fbbf24;
    color: var(--dark-blue);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.3);
}

.btn-submit i {
    transition: transform 0.3s;
}

.btn-submit:hover i {
    transform: translateX(4px);
}

.contact-info-wrapper {
    color: var(--white);
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 28px;
    line-height: 1.4;
    color: var(--white);
    font-weight: 700;
    margin-top: 16px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    display: flex;
    gap: 20px;
    align-items: start;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 28px;
    color: #fbbf24;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.info-content p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.info-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #fbbf24;
}

/* ========================================
   SECTION: Footer
======================================== */
.footer {
    background-color: var(--white);
    color: var(--text-dark);
    padding-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark-blue);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 55px;
    width: auto;
}

.footer-desc {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 14px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dark-blue);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 18px;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ========================================
   COMPONENT: WhatsApp Floating Button
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

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

/* ========================================
   COMPONENT: Scroll to Top Button
======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-4px);
}

.scroll-top.show {
    display: flex;
}

/* ========================================
   RESPONSIVE: Media Queries
======================================== */

/* --- Top Bar & Header --- */
@media (max-width: 1200px) {
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s;
        z-index: 1000;
        padding-top: 100px;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .nav ul li {
        border-bottom: 1px solid #e5e7eb;
    }
    
    .nav ul li:last-child {
        border-bottom: none;
    }
    
    .nav a {
        display: block;
        padding: 16px 0;
    }
    
    .logo img {
        height: 42px;
    }
}

@media (max-width: 800px) {
    .hamburger {
        z-index: 1001;
    }
    
    .hamburger.active {
        position: fixed;
        top: 20px;
        right: 20px;
        background: var(--white);
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }
    
    .nav {
        width: 280px;
    }
    
    .logo img {
        height: 40px;
    }
}

/* Rango 500px - 600px: diseño compacto horizontal */
@media (max-width: 600px) and (min-width: 501px) {
    .top-bar {
        padding: 10px 0;
    }
    
    .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }
    
    .contact-info-top {
        flex-wrap: wrap;
        gap: 8px 16px;
        flex: 1;
    }
    
    .contact-link {
        font-size: 11px;
    }
    
    .contact-link i {
        font-size: 12px;
    }
    
    .whatsapp-btn {
        font-size: 12px;
        padding: 8px 18px;
        white-space: nowrap;
    }
}

/* Menos de 500px: diseño vertical centrado */
@media (max-width: 500px) {
    .top-bar {
        padding: 12px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .contact-info-top {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .contact-link {
        font-size: 12px;
        justify-content: center;
    }
    
    .whatsapp-btn {
        font-size: 13px;
        padding: 10px 24px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .footer-logo img {
        height: 45px;
    }
}

/* --- Hero Section --- */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
}

/* --- Gallery Component --- */
@media (max-width: 768px) {
    .gallery-wrapper {
        height: 400px;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
    }
    
    .gallery-btn.prev {
        left: 10px;
    }
    
    .gallery-btn.next {
        right: 10px;
    }
}

/* --- About Section --- */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .section-label-top {
        margin-bottom: 30px;
        font-size: 14px;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 24px;
    }
    
    .about-intro {
        font-size: 16px;
    }
    
    .about-description p {
        font-size: 14px;
    }
    
    .highlight-text {
        font-size: 17px !important;
        padding-bottom: 6px !important;
    }
}

/* --- Section Headers --- */
@media (max-width: 768px) {
    .section-header-split {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .header-left h2 {
        font-size: 24px;
    }
}

/* --- Unique Section --- */
@media (max-width: 1024px) {
    .unique-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .unique {
        padding: 60px 0;
    }
    
    .unique-content {
        gap: 40px;
    }
    
    .unique-services {
        gap: 12px;
    }
    
    .service-card {
        padding: 16px 18px;
        gap: 14px;
        flex-direction: row;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
    
    .service-content h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .service-content p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .header-subtitle {
        font-size: 14px;
        margin-top: 16px;
    }
}

/* --- Services Section --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-plan {
        padding: 30px 24px;
        min-height: auto;
    }
    
    .plan-features li {
        padding: 14px 0;
        font-size: 13px;
        gap: 12px;
    }
    
    .plan-header h3 {
        font-size: 20px;
    }
    
    .plan-intro {
        font-size: 13px;
    }
}

/* --- Full Width Carousel --- */
@media (max-width: 1024px) {
    .carousel-track-auto img {
        width: 600px;
        height: 420px;
    }
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 40px 0;
    }
    
    .carousel-track-auto img {
        width: 450px;
        height: 320px;
    }
    
    .modal-close {
        top: 20px;
        right: 20px;
        font-size: 35px;
    }
    
    .modal-nav {
        font-size: 24px;
        padding: 15px 12px;
    }
    
    .modal-prev {
        left: 10px;
    }
    
    .modal-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-track-auto img {
        width: 320px;
        height: 240px;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 85%;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        font-size: 30px;
    }
    
    .modal-nav {
        font-size: 20px;
        padding: 12px 10px;
    }
    
    .modal-prev {
        left: 5px;
    }
    
    .modal-next {
        right: 5px;
    }
    
    .service-plan {
        padding: 24px 20px;
    }
    
    .plan-features li {
        font-size: 12px;
        padding: 12px 0;
    }
    
    .service-card {
        padding: 14px 16px;
    }
    
    .service-content h3 {
        font-size: 14px;
    }
    
    .service-content p {
        font-size: 11px;
    }
    
    .header-left h2 {
        font-size: 20px;
    }
    
    .header-right p {
        font-size: 13px;
    }
    
    .header-subtitle {
        font-size: 13px;
    }
}

/* --- FAQ Section --- */
@media (max-width: 1024px) {
    .faq-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-content {
        gap: 40px;
    }
    
    .faq-left h2 {
        font-size: 24px;
    }
    
    .faq-left p {
        font-size: 14px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
    
    .faq-answer {
        padding: 0 0 0 20px;
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 0 24px 20px;
    }
    
    .faq-number {
        font-size: 18px;
        min-width: 35px;
    }
}

/* --- Contact Section --- */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
    
    .contact-form-wrapper h2 {
        font-size: 22px;
    }
    
    .contact-header h2 {
        font-size: 22px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-content h3 {
        font-size: 16px;
    }
    
    .info-content p {
        font-size: 14px;
    }
}

/* --- Floating Buttons --- */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* --- Footer --- */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 60px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }
    
    .footer-col h3 {
        font-size: 16px;
    }
    
    .footer-links li a,
    .footer-contact li {
        font-size: 13px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px 0;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }
}
