/*
Theme Name: ALM Logistic Child
Theme URI: https://almlogistic-peru.com
Description: Tema personalizado ALM Logistic Perú
Author: ALM Logistic
Template: oceanwp
Version: 1.0
*/
/* ============================================
   SOLO TAMAÑO DE FUENTE - GLOBAL
============================================ */

/* Tamaño base */
html {
    font-size: 12px !important;
}

body {
    font-size: 12px !important;
}

/* === TAMAÑO DE TEXTOS (SOLO tamaño, sin color) === */
p, 
.alm-service-compact-card p,
.alm-service-card p,
.alm-about-text p,
.alm-why-item p,
.alm-contact-info > p,
.alm-hero p,
.alm-page-hero-content p,
.alm-about-detail-text p,
.alm-service-detail-content p,
.alm-mv-card p,
.alm-team-member p,
.alm-quote-benefit p,
.alm-contact-text p,
.alm-section-header p,
.alm-page-contact p,
.alm-quote-page p,
li,
.alm-service-compact-features li,
.alm-feature,
.alm-about-feature,
.alm-contact-item {
    font-size: 1.1rem !important;
    line-height: 1.9 !important;
    /* ⚠️ ELIMINADO: color: #333 !important; */
}

/* Títulos H1 */
h1,
.alm-hero h1,
.alm-page-hero-content h1 {
    font-size: 3.5rem !important;
}

/* Títulos H2 */
h2,
.alm-section-header h2,
.alm-about-text h2,
.alm-about-detail-text h2,
.alm-contact-info h2 {
    font-size: 2.8rem !important;
}

/* Títulos H3 */
h3,
.alm-service-compact-card h3,
.alm-service-card h3,
.alm-why-item h3,
.alm-mv-card h3 {
    font-size: 1.6rem !important;
}

/* Estadísticas */
.alm-stat-number,
.alm-about-stat-number {
    font-size: 3.5rem !important;
}

.alm-stat-label,
.alm-about-stat-label {
    font-size: 1.2rem !important;
}

/* Badge */
.alm-hero-badge {
    font-size: 1rem !important;
    padding: 10px 28px !important;
}

/* Botones */
.alm-btn {
    font-size: 1.1rem !important;
    padding: 16px 40px !important;
}

.alm-btn-small {
    font-size: 1rem !important;
    padding: 10px 28px !important;
}

/* Menú */
.alm-menu a,
.alm-menu-list a {
    font-size: 1.1rem !important;
}

.alm-quote {
    font-size: 1rem !important;
    padding: 10px 26px !important;
}
/* ============================================
   1. RESET & BASE
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.8;
    overflow-x: hidden;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ============================================
   2. CONTENEDOR
============================================ */
.alm-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/* ============================================
   3. HEADER
============================================ */
.alm-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    height: 85px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 0 25px;
}

.alm-header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alm-logo img {
    max-height: 65px;
    width: auto;
}

/* ============================================
   4. MENÚ PRINCIPAL (Desktop)
============================================ */
.alm-menu ul,
.alm-menu-list {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.alm-menu a,
.alm-menu-list a {
    color: #003366;
    font-weight: 600;
    font-size: 17px;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.alm-menu a::after,
.alm-menu-list a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: #0d6efd;
    transition: width 0.3s ease;
}

.alm-menu a:hover,
.alm-menu-list a:hover {
    color: #0d6efd;
}

.alm-menu a:hover::after,
.alm-menu-list a:hover::after {
    width: 100%;
}

/* ============================================
   5. BOTÓN COTIZAR
============================================ */
.alm-quote,
.alm-menu .alm-quote,
.alm-menu-list .alm-quote {
    background: #0d6efd;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.25);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    line-height: 1.4;
}

.alm-quote:hover,
.alm-menu .alm-quote:hover,
.alm-menu-list .alm-quote:hover {
    background: #003366;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

.alm-quote::after,
.alm-menu .alm-quote::after,
.alm-menu-list .alm-quote::after {
    display: none !important;
}

/* ============================================
   6. MENÚ HAMBURGUESA
============================================ */
.alm-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
    background: transparent;
    border: none;
    z-index: 10001;
}

.alm-hamburger span {
    display: block;
    width: 30px;
    height: 3.5px;
    background: #003366;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.alm-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.alm-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.alm-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   7. MENÚ MÓVIL
============================================ */
.alm-menu-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 51, 102, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 40px 20px;
    transition: opacity 0.3s ease;
}

.alm-menu-mobile.open {
    display: flex;
}

.alm-menu-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.alm-menu-mobile li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alm-menu-mobile li:last-child {
    border-bottom: none;
}

.alm-menu-mobile a {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    padding: 18px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.alm-menu-mobile a:hover {
    color: #0d6efd;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.alm-menu-mobile .alm-quote {
    display: inline-block;
    background: #0d6efd;
    color: #ffffff;
    padding: 16px 45px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    border: 2px solid transparent;
    margin-top: 10px;
}

.alm-menu-mobile .alm-quote:hover {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: none;
}

.alm-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.alm-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================================
   8. RESPONSIVE - MENÚ HAMBURGUESA
============================================ */
@media (max-width: 768px) {
    .alm-menu ul,
    .alm-menu-list {
        display: none;
    }
    .alm-hamburger {
        display: flex;
    }
}

/* ============================================
   9. BOTONES PRINCIPALES
============================================ */
.alm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0d6efd;
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(13, 110, 253, 0.3);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.alm-btn:hover {
    background: #ffffff;
    color: #003366;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(13, 110, 253, 0.4);
    border-color: #0d6efd;
}

.alm-btn-whatsapp {
    background: #25D366;
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.3);
}

.alm-btn-whatsapp:hover {
    background: #ffffff;
    color: #25D366;
    border-color: #25D366;
}

/* ============================================
   10. SLIDER - HERO
============================================ */
.alm-hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background: #003366;
}

.alm-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.alm-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alm-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.alm-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.alm-slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.75) 0%, rgba(0, 51, 102, 0.40) 100%);
    z-index: 1;
}

.alm-slide .alm-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
    text-align: center;
    color: #ffffff;
    width: 100%;
}

.alm-slide .alm-hero-content h1 {
    color: #ffffff !important;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 15px;
}

.alm-slide .alm-hero-content h1 span {
    color: #0d6efd;
}

.alm-slide .alm-hero-content p {
    color: #ffffff !important;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.8;
}

.alm-hero-badge {
    display: inline-block;
    background: #0d6efd;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.alm-hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* ============================================
   11. CONTROLES DEL SLIDER
============================================ */
.alm-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.alm-slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.alm-slider-btn.prev {
    left: 15px;
}

.alm-slider-btn.next {
    right: 15px;
}

.alm-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.alm-slider-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.alm-slider-dots span.active {
    background: #0d6efd;
    border-color: #ffffff;
    transform: scale(1.25);
}

/* ============================================
   12. HERO PRINCIPAL (FALLBACK)
============================================ */
.alm-hero {
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: url("/wp-content/themes/oceanwp-child/assets/images/hero-logistica.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 20px;
}

.alm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.75) 0%, rgba(0, 51, 102, 0.45) 100%);
    z-index: 1;
}

.alm-hero-content {
    max-width: 900px;
    padding: 20px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    text-align: center;
}

.alm-hero h1 {
    color: #ffffff;
    font-size: clamp(3rem, 7vw, 4.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.alm-hero h1 span {
    color: #0d6efd;
}

.alm-hero p {
    color: #ffffff;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    max-width: 800px;
    margin: 0 auto 35px;
    line-height: 1.8;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

/* ============================================
   13. SECCIONES COMUNES
============================================ */
.alm-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.alm-subtitle {
    display: inline-block;
    color: #0d6efd;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.alm-section-header h2 {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    color: #003366;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.alm-section-header h2 span {
    color: #0d6efd;
}

.alm-section-header p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* ============================================
   14. SERVICIOS
============================================ */
.alm-services {
    padding: 100px 20px;
    background: #f5f7fa;
}

.alm-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.alm-service-card {
    background: #ffffff;
    padding: 50px 35px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.alm-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #003366);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.alm-service-card:hover::before {
    opacity: 1;
}

.alm-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.12);
    border-color: #0d6efd;
}

.alm-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.alm-service-card h3 {
    color: #003366;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.alm-service-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.alm-service-link {
    color: #0d6efd;
    font-weight: 600;
    font-size: 1rem;
}

.alm-service-link:hover {
    color: #003366;
}

/* ============================================
   15. SERVICIOS - VERSIÓN COMPACTA
============================================ */
.alm-services-compact {
    padding: 80px 20px;
    background: #f5f7fa;
}

.alm-services-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.alm-service-compact-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.alm-service-compact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.08);
    border-color: #0d6efd;
}

.alm-service-compact-icon {
    font-size: 45px;
    margin-bottom: 12px;
    display: block;
}

.alm-service-compact-card h3 {
    color: #003366;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.alm-service-compact-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: center;
}

.alm-service-compact-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    text-align: left;
    width: 100%;
    max-width: 250px;
}

.alm-service-compact-features li {
    color: #444;
    font-size: 0.9rem;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.alm-btn-small {
    display: inline-block;
    background: #0d6efd;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.alm-btn-small:hover {
    background: #003366;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

/* ============================================
   16. ESTADÍSTICAS
============================================ */
.alm-stats {
    background: linear-gradient(135deg, #003366, #0d6efd);
    padding: 90px 20px;
    color: #ffffff;
}

.alm-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.alm-stat-item {
    text-align: center;
}

.alm-stat-number {
    font-size: clamp(3.5rem, 6vw, 4.8rem);
    font-weight: 800;
    display: block;
    line-height: 1;
}

.alm-stat-label {
    font-size: 1.3rem;
    opacity: 0.9;
    display: block;
    margin-top: 10px;
}

/* ============================================
   17. ABOUT
============================================ */
/* ============================================
   ABOUT - ICONOS ORBITANDO EL MUNDO
============================================ */
/* ============================================
   ABOUT - ICONOS ORBITANDO MEJORADO
============================================ */

.alm-about {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.alm-about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ============================================
   TEXTO
============================================ */
.alm-about-text {
    flex: 1;
    order: 0;
}

.alm-about-text .alm-subtitle {
    color: #2563eb;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 10px;
}

.alm-about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a2e;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.alm-about-text h2 span {
    color: #2563eb;
}

.alm-about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4a4a6a;
    margin-bottom: 18px;
}

.alm-about-text p strong {
    color: #1a1a2e;
    font-weight: 700;
}

.alm-about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.alm-about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: #1a1a2e;
    padding: 5px 0;
}

.alm-about-feature span {
    font-size: 1.2rem;
    color: #2563eb;
}

.alm-about-text .alm-btn {
    background: #2563eb;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.alm-about-text .alm-btn:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4);
}

/* ============================================
   MUNDO CON ÓRBITAS MEJORADO
============================================ */
.alm-about-orbit {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 1;
}

.alm-orbit-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* === GLOBO CENTRAL MEJORADO === */
.alm-globe {
    position: relative;
    z-index: 2;
    width: 140px;
    height: 140px;
}

.alm-globe-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(145deg, #0a1628, #1a3a6a, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 10px 60px rgba(37, 99, 235, 0.25),
        inset 0 -20px 40px rgba(0, 0, 0, 0.3),
        inset 0 20px 40px rgba(37, 99, 235, 0.2);
    animation: globeFloat 4s ease-in-out infinite;
    overflow: hidden;
}

.alm-globe-emoji {
    font-size: 4.5rem;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.2));
    animation: globeSpin 20s linear infinite;
    line-height: 1;
    position: relative;
    z-index: 2;
}

