/* ================================================
   INTEGRADOR WT - Rediseño UI/UX
   Colores principales:
   - Primario: #1E9900 (verde)
   - Secundario: #0041A0 (azul)
   - Acento: #E86C1F (naranja - de la gota del logo)
   - Blanco: #FFFFFF
   ================================================ */

/* ============ VARIABLES CSS ============ */
:root {
    --primary: #1E9900;
    --primary-dark: #167300;
    --secondary: #0041A0;
    --secondary-dark: #003380;
    --accent: #E86C1F;
    --dark: #0041A0;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f0f7ff;
    --bg-gradient: linear-gradient(135deg, #1E9900 0%, #2db800 100%);
    --blue-gradient: linear-gradient(135deg, #0041A0 0%, #0056d6 100%);
    --shadow-sm: 0 2px 8px rgba(0, 65, 160, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 65, 160, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 65, 160, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Sen', sans-serif;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo-img {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 45px;
}

.footer .logo-img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-slogan {
    font-style: italic;
    color: var(--accent);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 5px 0;
}

.header.scrolled .nav-link {
    color: var(--text);
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

.header.scrolled .nav-toggle span {
    background: var(--dark);
}

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg .particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 15s infinite;
}

.hero-bg .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-bg .particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 2s; width: 15px; height: 15px; }
.hero-bg .particle:nth-child(3) { top: 40%; left: 70%; animation-delay: 4s; }
.hero-bg .particle:nth-child(4) { top: 80%; left: 80%; animation-delay: 6s; width: 8px; height: 8px; }
.hero-bg .particle:nth-child(5) { top: 30%; left: 90%; animation-delay: 8s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -20px) rotate(90deg); }
    50% { transform: translate(-10px, -40px) rotate(180deg); }
    75% { transform: translate(-20px, -20px) rotate(270deg); }
}

.hero-bg .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,60 C300,120 600,0 1200,60 L1200,120 L0,120 Z' fill='rgba(0,65,160,0.1)'/%3E%3C/svg%3E") repeat-x;
    animation: wave 20s linear infinite;
}

.hero-bg .wave:nth-child(6) { animation-delay: -5s; opacity: 0.5; }
.hero-bg .wave:nth-child(7) { animation-delay: -10s; opacity: 0.3; }
.hero-bg .wave:nth-child(8) { animation-delay: -15s; opacity: 0.2; }

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

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(30, 153, 0, 0.2);
    border: 1px solid var(--primary);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title .highlight {
    color: var(--secondary);
}

.hero-title .highlight-alt {
    color: var(--primary);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--bg-gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(30, 153, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(30, 153, 0, 0.5);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(30, 153, 0, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    animation: float-card 6s ease-in-out infinite;
    box-shadow: var(--shadow-md);
}

.floating-card .card-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card .card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 3s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.water-animation {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 65, 160, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-water 4s ease-in-out infinite;
}

.drop {
    position: absolute;
    width: 80px;
    height: 100px;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.8;
    animation: drop-float 4s ease-in-out infinite;
}

.drop-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 130px;
}

.drop-2 {
    top: 20%;
    left: 30%;
    width: 40px;
    height: 50px;
    animation-delay: 1s;
    opacity: 0.5;
}

.drop-3 {
    bottom: 25%;
    right: 25%;
    width: 50px;
    height: 65px;
    animation-delay: 2s;
    opacity: 0.6;
}

@keyframes drop-float {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -60%) scale(1.05); }
}

@keyframes pulse-water {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ============ SECTIONS COMMON ============ */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(30, 153, 0, 0.1);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

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

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 153, 0, 0.2);
}

