/* ==========================================================================
   Estilos Principales - Proyet-provinet (Venezuela)
   Alineado con Core Web Vitals (LCP < 1s) y Accesibilidad WCAG AA (>4.5:1)
   ========================================================================== */

:root {
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Paleta de Colores 60-30-10 */
    --color-bg: #f8fafc;         /* 60% Fondo */
    --color-card-bg: #ffffff;
    --color-text-main: #0f172a;  /* Slate 900 */
    --color-text-muted: #475569; /* Slate 600 */
    
    --color-primary: #0f172a;    /* 30% Estructura */
    --color-primary-light: #1e293b;
    --color-secondary: #1e3a8a;  /* Azul Corporativo */
    --color-secondary-light: #2563eb;
    
    --color-accent: #d97706;     /* 10% CTA / Amber 600 (Accesibilidad WCAG AA) */
    --color-accent-hover: #b45309;
    --color-accent-light: #fef3c7;
    
    --color-success: #10b981;    /* Verde Soporte */
    --color-success-light: #d1fae5;
    --color-danger: #ef4444;
    --color-border: #e2e8f0;

    /* Estructura y Efectos */
    --container-max-width: 1200px;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Sombras Premium */
    --shadow-subtle: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
    --shadow-card: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
    --shadow-hover: 0 20px 35px -5px rgba(15, 23, 42, 0.12), 0 12px 16px -8px rgba(15, 23, 42, 0.05);
}

/* Reset y Normalización */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary);
}

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

ul {
    list-style: none;
}

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

/* Contenedores y Estructuras Comunes */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-accent);
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

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

/* Botones con Micro-interacciones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.4);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 83, 9, 0.5);
    outline: none;
}

.btn-secondary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    outline: none;
}

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

.btn-outline:hover, .btn-outline:focus {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
    outline: none;
}

/* Iconos SVG */
.icon-svg, .icon-svg-footer {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

/* ==========================================================================
   1. TOP-BAR & HEADER (Fase 1 & 2)
   ========================================================================== */

.top-bar {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.support-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-success);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 1.6s infinite;
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-email, .top-bar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-phone strong {
    color: var(--color-accent-light);
}

.top-bar-email:hover, .top-bar-phone:hover {
    color: var(--color-accent-light);
}

/* Header de Navegación */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-subtle);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition-smooth);
    padding: 15px 0;
}

.site-header.shrink {
    padding: 10px 0;
    background-color: #ffffff;
    box-shadow: var(--shadow-sm);
}

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

.site-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

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

.logo-light {
    color: var(--color-accent);
}

.navigation-bar {
    display: none; /* Mobile first hidden */
}

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

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

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

.nav-link:hover {
    color: var(--color-secondary-light);
}

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

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-cta-header {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.menu-hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   2. HERO SECTION & FORM (Fase 3)
   ========================================================================== */

.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.hero-content h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-content h1 span {
    color: var(--color-accent);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.benefit-icon {
    width: 22px;
    height: 22px;
    color: var(--color-success);
}

/* Captura de Leads - Formulario en Primer Scroll */
.lead-card-wrapper {
    background-color: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-xl);
    color: var(--color-text-main);
    border-top: 5px solid var(--color-accent);
}

.lead-card-title {
    font-size: 1.35rem;
    margin-bottom: 8px;
    text-align: center;
}

.lead-card-subtitle {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 20px;
}

/* Campos de Formulario Comunes */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--color-secondary-light);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-checkbox-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.form-checkbox-label input {
    margin-top: 3px;
}

.form-checkbox-label a {
    color: var(--color-secondary-light);
    text-decoration: underline;
}

.form-submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* ==========================================================================
   3. SERVICIOS (Fase 3)
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-card {
    background-color: var(--color-card-bg);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(37, 99, 235, 0.2);
}