@keyframes globeSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.05); }
    100% { transform: rotate(0deg) scale(1); }
}

/* === BRILLO DEL GLOBO === */
.alm-globe-shine {
    position: absolute;
    top: -30%;
    left: -30%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    animation: shineMove 4s ease-in-out infinite;
}

@keyframes shineMove {
    0%, 100% { transform: translate(-10%, -10%) scale(1); opacity: 0.6; }
    50% { transform: translate(10%, 10%) scale(1.2); opacity: 1; }
}

/* === ANILLOS DEL GLOBO === */
.alm-globe-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(37, 99, 235, 0.15);
    transform: translate(-50%, -50%) scale(1);
    animation: ringExpand 3s ease-out infinite;
    pointer-events: none;
}

.alm-globe-ring.delay-1 {
    animation-delay: 1s;
}

.alm-globe-ring.delay-2 {
    animation-delay: 2s;
}

@keyframes ringExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
        border-color: rgba(37, 99, 235, 0.3);
    }
    100% {
        transform: translate(-50%, -50%) scale(2.8);
        opacity: 0;
        border-color: rgba(37, 99, 235, 0);
    }
}

@keyframes globeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* ============================================
   ÓRBITAS MEJORADAS
============================================ */
.alm-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* === ITEMS EN ÓRBITA === */
.alm-orbit-item {
    position: absolute;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(255, 255, 255, 0.25);
    gap: 2px;
    backdrop-filter: blur(5px);
}

.alm-orbit-item:hover {
    transform: scale(1.25) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    z-index: 10;
    border-color: rgba(255, 255, 255, 0.5);
}

.alm-orbit-icon {
    font-size: 2.2rem;
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.alm-orbit-label {
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.95;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-top: 1px;
}

/* === ÓRBITA 1: Marítimo === */
.orbit-1 .alm-orbit-item {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    animation: orbit1 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes orbit1 {
    0% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    25% { transform: translateX(-50%) translateY(70px) rotate(90deg); }
    50% { transform: translateX(-50%) translateY(0) rotate(180deg); }
    75% { transform: translateX(-50%) translateY(-70px) rotate(270deg); }
    100% { transform: translateX(-50%) translateY(0) rotate(360deg); }
}

/* === ÓRBITA 2: Aéreo === */
.orbit-2 .alm-orbit-item {
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    animation: orbit2 11s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes orbit2 {
    0% { transform: translateY(-50%) translateX(0) rotate(0deg); }
    25% { transform: translateY(-50%) translateX(-70px) rotate(90deg); }
    50% { transform: translateY(-50%) translateX(0) rotate(180deg); }
    75% { transform: translateY(-50%) translateX(70px) rotate(270deg); }
    100% { transform: translateY(-50%) translateX(0) rotate(360deg); }
}

/* === ÓRBITA 3: Terrestre === */
.orbit-3 .alm-orbit-item {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    animation: orbit3 10s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes orbit3 {
    0% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    25% { transform: translateX(-50%) translateY(-70px) rotate(90deg); }
    50% { transform: translateX(-50%) translateY(0) rotate(180deg); }
    75% { transform: translateX(-50%) translateY(70px) rotate(270deg); }
    100% { transform: translateX(-50%) translateY(0) rotate(360deg); }
}

/* === ÓRBITA 4: Global === */
.orbit-4 .alm-orbit-item {
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    animation: orbit4 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes orbit4 {
    0% { transform: translateY(-50%) translateX(0) rotate(0deg); }
    25% { transform: translateY(-50%) translateX(70px) rotate(90deg); }
    50% { transform: translateY(-50%) translateX(0) rotate(180deg); }
    75% { transform: translateY(-50%) translateX(-70px) rotate(270deg); }
    100% { transform: translateY(-50%) translateX(0) rotate(360deg); }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .alm-about-content {
        gap: 40px;
    }

    .alm-orbit-container {
        width: 340px;
        height: 340px;
    }

    .alm-globe {
        width: 120px;
        height: 120px;
    }

    .alm-globe-emoji {
        font-size: 3.5rem;
    }

    .alm-orbit-item {
        width: 70px;
        height: 70px;
    }

    .alm-orbit-icon {
        font-size: 1.8rem;
    }

    .alm-orbit-label {
        font-size: 0.45rem;
    }

    @keyframes orbit1 {
        0% { transform: translateX(-50%) translateY(0); }
        25% { transform: translateX(-50%) translateY(60px); }
        50% { transform: translateX(-50%) translateY(0); }
        75% { transform: translateX(-50%) translateY(-60px); }
        100% { transform: translateX(-50%) translateY(0); }
    }

    @keyframes orbit2 {
        0% { transform: translateY(-50%) translateX(0); }
        25% { transform: translateY(-50%) translateX(-60px); }
        50% { transform: translateY(-50%) translateX(0); }
        75% { transform: translateY(-50%) translateX(60px); }
        100% { transform: translateY(-50%) translateX(0); }
    }

    @keyframes orbit3 {
        0% { transform: translateX(-50%) translateY(0); }
        25% { transform: translateX(-50%) translateY(-60px); }
        50% { transform: translateX(-50%) translateY(0); }
        75% { transform: translateX(-50%) translateY(60px); }
        100% { transform: translateX(-50%) translateY(0); }
    }

    @keyframes orbit4 {
        0% { transform: translateY(-50%) translateX(0); }
        25% { transform: translateY(-50%) translateX(60px); }
        50% { transform: translateY(-50%) translateX(0); }
        75% { transform: translateY(-50%) translateX(-60px); }
        100% { transform: translateY(-50%) translateX(0); }
    }
}

@media (max-width: 768px) {
    .alm-about {
        padding: 60px 15px;
    }

    .alm-about-content {
        flex-direction: column;
        gap: 30px;
    }

    .alm-about-text {
        order: 0 !important;
        text-align: center;
    }

    .alm-about-orbit {
        order: 1 !important;
        width: 100%;
    }

    .alm-orbit-container {
        width: 280px;
        height: 280px;
    }

    .alm-globe {
        width: 100px;
        height: 100px;
    }

    .alm-globe-emoji {
        font-size: 3rem;
    }

    .alm-orbit-item {
        width: 60px;
        height: 60px;
    }

    .alm-orbit-icon {
        font-size: 1.5rem;
    }

    .alm-orbit-label {
        font-size: 0.4rem;
    }

    @keyframes orbit1 {
        0% { transform: translateX(-50%) translateY(0); }
        25% { transform: translateX(-50%) translateY(45px); }
        50% { transform: translateX(-50%) translateY(0); }
        75% { transform: translateX(-50%) translateY(-45px); }
        100% { transform: translateX(-50%) translateY(0); }
    }

    @keyframes orbit2 {
        0% { transform: translateY(-50%) translateX(0); }
        25% { transform: translateY(-50%) translateX(-45px); }
        50% { transform: translateY(-50%) translateX(0); }
        75% { transform: translateY(-50%) translateX(45px); }
        100% { transform: translateY(-50%) translateX(0); }
    }

    @keyframes orbit3 {
        0% { transform: translateX(-50%) translateY(0); }
        25% { transform: translateX(-50%) translateY(-45px); }
        50% { transform: translateX(-50%) translateY(0); }
        75% { transform: translateX(-50%) translateY(45px); }
        100% { transform: translateX(-50%) translateY(0); }
    }

    @keyframes orbit4 {
        0% { transform: translateY(-50%) translateX(0); }
        25% { transform: translateY(-50%) translateX(45px); }
        50% { transform: translateY(-50%) translateX(0); }
        75% { transform: translateY(-50%) translateX(-45px); }
        100% { transform: translateY(-50%) translateX(0); }
    }

    .alm-about-text p {
        font-size: 0.95rem;
        text-align: justify;
    }

    .alm-globe-ring {
        display: none;
    }
}

@media (max-width: 480px) {
    .alm-about {
        padding: 40px 15px;
    }

    .alm-orbit-container {
        width: 220px;
        height: 220px;
    }

    .alm-globe {
        width: 75px;
        height: 75px;
    }

    .alm-globe-emoji {
        font-size: 2.2rem;
    }

    .alm-orbit-item {
        width: 48px;
        height: 48px;
    }

    .alm-orbit-icon {
        font-size: 1.2rem;
    }

    .alm-orbit-label {
        display: none;
    }

    .alm-globe-shine {
        display: none;
    }

    @keyframes orbit1 {
        0% { transform: translateX(-50%) translateY(0); }
        25% { transform: translateX(-50%) translateY(30px); }
        50% { transform: translateX(-50%) translateY(0); }
        75% { transform: translateX(-50%) translateY(-30px); }
        100% { transform: translateX(-50%) translateY(0); }
    }

    @keyframes orbit2 {
        0% { transform: translateY(-50%) translateX(0); }
        25% { transform: translateY(-50%) translateX(-30px); }
        50% { transform: translateY(-50%) translateX(0); }
        75% { transform: translateY(-50%) translateX(30px); }
        100% { transform: translateY(-50%) translateX(0); }
    }

    @keyframes orbit3 {
        0% { transform: translateX(-50%) translateY(0); }
        25% { transform: translateX(-50%) translateY(-30px); }
        50% { transform: translateX(-50%) translateY(0); }
        75% { transform: translateX(-50%) translateY(30px); }
        100% { transform: translateX(-50%) translateY(0); }
    }

    @keyframes orbit4 {
        0% { transform: translateY(-50%) translateX(0); }
        25% { transform: translateY(-50%) translateX(30px); }
        50% { transform: translateY(-50%) translateX(0); }
        75% { transform: translateY(-50%) translateX(-30px); }
        100% { transform: translateY(-50%) translateX(0); }
    }

    .alm-about-text h2 {
        font-size: 1.6rem;
    }

    .alm-about-text p {
        font-size: 0.9rem;
    }

    .alm-about-text .alm-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .alm-about-feature {
        font-size: 0.95rem;
    }
}
/* ============================================
   18. POR QUÉ ELEGIRNOS
============================================ */
/* ============================================
   18. POR QUÉ ELEGIRNOS - CON ZOOM
============================================ */

.alm-why {
    padding: 100px 20px;
    background: #f5f7fa;
    overflow: hidden;
}

.alm-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

/* === TARJETA CON ZOOM AL SCROLL === */
.alm-why-item {
    text-align: center;
    padding: 35px 25px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* === ZOOM INICIAL === */
    opacity: 0;
    transform: scale(0.85) translateY(30px);
}

/* === ZOOM ACTIVADO AL SCROLL === */
.alm-why-item.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* === RETRASOS ESCALONADOS === */
.alm-why-item:nth-child(1) { transition-delay: 0.05s; }
.alm-why-item:nth-child(2) { transition-delay: 0.10s; }
.alm-why-item:nth-child(3) { transition-delay: 0.15s; }
.alm-why-item:nth-child(4) { transition-delay: 0.20s; }

/* === HOVER === */
.alm-why-item:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.08);
}

.alm-why-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
}

.alm-why-item h3 {
    color: #003366;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.alm-why-item p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   RESPONSIVE - MÓVIL
============================================ */
@media (max-width: 1024px) {
    .alm-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .alm-why {
        padding: 60px 15px;
    }
    
    .alm-why-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .alm-why-item {
        transform: scale(0.90) translateY(20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .alm-why-item.visible {
        transform: scale(1) translateY(0);
    }
    
    .alm-why-item:hover {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .alm-why-item {
        transform: scale(0.95) translateY(15px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .alm-why-item.visible {
        transform: scale(1) translateY(0);
    }
}

/* ============================================
   19. CONTACTO (Página principal)
============================================ */
.alm-contact {
    padding: 100px 20px;
    background: #ffffff;
}

.alm-contact-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.04);
}

.alm-contact-info {
    flex: 1;
}

.alm-contact-info .alm-subtitle {
    margin-bottom: 15px;
}

.alm-contact-info h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #003366;
    font-weight: 800;
    margin-bottom: 20px;
}

.alm-contact-info h2 span {
    color: #0d6efd;
}

.alm-contact-info > p {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 30px;
}

.alm-contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.alm-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #333;
}

.alm-contact-item span {
    font-size: 1.3rem;
}

.alm-contact-form {
    flex: 1;
}

/* ============================================
   20. CLIENTES
============================================ */
.alm-clients {
    padding: 80px 20px;
    background: #f5f7fa;
}

.alm-clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.alm-client-item {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    font-weight: 600;
    color: #666;
    font-size: 1.1rem;
}

.alm-client-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.08);
}

/* ============================================
   21. PÁGINAS INTERNAS - HERO
============================================ */
.alm-page-hero {
    background: linear-gradient(135deg, #003366 0%, #0d6efd 100%);
    padding: 100px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contenedor de partículas */
#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-120vh) translateX(50px) scale(0.5);
        opacity: 0;
    }
}

.alm-page-hero .alm-page-hero-content {
    position: relative;
    z-index: 2;
}

.alm-page-hero-content h1 {
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.alm-page-hero-content h1 span {
    color: #0d6efd;
}

.alm-page-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.alm-page-hero .alm-hero-badge {
    display: inline-block !important;
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    padding: 8px 24px !important;
    border-radius: 50px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    margin-bottom: 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.alm-page-hero .alm-btn {
    background: #ffffff !important;
    color: #003366 !important;
    padding: 14px 35px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.alm-page-hero .alm-btn:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-3px) !important;
}

/* ============================================
   22. PÁGINAS INTERNAS - ABOUT DETAIL
============================================ */
.alm-about-detail {
    padding: 100px 20px;
    background: #ffffff;
}

.alm-about-detail-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.alm-about-detail-text {
    flex: 1;
}

.alm-about-detail-text h2 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: #003366;
    font-weight: 800;
    margin-bottom: 25px;
}

.alm-about-detail-text h2 span {
    color: #0d6efd;
}

.alm-about-detail-text p {
    font-size: 1.2rem;
    line-height: 2;
    color: #444;
    margin-bottom: 20px;
}

.alm-about-detail-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.alm-about-stat {
    text-align: center;
}

.alm-about-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #0d6efd;
}

.alm-about-stat-label {
    font-size: 1.1rem;
    color: #666;
}

.alm-about-detail-image {
    flex: 1;
}

.alm-about-detail-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* ============================================
   23. MISIÓN, VISIÓN, VALORES
============================================ */
.alm-mission-vision {
    padding: 100px 20px;
    background: #f5f7fa;
}

.alm-mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.alm-mv-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.alm-mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.08);
}

