/* ==========================================================================
   CONECTO.UY - DISEÑO PREMIUM PROFESIONAL
   Colores DETECTO: #00b4d8 (celeste) #0077b6 (azul)
   Colores CONECTO: #4caf50 (verde) #1b5e20 (verde oscuro)
   Colores GROUP: #ff6b35 (naranja) mezcla
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #e8e8e8;
    background-color: #000000;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
}

h1 {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    color: #c0c0c0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ==========================================================================
   HERO - IMPACTO VISUAL
   ========================================================================== */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    position: relative;
    padding: 50px 0 60px;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(0, 180, 216, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(76, 175, 80, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #000000 0%, #050a0d 50%, #000000 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 180, 216, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, #000000, transparent);
    pointer-events: none;
}

.hero-contenido {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.hero-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding: 20px 0;
}

.hero-logo-brand {
    height: 85px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-logo-brand:hover {
    transform: scale(1.05);
}

.hero-contenido h1 {
    margin-bottom: 12px;
    color: #ffffff;
}

.hero-subtitulo {
    font-size: 1.15rem;
    font-weight: 500;
    color: #00b4d8;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.hero-tecnologia {
    font-size: 1rem;
    color: #888888;
    max-width: 650px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* Garantía - DETECTO AZUL */
.garantia-hero {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    padding: 24px 28px;
    border-radius: 8px;
    margin-bottom: 20px;
    letter-spacing: 0.06em;
    box-shadow: 0 8px 32px rgba(0, 180, 216, 0.3);
    text-align: center;
}

.garantia-titulo {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.08em;
}

/* Cobertura nacional */
.cobertura-hero {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #4caf50;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

/* Botón WhatsApp Hero - DETECTO AZUL */
.btn-whatsapp-principal {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0, 180, 216, 0.35);
    transition: all 0.3s ease;
}

.btn-whatsapp-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 180, 216, 0.45);
}

/* ==========================================================================
   SECCIÓN SERVICIOS
   ========================================================================== */
.servicios {
    padding: 60px 0;
    background: linear-gradient(180deg, #000000 0%, #020305 50%, #000000 100%);
    position: relative;
}

/* Título sección DETECTO */
.servicios h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #00b4d8;
}

.servicios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Tarjetas base - CONECTO VERDE */
.servicio-card {
    background: linear-gradient(145deg, #0a0f0a 0%, #050805 100%);
    border: 1px solid rgba(76, 175, 80, 0.15);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-6px);
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(76, 175, 80, 0.1);
}

/* Tarjeta DETECCIÓN - AZUL DETECTO */
.servicio-card.servicio-deteccion-principal {
    background: linear-gradient(145deg, #051520 0%, #020a10 100%);
    border: 2px solid rgba(0, 180, 216, 0.4);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 180, 216, 0.1);
}

.servicio-card.servicio-deteccion-principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0077b6, #00b4d8, #0077b6);
}

.servicio-card.servicio-deteccion-principal:hover {
    border-color: rgba(0, 180, 216, 0.6);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(0, 180, 216, 0.15);
}

/* Logo Detecto dentro de tarjeta */
.logo-detecto-card {
    height: 45px;
    width: auto;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Badge DETECTO AZUL */
.badge-principal {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffffff;
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 180, 216, 0.3);
}

/* Iconos de servicio CONECTO */
.icon-servicio {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.servicio-card:hover .icon-servicio {
    opacity: 1;
    transform: scale(1.08);
}

.servicio-card h3 {
    margin-bottom: 16px;
    color: #ffffff;
}

.servicio-card.servicio-deteccion-principal h3 {
    color: #00b4d8;
}

.servicio-card p {
    color: #a0a0a0;
    line-height: 1.7;
    margin-bottom: 24px;
}

.servicio-card ul {
    margin-bottom: 8px;
}

.servicio-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.servicio-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #4caf50, #81c784);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.4);
}

/* Zona de cobertura VERDE */
.servicio-card li.zona-cobertura {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(76, 175, 80, 0.2);
    color: #4caf50;
    font-weight: 600;
    font-size: 0.9rem;
}

.servicio-card li.zona-cobertura::before {
    width: 10px;
    height: 10px;
    background: #4caf50;
    box-shadow: 0 0 12px rgba(76, 175, 80, 0.6);
}

/* Botón detección AZUL DETECTO */
.btn-whatsapp-deteccion {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 14px 28px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 119, 182, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp-deteccion:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 119, 182, 0.5);
}

/* ==========================================================================
   BLOQUE CONECTO.UY - SERVICIOS TÉCNICOS ENCAPSULADOS
   ========================================================================== */
.bloque-conecto-servicios {
    grid-column: span 1;
    background: linear-gradient(145deg, #0a120a 0%, #050805 100%);
    border: 2px solid rgba(76, 175, 80, 0.4);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 40px rgba(76, 175, 80, 0.08);
}

.bloque-conecto-servicios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1b5e20, #4caf50, #1b5e20);
}