.service-card.featured {
    background: linear-gradient(135deg, #0041A0 0%, #0056d6 100%);
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(30, 153, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-icon svg {
    width: 45px;
    height: 45px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(30, 153, 0, 0.2);
}

.service-card.featured .service-icon svg {
    color: var(--primary);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.7);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.service-link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* ============ PRODUCTS SECTION ============ */
.products {
    padding: 100px 0;
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    background: var(--bg-light);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.tab-btn:hover {
    background: rgba(30, 153, 0, 0.1);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-placeholder {
    width: 80px;
    height: 80px;
    color: var(--primary);
    opacity: 0.8;
    transition: var(--transition);
}

.product-placeholder.medicion {
    color: var(--secondary);
}

.product-placeholder.desinfeccion {
    color: #6366f1;
}

.product-card:hover .product-placeholder {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.product-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.product-btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.product-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.product-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(30, 153, 0, 0.1);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

/* ============ HOME CATEGORIES ============ */
.home-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

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

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient);
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 153, 0, 0.2);
}

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

.category-card.featured {
    background: linear-gradient(135deg, rgba(30, 153, 0, 0.03) 0%, rgba(0, 65, 160, 0.03) 100%);
    border-color: rgba(30, 153, 0, 0.15);
}

.category-card.featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.category-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(30, 153, 0, 0.1) 0%, rgba(0, 65, 160, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.category-icon svg {
    width: 50px;
    height: 50px;
    color: var(--primary);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(30, 153, 0, 0.15) 0%, rgba(0, 65, 160, 0.15) 100%);
}

.category-card:hover .category-icon svg {
    color: var(--secondary);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.category-card > p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.category-features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.category-features span {
    padding: 6px 14px;
    background: var(--bg-light);
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: var(--bg-gradient);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.category-btn svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.category-card:hover .category-btn {
    background: var(--blue-gradient);
}

.category-card:hover .category-btn svg {
    transform: translateX(4px);
}

/* Products Preview Section */
.products-preview {
    margin-top: 40px;
}

.preview-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 40px;
}

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

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

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin-top: 40px;
}

.feature {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(30, 153, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
}

.about-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(30, 153, 0, 0.1);
    top: 0;
    right: 0;
    animation: shape-float 8s ease-in-out infinite;
}

.about-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(0, 65, 160, 0.1);
    bottom: 50px;
    left: 0;
    animation: shape-float 8s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes shape-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.about-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    color: var(--primary);
}

.experience-badge {
    position: absolute;
    bottom: 80px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ============ COVERAGE SECTION ============ */
.coverage {
    padding: 80px 0;
    background: linear-gradient(135deg, #0041A0 0%, #0056d6 100%);
    text-align: center;
}

.coverage h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.coverage h2 span {
    color: #7fff7f;
}

.coverage > .container > .coverage-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
}

.coverage-map {
    max-width: 500px;
    margin: 0 auto 50px;
}

.map-colombia {
    position: relative;
    padding: 20px;
}

.colombia-outline {
    width: 100%;
    height: auto;
    max-height: 400px;
}

.map-path {
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 2.5;
    transition: var(--transition);
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
}

/* City markers */
.city-marker {
    cursor: pointer;
    transition: var(--transition);
}

.city-marker:hover .city-dot {
    transform: scale(1.3);
}

.city-dot {
    fill: var(--primary);
    stroke: var(--white);
    stroke-width: 2;
    transition: var(--transition);
}

.main-office .city-dot {
    fill: #7fff7f;
}

.pulse-ring {
    fill: rgba(30, 153, 0, 0.3);
    animation: pulseRing 2s ease-out infinite;
}

.main-office .pulse-ring {
    fill: rgba(127, 255, 127, 0.4);
    animation: pulseRing 1.5s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.city-label {
    fill: var(--white);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-primary);
}

.city-sublabel {
    fill: rgba(127, 255, 127, 0.9);
    font-size: 10px;
    font-weight: 500;
    font-family: var(--font-primary);
}

/* Coverage Stats */
.coverage-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.coverage-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.coverage-stat .stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverage-stat .stat-icon svg {
    width: 24px;
    height: 24px;
    color: #7fff7f;
}

.coverage-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.coverage-stat .stat-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============ CONTACT SECTION ============ */
.contact {
    padding: 100px 0;
}

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

.contact-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(30, 153, 0, 0.1);
    transform: translateX(10px);
}

.method-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.method-text span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.method-text strong {
    font-size: 1rem;
    color: var(--dark);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.social-link:hover svg {
    color: var(--white);
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid #eee;
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--white);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

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

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

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

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

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

.footer-newsletter p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.newsletter-form button svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

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

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

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ============ ANIMATIONS (AOS-like) ============ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

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

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card.featured {
        grid-column: span 2;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Tablet Portrait */
@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: -1;
    }

    .about-image-container {
        height: 350px;
    }
}

/* Mobile Landscape / Large Mobile */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dark);
        padding: 100px 40px 40px;
        transition: var(--transition);
        z-index: 998;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 25px;
    }

    .nav-link {
        font-size: 1.2rem;
        color: var(--white);
    }

    .nav-toggle {
        display: flex;
        z-index: 999;
    }

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

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

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

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat {
        flex: 1;
        min-width: 120px;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        grid-column: span 1;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-categories {
        grid-template-columns: 1fr;
    }

    .category-card {
        padding: 30px;
    }

    .category-icon {
        width: 80px;
        height: 80px;
    }

    .category-icon svg {
        width: 40px;
        height: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .contact-form-container {
        padding: 25px;
    }

    .products-tabs {
        gap: 10px;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .coverage h2 {
        font-size: 1.75rem;
    }

    .coverage-map {
        max-width: 350px;
    }

    .colombia-outline {
        max-height: 300px;
    }

    .city-label {
        font-size: 10px;
    }

    .city-sublabel {
        font-size: 8px;
    }

    .coverage-stats {
        gap: 30px;
    }

    .coverage-stat .stat-number {
        font-size: 2rem;
    }

    .coverage-stat .stat-text {
        font-size: 0.8rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============ PAGE HERO (Internal Pages) ============ */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-title span {
    color: var(--primary);
}

.page-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.page-hero-bg .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.page-hero-bg .shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(30, 153, 0, 0.1);
    top: -100px;
    right: -100px;
}

.page-hero-bg .shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 65, 160, 0.1);
    bottom: -50px;
    right: 20%;
}

/* ============ INTRO SECTION ============ */
.intro-section {
    padding: 100px 0;
}

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

.intro-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
}