.alm-mv-icon {
    font-size: 52px;
    display: block;
    margin-bottom: 20px;
}

.alm-mv-card h3 {
    color: #003366;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.alm-mv-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.alm-mv-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.alm-mv-card ul li {
    padding: 8px 0;
    color: #555;
    font-size: 1.05rem;
}

/* ============================================
   24. EQUIPO
============================================ */
.alm-team {
    padding: 100px 20px;
    background: #ffffff;
}

.alm-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.alm-team-member {
    text-align: center;
    padding: 35px 25px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.alm-team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.alm-team-member img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid #0d6efd;
}

.alm-team-member h4 {
    color: #003366;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.alm-team-role {
    color: #0d6efd;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
}

.alm-team-member p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============================================
   25. SERVICIOS DETALLADOS
============================================ */
.alm-services-detail {
    padding: 100px 20px;
    background: #ffffff;
}

.alm-service-detail-item {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 45px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.alm-service-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.alm-service-detail-item.reverse {
    flex-direction: row-reverse;
}

.alm-service-detail-icon {
    font-size: 68px;
    flex-shrink: 0;
}

.alm-service-detail-content {
    flex: 1;
}

.alm-service-detail-content h2 {
    color: #003366;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.alm-service-detail-content p {
    color: #555;
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.alm-service-detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.alm-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 1.05rem;
}

/* ============================================
   26. CONTACTO - PÁGINA INTERNA
============================================ */
.alm-page-contact {
    padding: 100px 20px;
    background: #ffffff;
}

.alm-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.alm-contact-info-card,
.alm-contact-form-card {
    background: #f8f9fa;
    padding: 45px;
    border-radius: 20px;
}

.alm-contact-card-header h2 {
    font-size: 2rem;
    color: #003366;
    font-weight: 700;
    margin-bottom: 10px;
}

.alm-contact-card-header h2 span {
    color: #0d6efd;
}

.alm-contact-card-header p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.alm-contact-card-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.alm-contact-card-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.alm-contact-icon {
    font-size: 30px;
    flex-shrink: 0;
}

.alm-contact-text h4 {
    color: #003366;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.alm-contact-text p {
    color: #555;
    font-size: 1.05rem;
    margin: 0;
}

.alm-contact-text a {
    color: #0d6efd;
    font-size: 1.05rem;
}

.alm-contact-text a:hover {
    text-decoration: underline;
}

.alm-contact-social {
    margin-top: 30px;
}

.alm-contact-social h4 {
    color: #003366;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.alm-social-icons {
    display: flex;
    gap: 15px;
}

.alm-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.alm-social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.alm-contact-map {
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   27. COTIZACIÓN
============================================ */
.alm-quote-page {
    padding: 60px 20px;
    background: #ffffff;
}

.alm-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.alm-quote-info {
    background: linear-gradient(135deg, #003366 0%, #0d6efd 100%);
    padding: 40px 35px;
    border-radius: 20px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.alm-quote-info * {
    color: #ffffff !important;
}

.alm-quote-info-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.alm-quote-info-content h3 span {
    color: #0d6efd;
}

.alm-quote-info-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.alm-quote-info-content ul li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.alm-quote-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.alm-quote-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.alm-quote-benefit:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.alm-quote-benefit span {
    font-size: 24px;
    flex-shrink: 0;
}

.alm-quote-benefit h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.alm-quote-benefit p {
    opacity: 0.8;
    font-size: 0.8rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.alm-quote-form-card {
    background: #f8f9fa;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.04);
}

.alm-quote-form-card h3 {
    color: #003366;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.alm-quote-form-card > p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.alm-quote-form-wrapper .wpcf7-form {
    margin: 0 !important;
    padding: 0 !important;
}

.alm-quote-form-wrapper .wpcf7-form p {
    margin-bottom: 12px;
}

.alm-quote-form-wrapper .wpcf7-form label {
    font-weight: 600;
    color: #003366;
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.alm-quote-form-wrapper .wpcf7-form input,
.alm-quote-form-wrapper .wpcf7-form textarea,
.alm-quote-form-wrapper .wpcf7-form select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.alm-quote-form-wrapper .wpcf7-form input:focus,
.alm-quote-form-wrapper .wpcf7-form textarea:focus,
.alm-quote-form-wrapper .wpcf7-form select:focus {
    border-color: #0d6efd;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);
}

.alm-quote-form-wrapper .wpcf7-form textarea {
    min-height: 100px;
    resize: vertical;
}

.alm-quote-form-wrapper .wpcf7-form input[type="submit"] {
    background: #0d6efd;
    color: #ffffff;
    padding: 14px 30px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.alm-quote-form-wrapper .wpcf7-form input[type="submit"]:hover {
    background: #003366;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.alm-quote-form-footer {
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
}

.alm-quote-form-footer p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.alm-quote-form-footer a {
    color: #0d6efd;
    font-weight: 700;
    text-decoration: none;
}

/* ============================================
   28. CTA - LLAMADA A LA ACCIÓN
============================================ */
.alm-cta {
    background: linear-gradient(135deg, #003366 0%, #0d6efd 100%) !important;
    padding: 80px 20px !important;
    text-align: center !important;
    color: #ffffff !important;
    position: relative !important;
}

.alm-cta * {
    color: #ffffff !important;
}

.alm-cta-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem) !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
}

.alm-cta-content h2 span {
    color: #0d6efd !important;
}

.alm-cta-content p {
    font-size: 1.2rem !important;
    opacity: 0.9 !important;
    margin-bottom: 30px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.alm-cta-buttons {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

.alm-cta .alm-btn {
    background: #ffffff !important;
    color: #003366 !important;
    padding: 16px 40px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    border: 2px solid #ffffff !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
    min-width: 200px !important;
}

.alm-cta .alm-btn:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2) !important;
}

.alm-cta .alm-btn-whatsapp {
    background: #25D366 !important;
    color: #ffffff !important;
    border-color: #25D366 !important;
}

.alm-cta .alm-btn-whatsapp:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

/* ============================================
   29. FOOTER
============================================ */
.alm-footer {
    background: #0a1628;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    width: 100%;
    margin: 0;
    padding: 0;
}

.alm-footer-top {
    background: #0a1628;
    padding: 50px 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
}

.alm-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.alm-footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.alm-footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #0d6efd;
    border-radius: 2px;
}

.alm-footer-logo img {
    max-height: 40px;
    width: auto;
    margin-bottom: 10px;
}

.alm-footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 280px;
}

.alm-footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.alm-footer-social .alm-social-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

.alm-footer-social .alm-social-link:hover {
    transform: translateY(-3px) !important;
    opacity: 0.85 !important;
}

.alm-footer-social .alm-social-link svg {
    width: 14px !important;
    height: 14px !important;
    display: block !important;
    fill: #ffffff !important;
}

.alm-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alm-footer-links li {
    margin-bottom: 6px;
}

.alm-footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.alm-footer-links a:hover {
    color: #0d6efd;
    transform: translateX(3px);
}

.alm-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alm-footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    align-items: flex-start;
}

.alm-footer-contact li span {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.alm-footer-contact li strong {
    color: #ffffff;
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alm-footer-contact li p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.95rem;
}

.alm-footer-contact li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.alm-footer-contact li a:hover {
    color: #0d6efd;
}

.alm-footer-bottom {
    background: #060e1e;
    padding: 12px 20px;
    width: 100%;
}

.alm-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    flex-wrap: wrap;
    gap: 8px;
}

.alm-footer-bottom-content strong {
    color: rgba(255, 255, 255, 0.85);
}

.alm-footer-credits a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.alm-footer-credits a:hover {
    color: #0d6efd;
}

/* ============================================
   30. RESPONSIVE DEL FOOTER
============================================ */
@media (max-width: 1024px) {
    .alm-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .alm-footer-top {
        padding: 40px 20px 25px;
    }
}

@media (max-width: 768px) {
    .alm-footer-top {
        padding: 30px 15px 20px;
    }
    .alm-footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .alm-footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .alm-footer-desc {
        max-width: 100%;
        margin: 0 auto 12px;
        font-size: 0.85rem;
    }
    .alm-footer-social {
        justify-content: center;
    }
    .alm-footer-links li {
        display: inline-block;
        margin: 0 8px 4px;
    }
    .alm-footer-links a {
        font-size: 0.85rem;
    }
    .alm-footer-links a:hover {
        transform: none;
    }
    .alm-footer-contact li {
        justify-content: center;
        text-align: left;
        margin-bottom: 6px;
    }
    .alm-footer-contact li p {
        font-size: 0.8rem;
    }
    .alm-footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 3px;
        font-size: 0.7rem;
    }
    .alm-footer-logo img {
        max-height: 35px;
    }
    .alm-footer-social .alm-social-link {
        width: 36px !important;
        height: 36px !important;
    }
    .alm-footer-social .alm-social-link svg {
        width: 16px !important;
        height: 16px !important;
    }
}

@media (max-width: 480px) {
    .alm-footer-top {
        padding: 20px 12px 15px;
    }
    .alm-footer-grid {
        gap: 15px;
    }
    .alm-footer-col h4 {
        font-size: 0.9rem;
        margin-bottom: 10px;
        padding-bottom: 6px;
    }
    .alm-footer-col h4::after {
        width: 25px;
        height: 2px;
    }
    .alm-footer-desc {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    .alm-footer-social {
        gap: 6px;
    }
    .alm-footer-social .alm-social-link {
        width: 30px !important;
        height: 30px !important;
    }
    .alm-footer-social .alm-social-link svg {
        width: 12px !important;
        height: 12px !important;
    }
    .alm-footer-links li {
        margin: 0 6px 3px;
    }
    .alm-footer-links a {
        font-size: 0.8rem;
    }
    .alm-footer-contact li {
        gap: 8px;
    }
    .alm-footer-contact li span {
        font-size: 0.9rem;
    }
    .alm-footer-contact li p {
        font-size: 0.75rem;
    }
    .alm-footer-bottom {
        padding: 10px 15px;
    }
    .alm-footer-bottom-content {
        font-size: 0.6rem;
    }
}

/* ============================================
   31. RESPONSIVE GENERAL
============================================ */
@media (max-width: 1024px) {
    body { font-size: 17px; }
    .alm-header { height: 75px; }
    .alm-menu ul, .alm-menu-list { gap: 20px; }
    .alm-menu a, .alm-menu-list a { font-size: 15px; }
    .alm-services-grid { grid-template-columns: repeat(2, 1fr); }
    .alm-why-grid { grid-template-columns: repeat(2, 1fr); }
    .alm-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .alm-clients-grid { grid-template-columns: repeat(3, 1fr); }
    .alm-mv-grid { grid-template-columns: repeat(2, 1fr); }
    .alm-team-grid { grid-template-columns: repeat(2, 1fr); }
    .alm-about-content { gap: 40px; }
    .alm-contact-wrapper { flex-direction: column; padding: 40px; }
    .alm-contact-grid { grid-template-columns: 1fr; }
    .alm-quote-grid { grid-template-columns: 1fr; }
    .alm-about-detail-grid { gap: 40px; }
    .alm-services-compact-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .alm-hero-slider { height: 550px; }
    .alm-slide .alm-hero-content h1 { font-size: 2.8rem; }
    .alm-slide .alm-hero-content p { font-size: 1.1rem; max-width: 600px; }
    .alm-slider-btn { width: 45px; height: 45px; font-size: 18px; }
}

@media (max-width: 768px) {
    body { font-size: 16px; }
    .alm-header { height: 70px; padding: 0 15px; }
    .alm-menu ul, .alm-menu-list { display: none; }
    .alm-hamburger { display: flex; }
    .alm-logo img { max-height: 45px; }
    .alm-quote { display: none !important; }
    .alm-hero { min-height: 500px; background-attachment: scroll; padding: 60px 20px; }
    .alm-hero h1 { font-size: 2.2rem; }
    .alm-hero p { font-size: 1.1rem; }
    .alm-hero-buttons { flex-direction: column; align-items: center; }
    .alm-btn { padding: 16px 35px; font-size: 1rem; width: 100%; max-width: 300px; min-width: auto; }
    .alm-services { padding: 60px 15px; }
    .alm-services-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .alm-service-card { padding: 35px 25px; }
    .alm-service-card h3 { font-size: 1.4rem; }
    .alm-service-card p { font-size: 1rem; }
    .alm-about { padding: 60px 15px; }
    .alm-about-content { flex-direction: column; gap: 30px; }
    .alm-about-text { order: 2; text-align: center; }
    .alm-about-text p { font-size: 1.05rem; }
    .alm-about-image { order: 1; width: 100%; }
    .alm-about-image img { max-width: 100%; }
    .alm-about-features { justify-content: center; }
    .alm-why { padding: 60px 15px; }
    .alm-why-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .alm-why-item h3 { font-size: 1.3rem; }
    .alm-why-item p { font-size: 1rem; }
    .alm-stats { padding: 60px 15px; }
    .alm-stats-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .alm-stat-number { font-size: 2.8rem; }
    .alm-stat-label { font-size: 1.1rem; }
    .alm-contact { padding: 60px 15px; }
    .alm-contact-wrapper { padding: 30px 20px; border-radius: 16px; }
    .alm-contact-details { grid-template-columns: 1fr; }
    .alm-contact-info > p { font-size: 1.05rem; }
    .alm-clients { padding: 60px 15px; }
    .alm-clients-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .alm-about-detail-grid { flex-direction: column; }
    .alm-about-detail-stats { justify-content: center; }
    .alm-about-detail-image { order: -1; }
    .alm-about-detail-text p { font-size: 1.05rem; }
    .alm-mv-grid { grid-template-columns: 1fr; }
    .alm-team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .alm-service-detail-item { flex-direction: column !important; padding: 30px 20px; text-align: center; }
    .alm-service-detail-features { grid-template-columns: 1fr; text-align: left; }
    .alm-service-detail-content h2 { font-size: 1.6rem; }
    .alm-service-detail-content p { font-size: 1.05rem; }
    .alm-contact-info-card, .alm-contact-form-card { padding: 30px 20px; }
    .alm-quote-info { padding: 30px 20px; }
    .alm-quote-form-card { padding: 30px 20px; }
    .alm-quote-benefits { grid-template-columns: 1fr; }
    .alm-services-compact-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .alm-service-compact-card { padding: 25px 20px; }
    .alm-service-compact-card h3 { font-size: 1.2rem; }
    .alm-service-compact-features { max-width: 100%; }
    .alm-hero-slider { height: 480px !important; max-height: 480px !important; min-height: 400px !important; }
    .alm-slide .alm-hero-content { padding: 15px 20px; }
    .alm-slide .alm-hero-content h1 { font-size: 2rem !important; margin-bottom: 10px; }
    .alm-slide .alm-hero-content p { font-size: 1rem !important; margin: 0 auto 15px; max-width: 95%; padding: 0 10px; }
    .alm-hero-badge { font-size: 0.7rem !important; padding: 5px 16px; margin-bottom: 10px; }
    .alm-hero-buttons { flex-direction: column; gap: 10px; width: 100%; align-items: center; }
    .alm-hero-buttons .alm-btn { width: 100%; max-width: 260px; padding: 12px 20px; font-size: 0.9rem; min-width: auto; text-align: center; }
    .alm-slider-btn { width: 38px; height: 38px; font-size: 15px; background: rgba(0, 0, 0, 0.3); }
    .alm-slider-btn.prev { left: 8px; }
    .alm-slider-btn.next { right: 8px; }
    .alm-slider-dots { bottom: 12px; gap: 8px; }
    .alm-slider-dots span { width: 10px; height: 10px; }
    .alm-cta { padding: 60px 20px !important; }
    .alm-cta-content h2 { font-size: 1.8rem !important; }
    .alm-cta-content p { font-size: 1rem !important; padding: 0 15px !important; }
    .alm-cta-buttons { flex-direction: column !important; align-items: center !important; gap: 15px !important; }
    .alm-cta .alm-btn { width: 100% !important; max-width: 280px !important; padding: 14px 30px !important; font-size: 1rem !important; text-align: center !important; }
}

@media (max-width: 480px) {
    body { font-size: 15px; }
    .alm-header { height: 65px; }
    .alm-logo img { max-height: 40px; }
    .alm-hamburger span { width: 26px; height: 3px; }
    .alm-hero { min-height: 400px; padding: 40px 15px; }
    .alm-hero h1 { font-size: 1.8rem; }
    .alm-hero p { font-size: 1rem; }
    .alm-btn { padding: 14px 30px; font-size: 0.9rem; }
    .alm-section-header h2 { font-size: 1.8rem; }
    .alm-section-header p { font-size: 1rem; }
    .alm-service-card h3 { font-size: 1.3rem; }
    .alm-service-card p { font-size: 0.95rem; }
    .alm-icon { font-size: 45px; }
    .alm-about-text h2 { font-size: 1.8rem; }
    .alm-about-text p { font-size: 0.95rem; }
    .alm-about-feature { font-size: 0.95rem; }
    .alm-stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .alm-stat-number { font-size: 2.2rem; }
    .alm-stat-label { font-size: 0.95rem; }
    .alm-clients-grid { grid-template-columns: 1fr 1fr; }
    .alm-client-item { padding: 20px 15px; font-size: 0.9rem; }
    .alm-about-detail-stats { flex-direction: column; gap: 15px; }
    .alm-about-detail-text h2 { font-size: 1.8rem; }
    .alm-about-detail-text p { font-size: 0.95rem; }
    .alm-about-stat-number { font-size: 2.2rem; }
    .alm-about-stat-label { font-size: 0.9rem; }
    .alm-service-detail-icon { font-size: 48px; }
    .alm-service-detail-content h2 { font-size: 1.4rem; }
    .alm-service-detail-content p { font-size: 0.95rem; }
    .alm-feature { font-size: 0.95rem; }
    .alm-team-member img { width: 100px; height: 100px; }
    .alm-team-member h4 { font-size: 1.1rem; }
    .alm-team-member p { font-size: 0.95rem; }
    .alm-contact-card-header h2 { font-size: 1.6rem; }
    .alm-contact-text p { font-size: 0.95rem; }
    .alm-contact-social { text-align: center; }
    .alm-social-icons { justify-content: center; }
    .alm-quote-info-content h3 { font-size: 1.5rem; }
    .alm-quote-info-content ul li { font-size: 0.95rem; }
    .alm-quote-benefit h4 { font-size: 0.95rem; }
    .alm-quote-benefit p { font-size: 0.85rem; }
    .alm-quote-form-card h3 { font-size: 1.3rem; }
    .alm-quote-form-wrapper .wpcf7-form input[type="submit"] { padding: 12px 20px; font-size: 0.95rem; }
    .alm-services-compact { padding: 50px 15px; }
    .alm-service-compact-card { padding: 20px 15px; }
    .alm-service-compact-icon { font-size: 38px; }
    .alm-service-compact-card h3 { font-size: 1.1rem; }
    .alm-service-compact-card p { font-size: 0.9rem; }
    .alm-service-compact-features li { font-size: 0.85rem; }
    .alm-btn-small { padding: 6px 20px; font-size: 0.85rem; }
    .alm-hero-slider { height: 400px !important; max-height: 400px !important; min-height: 350px !important; }
    .alm-slide .alm-hero-content { padding: 10px 15px; }
    .alm-slide .alm-hero-content h1 { font-size: 1.6rem !important; margin-bottom: 8px; }
    .alm-slide .alm-hero-content p { font-size: 0.9rem !important; margin: 0 auto 12px; max-width: 98%; padding: 0 5px; }
    .alm-hero-badge { font-size: 0.6rem !important; padding: 4px 12px; margin-bottom: 8px; }
    .alm-hero-buttons .alm-btn { padding: 10px 16px; font-size: 0.85rem; max-width: 220px; }
    .alm-slider-btn { width: 32px; height: 32px; font-size: 12px; }
    .alm-slider-btn.prev { left: 5px; }
    .alm-slider-btn.next { right: 5px; }
    .alm-slider-dots { bottom: 10px; gap: 6px; }
    .alm-slider-dots span { width: 8px; height: 8px; }
    .alm-cta { padding: 40px 15px !important; }
    .alm-cta-content h2 { font-size: 1.5rem !important; }
    .alm-cta-content p { font-size: 0.9rem !important; }
    .alm-cta .alm-btn { padding: 12px 20px !important; font-size: 0.9rem !important; max-width: 220px !important; }
}

/* ============================================
   32. ANIMACIONES Y EFECTOS VISUALES
============================================ */
.alm-service-card,
.alm-why-item,
.alm-stat-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.alm-service-card:nth-child(1) { animation-delay: 0.1s; }
.alm-service-card:nth-child(2) { animation-delay: 0.2s; }
.alm-service-card:nth-child(3) { animation-delay: 0.3s; }
.alm-service-card:nth-child(4) { animation-delay: 0.4s; }
.alm-service-card:nth-child(5) { animation-delay: 0.5s; }
.alm-service-card:nth-child(6) { animation-delay: 0.6s; }

.alm-why-item:nth-child(1) { animation-delay: 0.1s; }
.alm-why-item:nth-child(2) { animation-delay: 0.2s; }
.alm-why-item:nth-child(3) { animation-delay: 0.3s; }
.alm-why-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === EFECTOS HOVER === */
.alm-service-card,
.alm-service-compact-card,
.alm-why-item,
.alm-mv-card,
.alm-team-member {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.alm-service-card:hover,
.alm-service-compact-card:hover,
.alm-why-item:hover,
.alm-mv-card:hover,
.alm-team-member:hover {
    transform: translateY(-10px) scale(1.01) !important;
    box-shadow: 0 20px 60px rgba(0, 51, 102, 0.15) !important;
}

.alm-about-image img,
.alm-team-member img,
.alm-about-detail-image img {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.alm-about-image img:hover,
.alm-team-member img:hover,
.alm-about-detail-image img:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 25px 60px rgba(0, 51, 102, 0.2) !important;
}

.alm-hero-badge {
    animation: pulseGlow 3s ease-in-out infinite;
    position: relative;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(13, 110, 253, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(13, 110, 253, 0.5);
    }
}

/* === EFECTO RIPPLE EN BOTONES === */
.alm-btn,
.alm-btn-small,
.alm-quote {
    position: relative;
    overflow: hidden;
}

.alm-btn::before,
.alm-btn-small::before,
.alm-quote::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.alm-btn:hover::before,
.alm-btn-small:hover::before,
.alm-quote:hover::before {
    width: 300px;
    height: 300px;
}

/* === EFECTO EN ESTADÍSTICAS === */
.alm-stat-number {
    position: relative;
    display: inline-block;
}

.alm-stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: scaleX(0); opacity: 0; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0); opacity: 0; }
}

/* === EFECTO DE ONDA EN CTA === */
.alm-cta {
    position: relative;
    overflow: hidden;
}

.alm-cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd, #ffffff, #0d6efd);
    background-size: 200% 100%;
    animation: waveMove 3s ease-in-out infinite;
}