.conecto-servicios-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}

.logo-conecto-card {
    height: 45px;
    width: auto;
    margin-bottom: 16px;
    opacity: 0.95;
}

.badge-conecto {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffffff;
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.conecto-servicios-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.servicio-mini-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(76, 175, 80, 0.15);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.servicio-mini-card:hover {
    border-color: rgba(76, 175, 80, 0.35);
    background: rgba(76, 175, 80, 0.05);
}

.icon-servicio-mini {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.servicio-mini-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #4caf50;
}

.servicio-mini-card ul {
    margin: 0;
}

.servicio-mini-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    color: #909090;
    font-size: 0.85rem;
    line-height: 1.5;
}

.servicio-mini-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    background: #4caf50;
    border-radius: 50%;
    opacity: 0.7;
}

.conecto-servicios-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(76, 175, 80, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.zona-cobertura-conecto {
    color: #4caf50;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Botón VERDE OSCURO para Conecto - SIN EFECTO BORROSO */
.btn-whatsapp-conecto {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    background: #1b5e20;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(27, 94, 32, 0.5);
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp-conecto:hover {
    background: #2e7d32;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.6);
}

/* ==========================================================================
   BLOQUE TECNOLOGÍA - DETECTO AZUL
   ========================================================================== */
.bloque-tecnologia {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 180, 216, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #000000 0%, #020305 50%, #000000 100%);
    position: relative;
}

.bloque-tecnologia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.4), transparent);
}

.bloque-tecnologia h2 {
    text-align: center;
    margin-bottom: 12px;
    color: #00b4d8;
}

.tecnologia-intro {
    text-align: center;
    color: #666666;
    margin-bottom: 50px;
    font-size: 1rem;
}

.tecnologia-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.tecnologia-item {
    background: linear-gradient(145deg, #051015 0%, #020508 100%);
    border: 1px solid rgba(0, 180, 216, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tecnologia-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 180, 216, 0.4);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 180, 216, 0.1);
}

.tecnologia-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   BLOQUE SELLOS - MIXTO
   ========================================================================== */
.bloque-sellos {
    padding: 60px 0;
    background: #000000;
}

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

.sello {
    background: linear-gradient(145deg, #0a0a0a 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 24px 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.sello:nth-child(1),
.sello:nth-child(2) {
    border-color: rgba(0, 180, 216, 0.2);
}

.sello:nth-child(3),
.sello:nth-child(4) {
    border-color: rgba(76, 175, 80, 0.2);
}

.sello:hover {
    transform: translateY(-4px);
}

.sello:nth-child(1):hover,
.sello:nth-child(2):hover {
    border-color: rgba(0, 180, 216, 0.5);
    box-shadow: 0 12px 40px rgba(0, 180, 216, 0.15);
}

.sello:nth-child(3):hover,
.sello:nth-child(4):hover {
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.15);
}

.sello-icon {
    font-size: 2rem;
}

.sello:nth-child(1) .sello-icon,
.sello:nth-child(2) .sello-icon {
    color: #00b4d8;
}

.sello:nth-child(3) .sello-icon,
.sello:nth-child(4) .sello-icon {
    color: #4caf50;
}

.sello-texto {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #b0b0b0;
}

/* ==========================================================================
   BLOQUE POR QUÉ ELEGIR - CONECTO VERDE
   ========================================================================== */
.porque-conecto {
    padding: 80px 0;
    background: 
        radial-gradient(ellipse at 80% 50%, rgba(76, 175, 80, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #000000 0%, #030503 50%, #000000 100%);
    position: relative;
}

.porque-conecto::before,
.porque-conecto::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.3), transparent);
}

.porque-conecto::before { top: 0; }
.porque-conecto::after { bottom: 0; }

.porque-conecto h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #4caf50;
}

.porque-conecto ul {
    max-width: 600px;
    margin: 0 auto 32px;
}

.porque-conecto li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
}

.porque-conecto li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Botón VERDE OSCURO para sección Conecto - SIN EFECTO BORROSO */
.porque-conecto .btn-whatsapp-principal {
    display: block;
    text-align: center;
    max-width: 340px;
    margin: 0 auto;
    background: #1b5e20;
    box-shadow: 0 4px 16px rgba(27, 94, 32, 0.5);
}

.porque-conecto .btn-whatsapp-principal:hover {
    background: #2e7d32;
    box-shadow: 0 6px 20px rgba(27, 94, 32, 0.6);
}

/* ==========================================================================
   BLOQUE CIERRE VISUAL
   ========================================================================== */
.bloque-cierre-visual {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(0, 180, 216, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(76, 175, 80, 0.08) 0%, transparent 50%),
        #000000;
}

.cierre-contenido {
    text-align: center;
}