.intro-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-visual {
    display: flex;
    justify-content: center;
}

.intro-image {
    width: 300px;
    height: 380px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.intro-image .image-placeholder {
    width: 150px;
    height: 200px;
    color: var(--primary);
}

/* ============ PRODUCTS CATEGORIES ============ */
.products-categories {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.categories-grid .category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
}

.categories-grid .category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 153, 0, 0.2);
}

.categories-grid .category-card.featured {
    background: linear-gradient(135deg, var(--secondary) 0%, #0056d6 100%);
    color: var(--white);
}

.categories-grid .category-card.featured .category-icon svg {
    color: var(--white);
}

.categories-grid .category-card.featured h3,
.categories-grid .category-card.featured p,
.categories-grid .category-card.featured li {
    color: var(--white);
}

.categories-grid .category-card.featured li::before {
    background: var(--white);
}

.categories-grid .category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.category-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.categories-grid .category-features {
    margin-bottom: 25px;
    display: inline-block;
    text-align: left;
}

.categories-grid .category-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.categories-grid .category-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
}

/* ============ ADDITIONAL PRODUCTS ============ */
.additional-products {
    padding: 100px 0;
}

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

.product-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid #eee;
    transition: var(--transition);
}

.product-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 153, 0, 0.2);
}

.product-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(30, 153, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.product-item .product-info {
    flex: 1;
}

.product-item .product-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.product-item .product-info p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    white-space: nowrap;
}

.product-link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.product-link:hover svg {
    transform: translateX(5px);
}

/* ============ APPLICATIONS ============ */
.applications {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.application-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.application-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 153, 0, 0.2);
}

.app-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary);
}

.app-icon svg {
    width: 100%;
    height: 100%;
}

.application-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.application-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #0056d6 100%);
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ============ FOOTER CONTACT ============ */
.footer-contact p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

/* ============ CONTACT PAGE ============ */
.contact-page {
    padding: 100px 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.info-card-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

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

.info-card-content a {
    color: var(--primary);
    font-weight: 500;
}

/* ============ RESPONSIVE - INTERNAL PAGES ============ */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid .category-card.featured {
        grid-column: span 2;
    }

    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-title {
        font-size: 2.25rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .intro-visual {
        order: -1;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid .category-card.featured {
        grid-column: span 1;
    }

    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-item {
        flex-direction: column;
        text-align: center;
    }

    .product-link {
        margin-top: 15px;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }

    .intro-content h2 {
        font-size: 1.75rem;
    }

    .applications-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* ============ PARAMETERS GRID (Instrumentación) ============ */
.parameters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.parameter-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
}

.parameter-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 65, 160, 0.3);
}

.parameter-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, #2db800 100%);
    color: var(--white);
}

.parameter-card.featured h3,
.parameter-card.featured p,
.parameter-card.featured li {
    color: var(--white);
}

.parameter-card.featured li::before {
    background: var(--white);
}