@keyframes waveMove {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* === EFECTO DE BRILLO EN TARJETAS === */
.alm-service-compact-card {
    position: relative;
    overflow: hidden;
}

.alm-service-compact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(13, 110, 253, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.alm-service-compact-card:hover::before {
    opacity: 1;
}

/* === HOVER - TEXTO BLANCO === */
.alm-service-compact-card:hover {
    background: #003366 !important;
    border-color: #0d6efd !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.25) !important;
}

.alm-service-compact-card:hover * {
    color: #ffffff !important;
}

.alm-service-compact-card:hover .alm-service-compact-icon {
    transform: scale(1.15) !important;
    transition: transform 0.3s ease !important;
}

.alm-service-compact-card:hover .alm-btn-small {
    background: #ffffff !important;
    color: #003366 !important;
    border-color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3) !important;
}

.alm-service-card:hover {
    background: #003366 !important;
    border-color: #0d6efd !important;
}

.alm-service-card:hover * {
    color: #ffffff !important;
}

.alm-service-card:hover .alm-icon {
    transform: scale(1.1) !important;
    transition: transform 0.3s ease !important;
}

.alm-service-card:hover .alm-btn {
    background: #ffffff !important;
    color: #003366 !important;
    border-color: #ffffff !important;
}

.alm-why-item:hover {
    background: #003366 !important;
    border-color: #0d6efd !important;
}

.alm-why-item:hover * {
    color: #ffffff !important;
}

.alm-why-item:hover .alm-why-icon {
    transform: scale(1.1) !important;
    transition: transform 0.3s ease !important;
}

.alm-mv-card:hover {
    background: #003366 !important;
    border-color: #0d6efd !important;
}

.alm-mv-card:hover * {
    color: #ffffff !important;
}

.alm-mv-card:hover .alm-mv-icon {
    transform: scale(1.1) !important;
    transition: transform 0.3s ease !important;
}

.alm-team-member:hover {
    background: #003366 !important;
    border-color: #0d6efd !important;
}

.alm-team-member:hover * {
    color: #ffffff !important;
}

.alm-team-member:hover .alm-team-role {
    color: #0d6efd !important;
}

.alm-team-member:hover img {
    border-color: #ffffff !important;
    transform: scale(1.05) !important;
}

/* ============================================
   33. UTILIDADES
============================================ */
.site-header {
    display: none !important;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid #0d6efd;
    outline-offset: 3px;
}

html {
    scroll-behavior: smooth;
}


/* ============================================
   EMERGENCIA - MENÚ MÓVIL DEFINITIVO
============================================ */

/* === MENÚ MÓVIL (siempre oculto) === */
.alm-menu-mobile {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #003366 !important;
    z-index: 999999999 !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
    padding: 40px 20px !important;
    margin: 0 !important;
    overflow: hidden !important;
}

/* === MENÚ MÓVIL ABIERTO === */
.alm-menu-mobile.open {
    display: flex !important;
}

/* === LISTA === */
.alm-menu-mobile ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 400px !important;
}