.cierre-texto {
    color: #ffffff;
    font-size: clamp(1.1rem, 3.5vw, 1.8rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* ==========================================================================
   SECCIÓN CONTACTO - MIXTO
   ========================================================================== */
.contacto {
    padding: 80px 0;
    background: linear-gradient(180deg, #000000 0%, #020302 100%);
}

.contacto h2 {
    text-align: center;
    margin-bottom: 12px;
}

.contacto-subtitulo {
    text-align: center;
    margin-bottom: 8px;
    color: #888888;
}

.contacto-cobertura,
.contacto-atencion {
    text-align: center;
    font-size: 0.85rem;
    color: #666666;
    margin-bottom: 8px;
}

.contacto-atencion {
    margin-bottom: 40px;
}

.contacto-atencion a {
    color: #4caf50;
}

.contacto-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.contacto-card {
    background: linear-gradient(145deg, #0a0a0a 0%, #050505 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contacto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.contacto-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
}

.contacto-titulo {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.1rem;
}

.contacto-texto {
    color: #888888;
    font-size: 0.9rem;
}

/* WhatsApp Card - VERDE */
.whatsapp-card {
    border-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-card .contacto-icon {
    fill: #25d366;
}

.whatsapp-card:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-color: transparent;
}

.whatsapp-card:hover .contacto-icon,
.whatsapp-card:hover .contacto-titulo,
.whatsapp-card:hover .contacto-texto {
    color: #ffffff;
    fill: #ffffff;
}

/* Info Card - VERDE */
.info-card {
    border-color: rgba(76, 175, 80, 0.2);
}

.info-card .contacto-icon {
    stroke: #4caf50;
}

.contacto-nombre {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
}

.contacto-telefono {
    color: #4caf50;
    font-size: 1.2rem;
    font-weight: 600;
}

.contacto-email {
    color: #888888;
    font-size: 0.9rem;
}

/* Instagram Card */
.instagram-card {
    border-color: rgba(228, 64, 95, 0.2);
}

.instagram-card .contacto-icon {
    fill: #E4405F;
}

.instagram-card .contacto-titulo {
    color: #ffffff;
}

.instagram-card .contacto-handle {
    color: #E4405F;
    font-size: 1.1rem;
    font-weight: 700;
}

.instagram-card:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.instagram-card:hover .contacto-icon,
.instagram-card:hover .contacto-titulo,
.instagram-card:hover .contacto-handle {
    color: #ffffff;
    fill: #ffffff;
}

/* ==========================================================================
   FOOTER - CONECTO GROUP GRANDE
   ========================================================================== */
.footer {
    padding: 60px 0 50px;
    background: linear-gradient(180deg, #000000 0%, #0a0505 100%);
    border-top: 2px solid;
    border-image: linear-gradient(90deg, #0077b6, #4caf50, #ff6b35) 1;
}

.footer-contenido {
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-brand span {
    color: #666666;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-logo {
    height: 60px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 20px rgba(255, 107, 53, 0.2));
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 6px 30px rgba(255, 107, 53, 0.3));
}

.footer p {
    margin: 0;
    color: #555555;
    font-size: 0.85rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 640px) {
    .sellos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .sello {
        padding: 28px 20px;
    }
    
    .footer-logo {
        height: 70px;
    }
}

@media (min-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero-contenido {
        text-align: left;
    }
    
    .hero-logos {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 50px;
        padding: 20px 0;
    }
    
    .hero-logo-brand {
        height: 90px;
    }
    
    .cobertura-hero {
        text-align: left;
    }
    
    .servicios {
        padding: 80px 0;
    }
    
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .servicio-deteccion-principal {
        grid-column: span 2;
    }
    
    .bloque-conecto-servicios {
        grid-column: span 2;
    }
    
    .conecto-servicios-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .conecto-servicios-footer {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo-conecto-card {
        height: 50px;
    }
    
    .tecnologia-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contacto-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bloque-cierre-visual {
        height: 280px;
    }
    
    .footer-brand {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-logo {
        height: 75px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 100px 0;
    }
    
    .hero-logo-brand {
        height: 110px;
    }
    
    .hero-subtitulo {
        font-size: 1.3rem;
    }
    
    .contenedor {
        padding: 0 40px;
    }
    
    .servicios {
        padding: 100px 0;
    }
    
    .servicio-card {
        padding: 40px;
    }
    
    .logo-detecto-card {
        height: 55px;
    }
    
    .bloque-conecto-servicios {
        padding: 40px;
    }
    
    .logo-conecto-card {
        height: 55px;
    }
    
    .bloque-tecnologia {
        padding: 100px 0;
    }
    
    .porque-conecto {
        padding: 80px 0;
    }
    
    .bloque-cierre-visual {
        height: 320px;
    }
    
    .contacto {
        padding: 80px 0;
    }
    
    .footer {
        padding: 60px 0 50px;
    }
    
    .footer-logo {
        height: 90px;
    }
}