.parameter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.parameter-icon.ph { background: linear-gradient(135deg, #0041A0 0%, #0056d6 100%); }
.parameter-icon.cl { background: linear-gradient(135deg, #1E9900 0%, #2db800 100%); }
.parameter-icon.cond { background: linear-gradient(135deg, #0041A0 0%, #1a5dc9 100%); }
.parameter-icon.orp { background: linear-gradient(135deg, #167300 0%, #1E9900 100%); }
.parameter-icon.turb { background: linear-gradient(135deg, #003380 0%, #0041A0 100%); }
.parameter-icon.do { background: linear-gradient(135deg, #1E9900 0%, #28c400 100%); }

.parameter-card.featured .parameter-icon {
    background: rgba(255, 255, 255, 0.2);
}

.parameter-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.parameter-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: left;
}

@media (max-width: 1024px) {
    .parameters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .parameters-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ CONTACT PAGE STYLES ============ */
.contact-info-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.info-card-icon.secondary {
    background: var(--secondary);
}

.contact-social {
    margin-top: 30px;
}

.contact-social h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-form-container h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-form-container > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

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

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============ MAP SECTION ============ */
.map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.map-container {
    margin-top: 40px;
}

.map-placeholder-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.map-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: var(--primary);
}

.map-icon svg {
    width: 100%;
    height: 100%;
}

.map-placeholder-box h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.map-placeholder-box p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* ============ PRODUCTS PAGE STYLES ============ */
.products-page {
    padding: 80px 0 100px;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    background: var(--white);
    border: 2px solid var(--bg-light);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

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

.product-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-item .product-image {
    height: 180px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.product-tag.repuestos {
    background: var(--secondary);
}

.product-tag.quimicos {
    background: #6366f1;
}

.product-tag.tuberias {
    background: var(--accent);
}

.product-details {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-details h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-details > p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-specs {
    list-style: none;
    margin-bottom: 20px;
}

.product-specs li {
    font-size: 0.85rem;
    color: var(--text);
    padding: 6px 0;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    justify-content: space-between;
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--bg-light);
}

.product-price .price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.products-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
}

.products-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.products-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.products-cta .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.products-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}

/* ============ COTIZACIONES PAGE STYLES ============ */
.quote-process {
    padding: 60px 0;
    background: var(--bg-light);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-gradient);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.process-step h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.process-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.equipment-section {
    padding: 80px 0;
}

.equipment-section.alt {
    background: var(--bg-light);
}

.equipment-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
}

.equipment-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, rgba(30, 153, 0, 0.1) 0%, rgba(30, 153, 0, 0.05) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-icon svg {
    width: 45px;
    height: 45px;
    color: var(--primary);
}

.equipment-icon.medicion {
    background: linear-gradient(135deg, rgba(0, 65, 160, 0.1) 0%, rgba(0, 65, 160, 0.05) 100%);
}

.equipment-icon.medicion svg {
    color: var(--secondary);
}

.equipment-icon.desinfeccion {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
}

.equipment-icon.desinfeccion svg {
    color: #6366f1;
}

.equipment-title h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.equipment-title h2 span {
    color: var(--primary);
}

.equipment-title p {
    font-size: 1.05rem;
    color: var(--text-light);
}

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

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

.equipment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.equipment-image {
    height: 200px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.equipment-placeholder {
    width: 80px;
    height: 80px;
    color: var(--primary);
    opacity: 0.8;
    transition: var(--transition);
}

.equipment-placeholder.medicion {
    color: var(--secondary);
}

.equipment-placeholder.desinfeccion {
    color: #6366f1;
}

.equipment-card:hover .equipment-placeholder {
    transform: scale(1.1);
}

.equipment-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    background: var(--bg-gradient);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.equipment-content {
    padding: 30px;
}

.equipment-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.equipment-content > p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.equipment-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.spec {
    text-align: center;
}

.spec-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
}

.equipment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.equipment-features span {
    padding: 4px 12px;
    background: rgba(30, 153, 0, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius-full);
}

/* Quote Modal */
.quote-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.quote-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 65, 160, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px);
    transition: var(--transition);
}

.quote-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.modal-product {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bg-light);
}

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

.quote-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

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

/* Responsive for Products Page */
@media (max-width: 1024px) {
    .products-catalog {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-catalog {
        grid-template-columns: 1fr;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .equipment-header {
        flex-direction: column;
        text-align: center;
    }

    .equipment-specs {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .process-line {
        display: none;
    }

    .process-steps {
        flex-direction: column;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .products-cta {
        padding: 35px 25px;
    }

    .products-cta h3 {
        font-size: 1.5rem;
    }
}