.service-card-icon-box {
    width: 50px;
    height: 50px;
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--color-accent);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card-bullets {
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bullet-check-icon {
    width: 14px;
    height: 14px;
    color: var(--color-success);
}

.service-card-link {
    color: var(--color-secondary-light);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-card-link:hover {
    color: var(--color-secondary);
}

/* ==========================================================================
   4. PROCESO TÉCNICO (Fase 3)
   ========================================================================== */

.process-section {
    background-color: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.process-step {
    background-color: var(--color-bg);
    border-radius: var(--border-radius-md);
    padding: 30px;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.process-step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.15);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.process-step-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

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

/* ==========================================================================
   5. COBERTURA GEOGRÁFICA (Fase 3)
   ========================================================================== */

.coverage-section {
    background: linear-gradient(to bottom, var(--color-bg) 0%, #ffffff 100%);
}

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

.coverage-map-visual {
    background-color: var(--color-primary-light);
    color: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.coverage-map-visual h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.coverage-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent-light);
    margin-bottom: 20px;
}

.coverage-list-cities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    text-align: left;
    margin-top: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.city-pin {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
}

/* ==========================================================================
   6. CONTACTO (Fase 3)
   ========================================================================== */

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

.contact-info-panel {
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 40px;
}

.contact-info-panel h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.contact-info-panel p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-detail-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-icon-box {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-form-panel {
    background-color: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}

/* ==========================================================================
   7. LEGAL PAGES (/legal/)
   ========================================================================== */

.legal-section {
    padding: 60px 0 100px 0;
}

.legal-card {
    background-color: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-border);
}

.legal-card h1 {
    font-size: 2.25rem;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 15px;
}

.legal-card h2 {
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
}

.legal-card p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.legal-card ul {
    margin: 15px 0 20px 20px;
    list-style: disc;
    color: var(--color-text-muted);
}

.legal-card li {
    margin-bottom: 8px;
}

/* ==========================================================================
   8. PAGINA DE GRACIAS (gracias.php)
   ========================================================================== */

.thankyou-section {
    text-align: center;
    padding: 100px 0;
}

.thankyou-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 50px 40px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    border-top: 6px solid var(--color-success);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--color-success-light);
    color: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
}

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

.thankyou-card h1 {
    font-size: 2.25rem;
    margin-bottom: 15px;
}

.thankyou-card p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.urgency-banner-thankyou {
    background-color: var(--color-accent-light);
    border-left: 4px solid var(--color-accent);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    text-align: left;
    margin-bottom: 30px;
}

.urgency-banner-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent-hover);
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.urgency-banner-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.btn-thankyou-call {
    width: 100%;
}

/* ==========================================================================
   9. PAGINA 404 (404.php)
   ========================================================================== */

.error-section {
    text-align: center;
    padding: 120px 0;
}

.error-container {
    max-width: 500px;
    margin: 0 auto;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(30, 58, 138, 0.1);
    margin-bottom: 20px;
}

.error-section h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.error-section p {
    color: var(--color-text-muted);
    margin-bottom: 35px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ==========================================================================
   10. COOKIES CONSENT BANNER (Fase 4)
   ========================================================================== */

.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #ffffff;
    color: var(--color-text-main);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.2);
    padding: 24px;
    border-radius: var(--border-radius-md);
    z-index: 1000;
    display: none;
    border: 1px solid var(--color-border);
    max-width: 600px;
}

.cookie-consent-content {
    margin-bottom: 16px;
}

.cookie-consent-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cookie-consent-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.cookie-consent-text a {
    color: var(--color-secondary-light);
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

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

.btn-cookie-deny {
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-cookie-deny:hover {
    background-color: var(--color-bg);
}

/* ==========================================================================
   11. FOOTER (Fase 1)
   ========================================================================== */

.site-footer {
    background-color: var(--color-primary);
    color: #ffffff;
    padding: 60px 0 0 0;
    font-size: 0.9rem;
    border-top: 5px solid var(--color-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
}

.footer-brand-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-rif-badge {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 10px 16px;
    border-radius: var(--border-radius-sm);
    display: inline-block;
    font-size: 0.85rem;
}

.footer-rif-badge strong {
    color: var(--color-accent-light);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    color: #ffffff;
}

.footer-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-link:hover {
    color: var(--color-accent-light);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-icon-svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-accent);
}

.footer-contact-link {
    color: inherit;
}

.footer-contact-link:hover {
    color: var(--color-accent-light);
}

/* Disclaimer YMYL */
.footer-disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    text-align: justify;
}

/* Copyright y enlace de respaldo */
.footer-copyright-section {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-backlink-anchor {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}

.footer-backlink-anchor:hover {
    color: var(--color-accent-light);
}

/* ==========================================================================
   12. RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */

@media (min-width: 600px) {
    .cookie-consent-banner {
        right: auto;
        left: 20px;
        width: calc(100% - 40px);
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
    
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .coverage-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
    
    .contact-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 30px;
    }
}

@media (min-width: 992px) {
    .menu-hamburger-btn {
        display: none;
    }
    
    .navigation-bar {
        display: block;
    }
    
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animaciones */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.phone-bounce {
    animation: phone-bounce-anim 2.5s infinite;
}

@keyframes phone-bounce-anim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}