.alm-menu-mobile li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 5px 0 !important;
}

.alm-menu-mobile li:last-child {
    border-bottom: none !important;
}

.alm-menu-mobile a {
    color: #ffffff !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    display: block !important;
    padding: 15px 20px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.alm-menu-mobile a:hover {
    color: #0d6efd !important;
}

/* === BOTÓN COTIZAR === */
.alm-menu-mobile .alm-quote {
    display: inline-block !important;
    background: #0d6efd !important;
    color: #ffffff !important;
    padding: 16px 45px !important;
    border-radius: 12px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin-top: 10px !important;
}

.alm-menu-mobile .alm-quote:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

/* === BOTÓN CERRAR === */
.alm-menu-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    font-size: 26px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999999999 !important;
}

.alm-menu-close:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: rotate(90deg) !important;
}




/* ============================================
   MENÚ MÓVIL - DEFINITIVO FUNCIONAL
============================================ */

/* Fuerza que el menú sea visible cuando tiene la clase 'open' */
.alm-menu-mobile.open {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #003366 !important;
    z-index: 9999999999 !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
    padding: 40px 20px !important;
    margin: 0 !important;
    overflow-y: auto !important;
}

/* Estilos de los enlaces */
.alm-menu-mobile.open ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 400px !important;
}

.alm-menu-mobile.open li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 8px 0 !important;
}

.alm-menu-mobile.open li:last-child {
    border-bottom: none !important;
}

.alm-menu-mobile.open a {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    display: block !important;
    padding: 15px 20px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.alm-menu-mobile.open a:hover {
    color: #0d6efd !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Botón Cotizar */
.alm-menu-mobile.open .alm-quote {
    display: inline-block !important;
    background: #0d6efd !important;
    color: #ffffff !important;
    padding: 16px 45px !important;
    border-radius: 12px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin-top: 10px !important;
}

.alm-menu-mobile.open .alm-quote:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

/* Botón cerrar */
.alm-menu-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    font-size: 26px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 99999999999 !important;
}

.alm-menu-close:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: rotate(90deg) !important;
}



/* ============================================
   JUSTIFICAR TEXTOS - GLOBAL
============================================ */

/* Justificar TODOS los párrafos del sitio */
p {
    text-align: justify !important;
}

/* Justificar también listas y textos generales */
li,
.alm-about-text p,
.alm-service-card p,
.alm-why-item p,
.alm-contact-info > p,
.alm-about-detail-text p,
.alm-service-detail-content p,
.alm-mv-card p,
.alm-team-member p,
.alm-quote-benefit p,
.alm-contact-text p,
.alm-section-header p,
.alm-page-contact p,
.alm-quote-page p,
.alm-footer-desc,
.alm-footer-contact li p,
.alm-about-feature {
    text-align: justify !important;
}

/* EXCEPCIONES: textos que deben ir centrados o a la izquierda */
.alm-hero p,
.alm-page-hero-content p,
.alm-section-header p,
.alm-cta-content p,
.alm-hero-buttons,
.alm-cta-buttons,
.alm-footer-bottom-content {
    text-align: center !important;
}

/* Títulos y subtítulos (no se justifican) */
h1, h2, h3, h4, .alm-subtitle {
    text-align: inherit !important;
}



/* ============================================
   CONTACTO - RESPONSIVE
============================================ */

