/* ==========================================
   MOBILE FIRST - SERVILIMPIEZA PRO URABÁ
   ========================================== */

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

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #1e293b;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* CONTENEDORES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-fluid {
    width: 100%;
    padding: 0 1rem;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0b3d91;
    line-height: 1;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-btn {
    background: #0b3d91;
    color: #ffffff;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:active {
    transform: scale(0.95);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    margin-top: 70px;
    padding: 2rem 0 3rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.hero-badge {
    display: inline-block;
    background: #ffffff;
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0b3d91;
    margin-bottom: 1rem;
}

.text-green {
    color: #10b981;
}

.hero-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* ==========================================
   GALERÍA DESLIZANTE
   ========================================== */
.gallery-section {
    padding: 2rem 0;
    background: #ffffff;
}

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

.gallery-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    flex-shrink: 0;
    width: 85%;
    max-width: 350px;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: center;
    box-shadow: 0 4px 12px rgba(11, 61, 145, 0.1);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 61, 145, 0.9), transparent);
    color: #ffffff;
    padding: 1.5rem 1rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #0b3d91;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
}

.gallery-nav:active {
    transform: translateY(-50%) scale(0.9);
}

.gallery-nav.prev {
    left: 0.5rem;
}

.gallery-nav.next {
    right: 0.5rem;
}

/* ==========================================
   SERVICIOS
   ========================================== */
.services {
    padding: 3rem 0;
    background: #fafbfc;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-block;
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.875rem;
    font-weight: 800;
    color: #0b3d91;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(11, 61, 145, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:active {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(11, 61, 145, 0.15);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: #ffffff;
    color: #3b82f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0b3d91;
    margin-bottom: 0.75rem;
}

.service-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.service-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.service-tags span {
    background: #f0f9ff;
    color: #0b3d91;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.service-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: 1.25rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.service-whatsapp:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.service-whatsapp svg {
    flex-shrink: 0;
}

/* ==========================================
   PROCESO
   ========================================== */
.process {
    padding: 3rem 0;
    background: #ffffff;
}

.section-description {
    text-align: center;
    color: #64748b;
    font-size: 0.9375rem;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.process-step {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.process-step:active {
    transform: translateY(-4px);
    border-color: #10b981;
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.15);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(11, 61, 145, 0.1);
}

.step-icon svg {
    color: #10b981;
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(11, 61, 145, 0.1);
    line-height: 1;
}

.process-step h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0b3d91;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.process-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
    padding: 2rem 1.5rem;
    background: #fafbfc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1e293b;
    font-size: 0.9375rem;
    font-weight: 500;
}

.benefit-item svg {
    flex-shrink: 0;
    color: #10b981;
}

/* ==========================================
   ABOUT
   ========================================== */
.about {
    padding: 3rem 0;
    background: #ffffff;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ==========================================
   UBICACIÓN
   ========================================== */
.location {
    padding: 3rem 0;
    background: #fafbfc;
}

.location-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item svg {
    flex-shrink: 0;
    color: #3b82f6;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    color: #0b3d91;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #64748b;
    font-size: 0.9375rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 2px 8px rgba(11, 61, 145, 0.08);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 1rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #0b3d91;
    color: #ffffff;
    text-align: center;
    padding: 2rem 1rem;
}

.footer p {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ==========================================
   WHATSAPP
   ========================================== */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s;
}

.whatsapp-btn:active {
    transform: scale(0.9);
}

/* ==========================================
   TABLET Y DESKTOP (min-width: 768px)
   ========================================== */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .gallery-slide {
        width: 400px;
        height: 300px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .process-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stats {
        gap: 3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .location-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        max-width: 1000px;
    }
    
    .map-container {
        height: 400px;
    }
    
    .cta-btn:hover {
        background: #10b981;
        transform: translateY(-2px);
    }
    
    .gallery-nav:hover {
        background: #10b981;
        color: #ffffff;
        transform: translateY(-50%) scale(1.1);
    }
    
    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(11, 61, 145, 0.15);
    }
    
    .process-step:hover {
        transform: translateY(-8px);
        border-color: #10b981;
        box-shadow: 0 12px 24px rgba(16, 185, 129, 0.15);
    }
    
    .whatsapp-btn:hover {
        transform: scale(1.1);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .services,
    .process,
    .about,
    .location {
        padding: 5rem 0;
    }
}

.logo{
    width: 100%;
    
    
}

.logservi{
    width: 170px;
}

a{
    text-decoration: none;
    color: gray;
}
