/* ========================================
   CORPORACIÓN SKY SAC - DISEÑO COMERCIAL
   ======================================== */

/* Variables CSS */
:root {
    /* Colores principales */
    --primary-color: #0066cc;
    --primary-dark: #004999;
    --primary-light: #3385d6;
    --secondary-color: #00c9ff;
    --accent-color: #ff6b35;
    
    /* Colores de fondo */
    --bg-dark: #1a1a2e;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #0066cc 0%, #00a8ff 100%);
    
    /* Colores de texto */
    --text-primary: #1a1a2e;
    --text-secondary: #666666;
    --text-light: #999999;
    --text-white: #ffffff;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Espaciados */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 60px;
    
    /* Bordes */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Transiciones */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER / NAVEGACIÓN
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

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

.logo strong {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary);
    padding: 8px 0;
    position: relative;
}

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

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

.btn-nav-cta {
    background: var(--bg-gradient);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION - COMERCIAL
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.92) 0%, rgba(0, 168, 255, 0.88) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 60px 0;
}

.hero-text-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: badge-breathe 3s ease-in-out infinite;
}

@keyframes badge-breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}

.hero-badge i {
    margin-right: 8px;
    color: #ffd700;
}

.hero-title-commercial {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.hero-title-commercial .highlight {
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-commercial {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle-commercial strong {
    color: #ffd700;
    font-weight: 600;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-hero-primary {
    background: #ffd700;
    color: var(--primary-dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5);
    background: #ffed4e;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-stats-commercial {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ========================================
   SECCIONES COMERCIALES
   ======================================== */
.section-header-commercial {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--bg-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title-commercial {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.section-subtitle-commercial {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-subtitle-commercial strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ========================================
   SERVICIOS - FOTO GRANDE
   ======================================== */
.services-commercial {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.service-card-photo {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.service-card-photo:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card-photo.featured {
    border: 3px solid #ffd700;
}

.top-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffd700;
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    z-index: 10;
}

.service-photo {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.service-card-photo:hover .service-photo {
    transform: scale(1.05);
}

.service-info {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.service-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

.service-card-photo.featured .service-info {
    background: linear-gradient(135deg, #0066cc 0%, #00a8ff 100%);
}

.service-card-photo.featured .service-info h3 {
    color: white;
}

.service-info a {
    width: 50px;
    height: 50px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    flex-shrink: 0;
    position: relative;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

.service-info a:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    animation: none;
}

.service-card-photo.featured .service-info a {
    background: white;
    color: #25D366;
}

/* Certificaciones ISO - COMPACTO Y AMIGABLE */
.iso-section {
    margin-top: 40px;
    background: #f8f9fa;
    padding: 40px 0;
    border-radius: var(--border-radius-lg);
}

.iso-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.iso-certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
}

.iso-badge {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    cursor: pointer;
}

.iso-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,102,204,0.2);
    border-color: #0066cc;
}

.iso-badge img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.iso-badge:hover img {
    transform: scale(1.1);
}

@keyframes certificate-glow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.iso-badge span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    text-align: center;
}

.cta-banner {
    background: var(--bg-gradient);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.cta-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-content h3 i {
    margin-right: 12px;
    color: #ffd700;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta-large {
    background: white;
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   VENTAJAS / WHY CHOOSE
   ======================================== */
.why-choose {
    padding: 100px 0;
    background: white;
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 102, 204, 0.02) 100%);
    pointer-events: none;
}

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

.advantage-card {
    background: var(--bg-light);
    padding: 50px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-15px) scale(1.05);
    box-shadow: var(--shadow-xl);
    animation: card-shake 0.5s ease;
}

@keyframes card-shake {
    0%, 100% { transform: translateY(-15px) scale(1.05) rotate(0deg); }
    25% { transform: translateY(-15px) scale(1.05) rotate(1deg); }
    75% { transform: translateY(-15px) scale(1.05) rotate(-1deg); }
}

.advantage-icon {
    width: 120px;
    height: 120px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.5);
}

.advantage-icon i {
    font-size: 4rem;
    color: white;
}

.advantage-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

.advantage-card p {
    display: none;
}

/* ========================================
   CLIENTES - SECCIÓN GRANDE
   ======================================== */
.clients-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.clients-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.client-card-large {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.client-card-large::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.client-card-large:hover::after {
    left: 100%;
}

.client-card-large:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.client-card-large img {
    width: 100%;
    max-width: 180px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.client-card-large h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.client-card-large p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.coar-section {
    background: white;
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.coar-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 35px;
    font-family: 'Poppins', sans-serif;
}

.coar-title i {
    color: var(--primary-color);
    margin-right: 12px;
}

.coar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.coar-item {
    background: var(--bg-light);
    padding: 18px 20px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
    border: 2px solid transparent;
}

.coar-item i {
    color: #4CAF50;
    margin-right: 8px;
}

.coar-item:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.coar-logo {
    margin-top: 35px;
}

.coar-logo img {
    max-width: 200px;
    margin: 0 auto;
}

/* ========================================
   GALERÍA
   ======================================== */
.gallery-section {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    height: 280px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

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

.gallery-item:hover img {
    transform: scale(1.15);
    filter: brightness(0.8);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.95) 0%, rgba(0, 168, 255, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.gallery-icon {
    display: inline-flex;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1.2) rotate(90deg);
    background: rgba(255, 255, 255, 0.35);
}

.gallery-icon i {
    font-size: 1.8rem;
}

/* ========================================
   CONTACTO
   ======================================== */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-intro {
    margin-bottom: 35px;
}

.contact-intro h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.contact-intro p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-method {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-method:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.8rem;
    color: white;
}

.method-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.method-info a {
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.method-info a:hover {
    color: var(--primary-dark);
}

.method-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.method-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-form-container {
    background: white;
    padding: 45px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px 40px;
    background: var(--bg-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 20px;
}

.form-disclaimer i {
    color: var(--primary-color);
    margin-right: 6px;
}

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

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

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

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

.footer-logo h3 {
    font-size: 1.4rem;
    color: white;
    font-weight: 600;
}

.footer-logo strong {
    color: var(--secondary-color);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-badges .badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-badges .badge i {
    color: var(--secondary-color);
}

.footer-column h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

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

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

.footer-links a {
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 20px;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

/* ========================================
   BOTONES FLOTANTES
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: #25D366;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float i {
    font-size: 2rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ========================================
   BOTONES WHATSAPP EN SERVICIOS
   ======================================== */
.service-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-whatsapp-service {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: #25D366;
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-whatsapp-service:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp-service.featured {
    background: rgba(37, 211, 102, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-whatsapp-service.featured:hover {
    background: rgba(37, 211, 102, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.service-actions .btn-service {
    flex: 1;
}

.btn-whatsapp-service-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    background: #25D366;
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp-service-full:hover {
    background: #20BA5A;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp-service-full.featured {
    background: rgba(255, 255, 255, 0.95);
    color: #25D366;
    font-weight: 800;
}

.btn-whatsapp-service-full.featured:hover {
    background: white;
    color: #20BA5A;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-cta-whatsapp {
    background: #25D366;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   TRABAJA CON NOSOTROS
   ======================================== */
.work-with-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.work-with-us-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.work-benefits h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 35px;
    font-family: 'Poppins', sans-serif;
}

.work-benefits h3 i {
    color: var(--primary-color);
    margin-right: 12px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-item {
    background: white;
    padding: 30px 25px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.work-contact-form {
    background: white;
    padding: 45px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.work-contact-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.work-contact-form h3 i {
    color: var(--primary-color);
    margin-right: 12px;
}

.rrhh-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.rrhh-method {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 20px;
    align-items: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.rrhh-method:hover {
    border-color: var(--primary-color);
    background: white;
    box-shadow: var(--shadow-sm);
}

.rrhh-icon {
    width: 65px;
    height: 65px;
    background: var(--bg-gradient);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rrhh-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
}

.rrhh-icon i {
    font-size: 2rem;
    color: white;
}

.rrhh-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.rrhh-info a {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.rrhh-info a:hover {
    color: var(--primary-dark);
}

.rrhh-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

.positions-available {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 201, 255, 0.05) 100%);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.positions-available h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.positions-available h4 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.positions-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.positions-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.positions-list i {
    color: #4CAF50;
    font-size: 1rem;
}

.work-cta-buttons {
    display: flex;
    gap: 15px;
}

.btn-work-email,
.btn-work-whatsapp {
    flex: 1;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-work-email {
    background: var(--bg-gradient);
    color: white;
}

.btn-work-email:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-work-whatsapp {
    background: #25D366;
    color: white;
}

.btn-work-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-title-commercial {
        font-size: 2.8rem;
    }
    
    .services-grid-commercial {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .iso-certifications {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title-commercial {
        font-size: 2.2rem;
    }
    
    .hero-stats-commercial {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid-commercial,
    .advantages-grid,
    .clients-grid-large {
        grid-template-columns: 1fr;
    }
    
    .coar-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .section-title-commercial {
        font-size: 2.2rem;
    }
    
    .work-with-us-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .positions-list {
        grid-template-columns: 1fr;
    }
    
    .iso-certifications {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 40px 20px;
    }
    
    .iso-badge img {
        width: 60px;
        height: 60px;
    }
    
    .iso-badge span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title-commercial {
        font-size: 1.8rem;
    }
    
    .section-title-commercial {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .cta-buttons-group {
        flex-direction: column;
    }
    
    .work-cta-buttons {
        flex-direction: column;
    }
}