/* === GRID EN MÓVIL === */
@media (max-width: 768px) {
    .alm-contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .alm-contact-info-card,
    .alm-contact-form-card {
        padding: 25px 20px !important;
    }

    .alm-contact-card-header h2 {
        font-size: 1.5rem !important;
    }

    .alm-contact-card-item {
        flex-direction: row !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .alm-contact-icon {
        font-size: 24px !important;
    }

    .alm-contact-text h4 {
        font-size: 1rem !important;
    }

    .alm-contact-text p {
        font-size: 0.9rem !important;
    }

    .alm-social-icons {
        justify-content: center !important;
        gap: 10px !important;
    }

    .alm-social-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .alm-social-icon svg {
        width: 18px !important;
        height: 18px !important;
    }

    /* === MAPA === */
    .alm-contact-map iframe {
        height: 250px !important;
        border-radius: 12px !important;
    }
}

@media (max-width: 480px) {
    .alm-contact-info-card,
    .alm-contact-form-card {
        padding: 20px 15px !important;
    }

    .alm-contact-card-header h2 {
        font-size: 1.3rem !important;
    }

    .alm-contact-card-header p {
        font-size: 0.9rem !important;
    }

    .alm-contact-icon {
        font-size: 20px !important;
    }

    .alm-contact-text h4 {
        font-size: 0.9rem !important;
    }

    .alm-contact-text p {
        font-size: 0.85rem !important;
    }

    .alm-social-icon {
        width: 36px !important;
        height: 36px !important;
    }

    .alm-social-icon svg {
        width: 16px !important;
        height: 16px !important;
    }

    .alm-contact-map iframe {
        height: 200px !important;
    }
}

/* ============================================
   COTIZACIÓN - PANELES EQUILIBRADOS
============================================ */

/* === CONTENEDOR PRINCIPAL === */
.alm-quote-page {
    padding: 50px 20px;
    background: #ffffff;
}

.alm-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

/* === COLUMNA IZQUIERDA === */
.alm-quote-info {
    background: linear-gradient(135deg, #003366 0%, #0d6efd 100%);
    padding: 30px 25px;
    border-radius: 16px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.alm-quote-info-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.alm-quote-info-content h3 span {
    color: #0d6efd;
}

.alm-quote-info-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.alm-quote-info-content ul li {
    padding: 5px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.alm-quote-info-content ul li:last-child {
    border-bottom: none;
}

/* === BENEFICIOS === */
.alm-quote-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 5px;
}

.alm-quote-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.alm-quote-benefit:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.alm-quote-benefit span {
    font-size: 20px;
    flex-shrink: 0;
}

.alm-quote-benefit h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.alm-quote-benefit p {
    opacity: 0.8;
    font-size: 0.75rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

/* === COLUMNA DERECHA === */
.alm-quote-form-card {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.alm-quote-form-card h3 {
    color: #003366;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.alm-quote-form-card > p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* === FORMULARIO === */
.alm-quote-form-wrapper .wpcf7-form p {
    margin-bottom: 8px;
}

.alm-quote-form-wrapper .wpcf7-form label {
    font-weight: 600;
    color: #003366;
    display: block;
    margin-bottom: 2px;
    font-size: 0.8rem;
}

.alm-quote-form-wrapper .wpcf7-form input,
.alm-quote-form-wrapper .wpcf7-form textarea,
.alm-quote-form-wrapper .wpcf7-form select {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.alm-quote-form-wrapper .wpcf7-form input:focus,
.alm-quote-form-wrapper .wpcf7-form textarea:focus,
.alm-quote-form-wrapper .wpcf7-form select:focus {
    border-color: #0d6efd;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.06);
}

.alm-quote-form-wrapper .wpcf7-form textarea {
    min-height: 50px;
    resize: vertical;
}

/* === BOTÓN === */
.alm-quote-form-wrapper .wpcf7-form input[type="submit"] {
    background: #0d6efd;
    color: #ffffff;
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 5px;
}

.alm-quote-form-wrapper .wpcf7-form input[type="submit"]:hover {
    background: #003366;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
}

/* ============================================
   RESPONSIVE - MÓVIL
============================================ */
@media (max-width: 1024px) {
    .alm-quote-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .alm-quote-info {
        min-height: auto;
        padding: 25px 20px;
    }

    .alm-quote-form-card {
        min-height: auto;
        padding: 25px 20px;
    }
}

@media (max-width: 768px) {
    .alm-quote-page {
        padding: 40px 15px;
    }

    .alm-quote-info {
        padding: 20px 15px;
    }

    .alm-quote-info-content h3 {
        font-size: 1.1rem;
    }

    .alm-quote-info-content ul li {
        font-size: 0.85rem;
        padding: 4px 0;
    }

    .alm-quote-benefits {
        gap: 5px;
    }

    .alm-quote-benefit {
        padding: 6px 10px;
    }

    .alm-quote-benefit span {
        font-size: 18px;
    }

    .alm-quote-benefit h4 {
        font-size: 0.8rem;
    }

    .alm-quote-form-card {
        padding: 20px 15px;
    }

    .alm-quote-form-card h3 {
        font-size: 1.1rem;
    }

    .alm-quote-form-wrapper .wpcf7-form p {
        margin-bottom: 6px;
    }

    .alm-quote-form-wrapper .wpcf7-form input,
    .alm-quote-form-wrapper .wpcf7-form textarea,
    .alm-quote-form-wrapper .wpcf7-form select {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .alm-quote-form-wrapper .wpcf7-form textarea {
        min-height: 40px;
    }

    .alm-quote-form-wrapper .wpcf7-form input[type="submit"] {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .alm-quote-info-content h3 {
        font-size: 1rem;
    }

    .alm-quote-benefits {
        grid-template-columns: 1fr;
    }

    .alm-quote-benefit span {
        font-size: 16px;
    }

    .alm-quote-form-wrapper .wpcf7-form input,
    .alm-quote-form-wrapper .wpcf7-form textarea,
    .alm-quote-form-wrapper .wpcf7-form select {
        padding: 5px 8px;
        font-size: 0.8rem;
    }
}

/* ============================================
   COTIZACIÓN - ICONOS DEL PANEL IZQUIERDO
============================================ */

/* === ICONO SUPERIOR === */
.alm-quote-icon-top {
    text-align: center;
    margin-bottom: 15px;
}

.alm-quote-icon-top svg {
    display: inline-block;
    animation: pulseIcon 3s ease-in-out infinite;
}

/* === ICONO INFERIOR === */
.alm-quote-icon-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.alm-quote-icon-bottom span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* === ANIMACIÓN DEL ICONO === */
@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
    .alm-quote-icon-top svg {
        width: 40px;
        height: 40px;
    }

    .alm-quote-icon-bottom {
        padding: 10px 12px;
    }

    .alm-quote-icon-bottom span {
        font-size: 0.85rem;
    }

    .alm-quote-icon-bottom svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .alm-quote-icon-top svg {
        width: 35px;
        height: 35px;
    }

    .alm-quote-icon-bottom {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .alm-quote-icon-bottom span {
        font-size: 0.8rem;
    }

    .alm-quote-icon-bottom svg {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   LOGO CON TEXTO - HEADER
============================================ */

.alm-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.alm-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.alm-logo img {
    max-height: 55px;
    width: auto;
    display: block;
}

.alm-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #003366;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .alm-logo img {
        max-height: 40px;
    }
    
    .alm-logo-text {
        font-size: 1rem;
    }
    
    .alm-logo {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .alm-logo img {
        max-height: 32px;
    }
    
    .alm-logo-text {
        font-size: 0.85rem;
    }
    
    .alm-logo {
        gap: 6px;
    }
}
/* ============================================
   EFECTO ZOOM EN TARJETAS AL SCROLL
============================================ */

/* === ESTADO INICIAL (ocultas) === */
.alm-service-card,
.alm-service-compact-card,
.alm-why-item,
.alm-mv-card,
.alm-team-member,
.alm-client-item {
    opacity: 0;
    transform: scale(0.85) translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === ESTADO VISIBLE (zoom in) === */
.alm-service-card.visible,
.alm-service-compact-card.visible,
.alm-why-item.visible,
.alm-mv-card.visible,
.alm-team-member.visible,
.alm-client-item.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* === RETRASOS ESCALONADOS === */
.alm-service-card:nth-child(1),
.alm-service-compact-card:nth-child(1) { transition-delay: 0.05s; }

.alm-service-card:nth-child(2),
.alm-service-compact-card:nth-child(2) { transition-delay: 0.10s; }

.alm-service-card:nth-child(3),
.alm-service-compact-card:nth-child(3) { transition-delay: 0.15s; }

.alm-service-card:nth-child(4),
.alm-service-compact-card:nth-child(4) { transition-delay: 0.20s; }

.alm-service-card:nth-child(5),
.alm-service-compact-card:nth-child(5) { transition-delay: 0.25s; }

.alm-service-card:nth-child(6),
.alm-service-compact-card:nth-child(6) { transition-delay: 0.30s; }

.alm-why-item:nth-child(1) { transition-delay: 0.05s; }
.alm-why-item:nth-child(2) { transition-delay: 0.10s; }
.alm-why-item:nth-child(3) { transition-delay: 0.15s; }
.alm-why-item:nth-child(4) { transition-delay: 0.20s; }

.alm-mv-card:nth-child(1) { transition-delay: 0.05s; }
.alm-mv-card:nth-child(2) { transition-delay: 0.10s; }
.alm-mv-card:nth-child(3) { transition-delay: 0.15s; }

.alm-team-member:nth-child(1) { transition-delay: 0.05s; }
.alm-team-member:nth-child(2) { transition-delay: 0.10s; }
.alm-team-member:nth-child(3) { transition-delay: 0.15s; }

.alm-client-item:nth-child(1) { transition-delay: 0.05s; }
.alm-client-item:nth-child(2) { transition-delay: 0.10s; }
.alm-client-item:nth-child(3) { transition-delay: 0.15s; }
.alm-client-item:nth-child(4) { transition-delay: 0.20s; }
.alm-client-item:nth-child(5) { transition-delay: 0.25s; }
.alm-client-item:nth-child(6) { transition-delay: 0.30s; }

/* === ZOOM AL HOVER (al pasar el mouse) === */
.alm-service-card:hover,
.alm-service-compact-card:hover,
.alm-why-item:hover,
.alm-mv-card:hover,
.alm-team-member:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.12) !important;
}

/* === EFECTO DE BORDE EN VENTAJAS === */
.alm-why-item {
    position: relative;
    overflow: hidden;
}

.alm-why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #003366);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.alm-why-item:hover::before {
    opacity: 1;
}

/* ============================================
   RESPONSIVE - MÓVIL
============================================ */
@media (max-width: 768px) {
    .alm-service-card,
    .alm-service-compact-card,
    .alm-why-item,
    .alm-mv-card,
    .alm-team-member,
    .alm-client-item {
        transform: scale(0.90) translateY(20px);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .alm-service-card.visible,
    .alm-service-compact-card.visible,
    .alm-why-item.visible,
    .alm-mv-card.visible,
    .alm-team-member.visible,
    .alm-client-item.visible {
        transform: scale(1) translateY(0);
    }

    .alm-service-card:hover,
    .alm-service-compact-card:hover,
    .alm-why-item:hover,
    .alm-mv-card:hover,
    .alm-team-member:hover {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .alm-service-card,
    .alm-service-compact-card,
    .alm-why-item,
    .alm-mv-card,
    .alm-team-member,
    .alm-client-item {
        transform: scale(0.95) translateY(15px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .alm-service-card.visible,
    .alm-service-compact-card.visible,
    .alm-why-item.visible,
    .alm-mv-card.visible,
    .alm-team-member.visible,
    .alm-client-item.visible {
        transform: scale(1) translateY(0);
    }
}

/* ============================================
   EQUIPO - AVATARES POR DEFECTO
============================================ */

.alm-team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #003366);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4px solid #0d6efd;
    font-size: 50px;
    color: #ffffff;
}

.alm-team-member {
    text-align: center;
    padding: 35px 25px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.alm-team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ============================================
   MISIÓN, VISIÓN, VALORES - RESPONSIVE
============================================ */

@media (max-width: 768px) {
    .alm-mv-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .alm-mv-card {
        padding: 30px 20px !important;
    }

    .alm-team-grid {
        grid-template-columns: 1fr !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }

    .alm-team-avatar {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
}

/* ============================================
   MEJORAS FRONT-PAGE - ESPACIOS Y RESPONSIVE
============================================ */

/* === REDUCIR ESPACIOS ENTRE SECCIONES === */
.alm-services-compact,
.alm-stats,
.alm-about,
.alm-why,
.alm-contact,
.alm-testimonials {
    padding: 50px 20px !important;
}

.alm-clients {
    padding: 40px 20px !important;
}

/* === TÍTULOS DE SECCIONES === */
.alm-section-header {
    margin-bottom: 35px !important;
}

.alm-section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
}

.alm-section-header p {
    max-width: 650px;
    margin: 8px auto 0;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
}

/* === SUBTÍTULO === */
.alm-subtitle {
    font-size: 0.75rem !important;
    letter-spacing: 2.5px !important;
    margin-bottom: 6px !important;
}

/* ============================================
   MAPA RESPONSIVE
============================================ */
.alm-contact-map-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.alm-contact-map-wrapper iframe {
    display: block;
    width: 100%;
    height: 280px;
    border: 0;
}

/* ============================================
   RESPONSIVE GENERAL
============================================ */
@media (max-width: 1024px) {
    .alm-services-compact,
    .alm-stats,
    .alm-about,
    .alm-why,
    .alm-contact,
    .alm-testimonials {
        padding: 40px 20px !important;
    }
    
    .alm-clients {
        padding: 35px 20px !important;
    }
    
    .alm-section-header {
        margin-bottom: 28px !important;
    }
}

@media (max-width: 768px) {
    .alm-services-compact,
    .alm-stats,
    .alm-about,
    .alm-why,
    .alm-contact,
    .alm-testimonials {
        padding: 35px 15px !important;
    }
    
    .alm-clients {
        padding: 25px 15px !important;
    }
    
    .alm-section-header {
        margin-bottom: 22px !important;
    }
    
    .alm-section-header h2 {
        font-size: 1.6rem !important;
    }
    
    .alm-section-header p {
        font-size: 0.9rem !important;
        margin-top: 6px !important;
    }
    
    .alm-contact-map-wrapper iframe {
        height: 200px !important;
    }
}

@media (max-width: 480px) {
    .alm-services-compact,
    .alm-stats,
    .alm-about,
    .alm-why,
    .alm-contact,
    .alm-testimonials {
        padding: 25px 10px !important;
    }
    
    .alm-clients {
        padding: 20px 10px !important;
    }
    
    .alm-section-header {
        margin-bottom: 18px !important;
    }
    
    .alm-section-header h2 {
        font-size: 1.4rem !important;
    }
    
    .alm-section-header p {
        font-size: 0.85rem !important;
    }
    
    .alm-contact-map-wrapper iframe {
        height: 160px !important;
    }
}

/* ============================================
   CONTACTO - SECCIÓN MEJORADA
============================================ */
/* ============================================
   CONTACTO - VERSIÓN MEJORADA
============================================ */

.alm-contact {
    padding: 60px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* === CÍRCULOS DECORATIVOS === */
.alm-contact::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(37, 99, 235, 0.04);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    filter: blur(60px);
    pointer-events: none;
}

.alm-contact::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(16, 185, 129, 0.04);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    filter: blur(50px);
    pointer-events: none;
}

/* === WRAPPER === */
.alm-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* ============================================
   COLUMNA IZQUIERDA
============================================ */
.alm-contact-info .alm-subtitle {
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.alm-contact-info h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.alm-contact-info h2 span {
    color: #2563eb;
}

.alm-contact-info > p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* === GRID 2x2 === */
.alm-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

/* === TARJETAS === */
.alm-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 14px;
    background: #f8fafc;
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.alm-contact-card:hover {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transform: translateY(-3px);
}

/* === ICONOS === */
.alm-contact-card-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffffff;
}

.office { background: #2563eb; }
.phone { background: #059669; }
.email { background: #f43f5e; }
.time { background: #7c3aed; }

/* === CONTENIDO === */
.alm-contact-card-content h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 3px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.alm-contact-card-content p {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

.alm-contact-card-content p strong {
    color: #0f172a;
    font-weight: 600;
}

.alm-contact-card-content a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.alm-contact-card-content a:hover {
    color: #1d4ed8;
}

/* === BOTONES === */
.alm-contact-actions {
    display: flex;
    gap: 12px;
}

.alm-contact-actions .alm-btn {
    padding: 10px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 130px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.alm-contact-actions .alm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.2);
}

/* ============================================
   MAPA
============================================ */
.alm-contact-map-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.alm-map-container {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
}

.alm-map-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
}

.alm-map-container h4 {
    font-size: 0.9rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.alm-map-frame {
    overflow: hidden;
    border-radius: 14px;
}

.alm-map-frame iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: 0;
    transition: transform 0.4s ease;
}

.alm-map-container:hover .alm-map-frame iframe {
    transform: scale(1.02);
}

.alm-map-address {
    margin-top: 14px;
    color: #475569;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
}

.alm-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: #2563eb;
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
}

.alm-map-link:hover {
    color: #1d4ed8;
}
/* ============================================
   CONTACTO - ORDEN CORRECTO EN MÓVIL
============================================ */

/* === ORDEN POR DEFECTO (Desktop) === */
.alm-contact-info {
    order: 0;
}

.alm-contact-map-wrapper {
    order: 1;
}

/* === EN MÓVIL: Información primero, mapa después === */
@media (max-width: 1024px) {
    .alm-contact-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    /* Forzar orden correcto */
    .alm-contact-info {
        order: 0 !important; /* PRIMERO: Información */
    }
    
    .alm-contact-map-wrapper {
        order: 1 !important; /* DESPUÉS: Mapa */
    }
}

@media (max-width: 768px) {
    .alm-contact-wrapper {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .alm-contact-wrapper {
        gap: 20px;
    }
}
/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .alm-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 25px;
    }
    .alm-contact-map-wrapper { order: -1; }
    .alm-map-container { max-width: 100%; }
}

@media (max-width: 768px) {
    .alm-contact { padding: 40px 15px; }
    .alm-contact-wrapper { padding: 20px 16px; border-radius: 14px; gap: 20px; }
    .alm-contact-grid { gap: 8px; }
    .alm-contact-card { padding: 12px 12px; border-radius: 12px; }
    .alm-contact-card-icon { width: 34px; height: 34px; min-width: 34px; font-size: 14px; border-radius: 8px; }
    .alm-contact-card-content h4 { font-size: 0.7rem; }
    .alm-contact-card-content p { font-size: 0.75rem; }
    .alm-contact-actions { flex-direction: column; }
    .alm-contact-actions .alm-btn { width: 100%; min-width: auto; justify-content: center; padding: 10px 16px; font-size: 0.8rem; }
    .alm-map-frame iframe { height: 180px; }
    .alm-map-container { padding: 16px 14px; border-radius: 14px; }
    .alm-map-address { font-size: 0.75rem; margin-top: 10px; }
    .alm-map-link { font-size: 0.75rem; margin-top: 6px; }
    .alm-contact-info h2 { font-size: 1.3rem; }
    .alm-contact-info > p { font-size: 0.85rem; margin-bottom: 14px; }
}

@media (max-width: 480px) {
    .alm-contact { padding: 30px 10px; }
    .alm-contact-wrapper { padding: 16px 12px; border-radius: 12px; gap: 16px; }
    .alm-contact-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
    .alm-contact-card { padding: 10px 10px; border-radius: 10px; gap: 10px; }
    .alm-contact-card-icon { width: 30px; height: 30px; min-width: 30px; font-size: 12px; border-radius: 6px; }
    .alm-contact-card-content h4 { font-size: 0.65rem; }
    .alm-contact-card-content p { font-size: 0.7rem; line-height: 1.4; }
    .alm-contact-actions .alm-btn { padding: 8px 14px; font-size: 0.75rem; border-radius: 10px; }
    .alm-map-frame iframe { height: 140px; }
    .alm-map-container { padding: 12px 10px; border-radius: 12px; }
    .alm-map-address { font-size: 0.7rem; margin-top: 8px; }
    .alm-map-link { font-size: 0.7rem; margin-top: 4px; }
    .alm-contact-info h2 { font-size: 1.1rem; }
    .alm-contact-info > p { font-size: 0.8rem; margin-bottom: 12px; }
    .alm-contact-info .alm-subtitle { font-size: 0.65rem; }
}

/* ============================================
   BOTÓN FLOTANTE WHATSAPP
============================================ */
.alm-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulseWhatsApp 2s ease-in-out infinite;
}

.alm-whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

.alm-whatsapp-text {
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes pulseWhatsApp {
    0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 40px rgba(37, 211, 102, 0.6); }
}

@media (max-width: 768px) {
    .alm-whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        border-radius: 50%;
    }
    .alm-whatsapp-text {
        display: none;
    }
}

/* ============================================
   TESTIMONIOS
============================================ */
/* ============================================
   TESTIMONIOS
============================================ */
.alm-testimonials {
    padding: 80px 20px;
    background: #f8f9fa;
}

.alm-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.alm-testimonial-item {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s ease;
}

.alm-testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.alm-testimonial-quote {
    font-size: 3rem;
    color: #0d6efd;
    line-height: 1;
    margin-bottom: 10px;
}

.alm-testimonial-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.alm-testimonial-author strong {
    display: block;
    color: #003366;
    font-weight: 700;
}

.alm-testimonial-author span {
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 1024px) {
    .alm-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .alm-testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ============================================
   CLIENTES - CARRUSEL
============================================ */

.alm-clients {
    padding: 70px 20px;
    background: #f5f7fa;
    overflow: hidden;
    position: relative;
}

.alm-clients-carousel {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.alm-clients-track {
    display: flex;
    gap: 30px;
    animation: clientsScroll 20s linear infinite;
    width: max-content;
}

.alm-clients-track:hover {
    animation-play-state: paused;
}

.alm-client-item {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    font-weight: 600;
    color: #666;
    font-size: 1.1rem;
    text-align: center;
    min-width: 180px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.alm-client-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.08);
    border-color: #0d6efd;
}

/* === ANIMACIÓN DEL CARRUSEL === */
@keyframes clientsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* === CONTROLES === */
.alm-clients-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.alm-clients-btn {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003366;
}

.alm-clients-btn:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
    transform: scale(1.05);
}

.alm-clients-btn:active {
    transform: scale(0.95);
}

/* ============================================
   RESPONSIVE CARRUSEL
============================================ */
@media (max-width: 1024px) {
    .alm-client-item {
        min-width: 150px;
        padding: 25px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .alm-clients {
        padding: 50px 15px;
    }

    .alm-client-item {
        min-width: 130px;
        padding: 20px 25px;
        font-size: 0.9rem;
    }

    .alm-clients-track {
        gap: 20px;
        animation: clientsScroll 15s linear infinite;
    }

    .alm-clients-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .alm-client-item {
        min-width: 110px;
        padding: 15px 20px;
        font-size: 0.8rem;
    }

    .alm-clients-track {
        gap: 15px;
        animation: clientsScroll 12s linear infinite;
    }

    .alm-clients-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}


/* ============================================
   POR QUÉ ELEGIRNOS - DINÁMICO
============================================ */
/* ============================================
   POR QUÉ ELEGIRNOS - VERSIÓN PREMIUM
============================================ */

.alm-why-premium {
    padding: 90px 20px 100px;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* === FONDO CON EFECTO === */
.alm-why-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(13, 110, 253, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 51, 102, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.alm-why-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* === TARJETA PREMIUM === */
.alm-why-premium-card {
    background: #ffffff;
    padding: 40px 30px 35px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    cursor: pointer;
}

/* === NÚMERO (Fondo decorativo) === */
.alm-why-premium-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(13, 110, 253, 0.04);
    line-height: 1;
    transition: all 0.5s ease;
    user-select: none;
}

.alm-why-premium-card:hover .alm-why-premium-number {
    color: rgba(13, 110, 253, 0.12);
    transform: scale(1.1) rotate(-5deg);
}

/* === ICONO === */
.alm-why-premium-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.alm-why-premium-card:hover .alm-why-premium-icon {
    transform: scale(1.15) translateY(-5px);
}

/* === TÍTULO === */
.alm-why-premium-card h3 {
    color: #003366;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.alm-why-premium-card:hover h3 {
    color: #0d6efd;
}

/* === TEXTO === */
.alm-why-premium-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* === ESTADÍSTICAS DESTACADAS === */
.alm-why-premium-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
}

.alm-why-premium-stat {
    font-size: 2rem;
    font-weight: 800;
    color: #0d6efd;
    line-height: 1;
}

.alm-why-premium-stat::after {
    content: '+';
    font-size: 1.5rem;
    color: #0d6efd;
}

.alm-why-premium-stat-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* === FONDO HOVER === */
.alm-why-premium-hover-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.06) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.alm-why-premium-card:hover .alm-why-premium-hover-bg {
    width: 400px;
    height: 400px;
}

/* === EFECTO 3D AL HOVER === */
.alm-why-premium-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 51, 102, 0.10);
    border-color: rgba(13, 110, 253, 0.15);
}

/* === BORDE SUPERIOR GRADIENTE === */
.alm-why-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #003366, #0d6efd);
    background-size: 300% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.alm-why-premium-card:hover::before {
    opacity: 1;
    animation: gradientSlide 2s ease infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .alm-why-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .alm-why-premium {
        padding: 60px 15px 70px;
    }

    .alm-why-premium-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 20px;
    }

    .alm-why-premium-card {
        padding: 30px 25px 30px;
    }

    .alm-why-premium-icon {
        font-size: 40px;
    }

    .alm-why-premium-card h3 {
        font-size: 1.2rem;
    }

    .alm-why-premium-card p {
        font-size: 0.9rem;
    }

    .alm-why-premium-stat {
        font-size: 1.6rem;
    }

    .alm-why-premium-number {
        font-size: 3.5rem;
        top: -10px;
        right: -5px;
    }

    .alm-why-premium-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .alm-why-premium-card {
        padding: 25px 20px 25px;
    }

    .alm-why-premium-icon {
        font-size: 36px;
    }

    .alm-why-premium-card h3 {
        font-size: 1.1rem;
    }

    .alm-why-premium-card p {
        font-size: 0.85rem;
    }

    .alm-why-premium-stat {
        font-size: 1.4rem;
    }

    .alm-why-premium-number {
        font-size: 3rem;
    }
}



/* ============================================
   ALM LOGISTIC - SOLO ANIMACIONES Y EFECTOS
   SIN MODIFICAR DISEÑO NI RESPONSIVE
   ============================================ */

/* ===== ANIMACIONES BASE ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ==========================================
   HERO SLIDER - SOLO EFECTOS VISUALES
   ========================================== */

/* Transición suave entre slides */
.alm-slide {
    transition: opacity 0.8s ease;
}

/* Badge animado al cargar */
.alm-hero-badge {
    animation: fadeInDown 0.8s ease 0.3s both;
}

/* Títulos animados al cargar */
.alm-hero-content h1 {
    animation: fadeInLeft 0.8s ease 0.5s both;
}

.alm-hero-content p {
    animation: fadeInLeft 0.8s ease 0.7s both;
}

.alm-hero-buttons {
    animation: fadeInUp 0.8s ease 0.9s both;
}

/* Efecto hover en botones */
.alm-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.alm-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.alm-btn:hover::before {
    left: 100%;
}

.alm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.alm-btn-whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Botones del slider */
.alm-slider-btn {
    transition: all 0.3s ease;
}

.alm-slider-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}

/* Dots del slider */
.alm-slider-dots span {
    transition: all 0.4s ease;
    cursor: pointer;
}

.alm-slider-dots span.active {
    background: var(--accent);
    width: 35px;
    border-radius: 20px;
}

/* ==========================================
   SERVICIOS - TARJETAS
   ========================================== */

.alm-service-compact-card {
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.alm-service-compact-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Línea decorativa en hover */
.alm-service-compact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.alm-service-compact-card:hover::before {
    transform: scaleX(1);
}

.alm-service-compact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12);
}

.alm-service-compact-icon {
    transition: all 0.4s ease;
}

.alm-service-compact-card:hover .alm-service-compact-icon {
    transform: scale(1.1) rotate(5deg);
}

.alm-btn-small {
    transition: all 0.3s ease;
}

.alm-btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* ==========================================
   ESTADÍSTICAS
   ========================================== */

.alm-stat-item {
    opacity: 0;
    transform: translateY(20px);
}

.alm-stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.alm-stat-number {
    transition: all 0.3s ease;
}

.alm-stat-item:hover .alm-stat-number {
    transform: scale(1.05);
}

/* Efecto de fondo decorativo */
.alm-stats {
    position: relative;
    overflow: hidden;
}

.alm-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
    pointer-events: none;
}

/* ==========================================
   ABOUT - SOLO ANIMACIONES
   ========================================== */

.alm-about-text {
    opacity: 0;
    transform: translateX(-20px);
}

.alm-about-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.alm-about-orbit {
    opacity: 0;
    transform: scale(0.9);
}

.alm-about-orbit.visible {
    opacity: 1;
    transform: scale(1);
}

/* Globo flotante */
.alm-globe {
    animation: float 4s ease-in-out infinite;
}

/* Anillos giratorios */
.alm-globe-ring {
    border: 2px solid rgba(37, 99, 235, 0.15);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.alm-globe-ring:nth-child(2) {
    width: 140%;
    height: 140%;
    animation-duration: 25s;
    animation-direction: reverse;
}

.alm-globe-ring:nth-child(3) {
    width: 180%;
    height: 180%;
    animation-duration: 30s;
}

/* Elementos en órbita - hover */
.alm-orbit-item {
    transition: all 0.3s ease;
}

.alm-orbit-item:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* ==========================================
   WHY PREMIUM
   ========================================== */

.alm-why-premium-card {
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.alm-why-premium-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.alm-why-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12);
}

.alm-why-premium-number {
    transition: all 0.4s ease;
}

.alm-why-premium-card:hover .alm-why-premium-number {
    transform: scale(1.1);
    color: rgba(37, 99, 235, 0.15);
}

.alm-why-premium-icon {
    transition: all 0.4s ease;
}

.alm-why-premium-card:hover .alm-why-premium-icon {
    transform: scale(1.1) rotate(-5deg);
}

.alm-why-premium-stat {
    transition: all 0.3s ease;
}

.alm-why-premium-card:hover .alm-why-premium-stat {
    color: var(--accent-dark);
}

/* Fondo decorativo */
.alm-why-premium {
    position: relative;
    overflow: hidden;
}

.alm-why-premium-bg {
    animation: float 15s ease-in-out infinite;
    pointer-events: none;
}

/* ==========================================
   CLIENTES CARRUSEL
   ========================================== */

.alm-clients-track {
    animation: scrollClients 20s linear infinite;
}

.alm-clients-track:hover {
    animation-play-state: paused;
}

.alm-client-item {
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.alm-client-item:hover {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.alm-clients-btn {
    transition: all 0.3s ease;
}

.alm-clients-btn:hover {
    background: var(--accent-dark);
    transform: scale(1.1);
}

/* ==========================================
   TESTIMONIOS
   ========================================== */

.alm-testimonial-item {
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.alm-testimonial-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.alm-testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.alm-testimonial-quote {
    transition: all 0.3s ease;
}

.alm-testimonial-item:hover .alm-testimonial-quote {
    color: var(--accent);
    opacity: 0.5;
}

/* ==========================================
   CONTACTO
   ========================================== */

.alm-contact-info {
    opacity: 0;
    transform: translateX(-20px);
}

.alm-contact-info.visible {
    opacity: 1;
    transform: translateX(0);
}

.alm-contact-map-wrapper {
    opacity: 0;
    transform: translateX(20px);
}

.alm-contact-map-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.alm-contact-card {
    transition: all 0.3s ease;
}

.alm-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.alm-contact-card-content a {
    transition: all 0.3s ease;
}

.alm-contact-card-content a:hover {
    color: var(--accent-dark);
}

.alm-map-link {
    transition: all 0.3s ease;
}

.alm-map-link:hover {
    color: var(--accent-dark);
}

/* ==========================================
   ANIMACIONES POR ORDEN (DELAYS)
   ========================================== */

/* Servicios */
.alm-service-compact-card:nth-child(1) { transition-delay: 0.1s; }
.alm-service-compact-card:nth-child(2) { transition-delay: 0.15s; }
.alm-service-compact-card:nth-child(3) { transition-delay: 0.2s; }
.alm-service-compact-card:nth-child(4) { transition-delay: 0.25s; }
.alm-service-compact-card:nth-child(5) { transition-delay: 0.3s; }
.alm-service-compact-card:nth-child(6) { transition-delay: 0.35s; }

/* Estadísticas */
.alm-stat-item:nth-child(1) { transition-delay: 0.1s; }
.alm-stat-item:nth-child(2) { transition-delay: 0.2s; }
.alm-stat-item:nth-child(3) { transition-delay: 0.3s; }
.alm-stat-item:nth-child(4) { transition-delay: 0.4s; }

/* Why Premium */
.alm-why-premium-card:nth-child(1) { transition-delay: 0.1s; }
.alm-why-premium-card:nth-child(2) { transition-delay: 0.2s; }
.alm-why-premium-card:nth-child(3) { transition-delay: 0.3s; }
.alm-why-premium-card:nth-child(4) { transition-delay: 0.4s; }

/* Testimonios */
.alm-testimonial-item:nth-child(1) { transition-delay: 0.1s; }
.alm-testimonial-item:nth-child(2) { transition-delay: 0.2s; }
.alm-testimonial-item:nth-child(3) { transition-delay: 0.3s; }

/* ==========================================
   EFECTO PARALLAX SUTIL (SOLO VISUAL)
   ========================================== */

.alm-slide-bg {
    will-change: transform;
}

/* ==========================================
   MEJORAS DE ACCESIBILIDAD
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}