/* ========== GLOBAL VARIABLES ========== */
:root {
    --navy-dark: #0A1A2F;
    --navy: #0F2A44;
    --navy-light: #1C3C5C;
    --orange: #D45A2B;
    --orange-dark: #B14018;
    --white: #FFFFFF;
    --offwhite: #F9FAFB;
    --gray-light: #EFF3F8;
    --gray: #6C7A91;
    --text-dark: #1E2A3A;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

h1, h2, h3, h4, .logo {
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

body, button, input, .btn, .card-link {
    font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}



.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.4rem;
}

/* ========== BOTONES ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.4rem;
    font-weight: 600;
    font-size: 1.4rem;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn i {
    font-size: 1.4rem;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
    box-shadow: 0 2px 6px rgba(212, 90, 43, 0.3);
}
.btn-primary:hover {
    background-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(212, 90, 43, 0.4);
}

.btn-secondary {
    background-color: #050f27;
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

/* ========== HEADER ========== */
header {
    background-color: var(--navy-dark);
    padding: 1.6rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--orange);
    backdrop-filter: blur(4px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.2rem;
    color: var(--white);
    letter-spacing: -0.5px;
}
.logo span {
    color: var(--orange);
}

nav {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}
nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    transition: var(--transition);
}
nav a:hover {
    color: var(--orange);
}

.btn-campus {
    background-color: rgba(212, 90, 43, 0.15);
    padding: 0.8rem 1.8rem;
    border-radius: 4rem;
    border: 1px solid var(--orange);
    font-weight: 600;
}
.btn-campus:hover {
    background-color: var(--orange);
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    font-size: 2.4rem;
    color: var(--white);
    cursor: pointer;
}

/* ========== HERO ========== */
.hero {
    min-height: 95vh;              /* Ocupa toda la altura de la pantalla */
    display: flex;
    align-items: center;            /* Centra verticalmente el contenido */
    position: relative;
    padding: 8rem 0;
    color: var(--navy-dark);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/baner.jpeg);
    background-size: cover;
    background-position: center;
    opacity: 1;                  /* Valor correcto (antes 4.5) */
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

/* El resto de los estilos internos (hero-badge, h1, p, etc.) se mantienen igual */
.hero-badge {
    display: inline-block;
    background-color: rgba(212, 90, 43, 0.2);
    padding: 0.6rem 1.6rem;
    border-radius: 4rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid var(--orange);
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.8rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    flex-wrap: wrap;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* ========== SECCIONES GENERALES ========== */
.section-padding {
    padding: 8rem 0;
}
.bg-light {
    background-color: var(--offwhite);
}
.bg-dark {
    background-color: var(--navy-dark);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}
.section-tag {
    display: inline-block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 1rem;
}
.section-tag.light {
    color: var(--orange);
    opacity: 0.9;
}
.section-title {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    color: inherit;
}
.section-subtitle {
    font-size: 1.6rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}
.section-subtitle.light {
    color: rgba(255,255,255,0.75);
}

/* ========== CARDS DIPLOMADOS ========== */
.grid-diplomados {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    justify-items: center;  /* Centra las cards horizontalmente */
}
.card {
    max-width: 400px;       /* Evita que se estire demasiado */
    width: 100%;
    background: var(--white);
    border-radius: 1.2rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}
.card-icon {
    background: var(--offwhite);
    padding: 2rem 0 0 2rem;
    font-size: 3.6rem;
    color: var(--orange);
}
.card-body {
    padding: 2rem;
}
.card-tag {
    display: inline-block;
    background: rgba(212, 90, 43, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 1.2rem;
}
.card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--navy-dark);
}
.card p {
    font-size: 1.4rem;
    color: var(--gray);
    margin-bottom: 1.8rem;
}
.card-link {
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.card-link i {
    transition: transform 0.2s;
}
.card-link:hover i {
    transform: translateX(4px);
}

/* ========== ESTADÍSTICAS ========== */
.stats {
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 5rem 0;
    color: var(--white);
}
.stats-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}
.stat-item {
    flex: 1;
    min-width: 150px;
}
.stat-number {
    font-size: 3.6rem;
    font-weight: 800;
    display: block;
    font-family: 'Playfair Display', serif;
    color: var(--orange);
}
.stat-label {
    font-size: 1.4rem;
    font-weight: 500;
    opacity: 0.8;
}

/* ========== LÍNEA DE TIEMPO (RESPETADA ÍNTEGRAMENTE) ========== */
.interactive-timeline {
    background: var(--white);
    border-radius: 1.2rem;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    max-width: 1200px;
    margin: 0 auto;
}
.timeline-nav-wrapper {
    overflow-x: auto;
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}
.timeline-nav-wrapper::-webkit-scrollbar {
    height: 4px;
}
.timeline-nav-wrapper::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 4px;
}
.timeline-nav {
    display: flex;
    position: relative;
    gap: 4rem;
    padding: 1rem 0.5rem;
    width: max-content;
}
.timeline-nav::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #E2E8F0;
    z-index: 1;
}
.timeline-progress {
    position: absolute;
    top: 2.5rem;
    left: 0;
    height: 2px;
    background-color: var(--orange);
    z-index: 2;
    transition: width 0.4s ease;
}
.timeline-node {
    position: relative;
    z-index: 3;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 65px;
}
.node-circle {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #CBD5E1;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    transition: all 0.2s;
}
.timeline-node.multiple .node-circle::before {
    content: '• • •';
    position: absolute;
    bottom: -1.2rem;
    font-size: 0.7rem;
    color: var(--orange);
}
.node-month {
    margin-top: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    color: #64748B;
}
.timeline-node.passed .node-circle {
    background-color: #F1F5F9;
    border-color: #94A3B8;
}
.timeline-node.passed .node-circle::after {
    content: '✓';
    position: absolute;
    top: -0.4rem;
    right: -0.4rem;
    width: 1.8rem;
    height: 1.8rem;
    background: #2F855A;
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.timeline-node.active .node-circle {
    border-color: var(--orange);
    color: var(--orange);
    transform: scale(1.1);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 90, 43, 0.2);
}
.timeline-node.active .node-month {
    color: var(--orange);
    font-weight: 700;
}
.timeline-panels {
    position: relative;
    min-height: 240px;
    border-top: 1px solid #EFF3F8;
    padding-top: 2.5rem;
}
.timeline-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    visibility: hidden;
    transition: all 0.3s ease;
}
.timeline-panel.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    position: relative;
}
.single-event .event-tag, .sub-event-card .event-tag {
    background: rgba(212, 90, 43, 0.1);
    color: var(--orange);
    padding: 0.3rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2rem;
    display: inline-block;
    margin-bottom: 1rem;
}
.timeline-panel h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--navy-dark);
}
.multiple-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.sub-event-card {
    background: var(--offwhite);
    border-left: 4px solid var(--orange);
    padding: 1.8rem;
    border-radius: 0.8rem;
}
.sub-event-card .event-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    display: inline-block;
}
.sub-event-card h4 {
    font-size: 1.6rem;
    margin: 0.8rem 0;
}
.sub-event-card p {
    font-size: 1.3rem;
    color: var(--gray);
}

/* ========== ALIANZAS ========== */
.grid-alianzas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}
.alianza-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 1.2rem;
    transition: var(--transition);
}
.alianza-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    background: rgba(255,255,255,0.08);
}
.alianza-card i {
    font-size: 4rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
}
.alianza-card h4 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}
.alianza-card p {
    font-size: 1.3rem;
    opacity: 0.8;
}

/* ========== FOOTER ========== */
footer {
    background-color: #07111F;
    color: #A0AEC0;
    padding-top: 5rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col .logo {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}
.footer-col p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.social-icons {
    display: flex;
    gap: 1.2rem;
}
.social-icons a {
    color: #A0AEC0;
    background: rgba(255,255,255,0.05);
    width: 3.2rem;
    height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.social-icons a:hover {
    background: var(--orange);
    color: white;
}
.footer-col h4 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.8rem;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4rem;
    height: 2px;
    background: var(--orange);
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 1rem;
}
.footer-col ul li a {
    color: #A0AEC0;
    text-decoration: none;
    font-size: 1.3rem;
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--orange);
    padding-left: 0.4rem;
}
.footer-col ul li i {
    width: 2rem;
    color: var(--orange);
}
.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    font-size: 1.2rem;
}
.footer-bottom a {
    color: #A0AEC0;
    text-decoration: none;
}
.footer-bottom a:hover {
    color: var(--orange);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    html { font-size: 58%; }
    .hero h1 { font-size: 3.6rem; }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    nav {
        position: fixed;
        top: 7rem;
        left: -100%;
        width: 80%;
        height: calc(100vh - 7rem);
        background: var(--navy-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 2rem;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 2px 0 12px rgba(0,0,0,0.3);
    }
    nav.active {
        left: 0;
    }
    nav a {
        margin: 1rem 0;
        font-size: 1.6rem;
    }
    .btn-campus {
        margin-top: 1rem;
    }
    .hero h1 { font-size: 3rem; }
    .section-title { font-size: 2.4rem; }
    .stats-grid { flex-direction: column; gap: 2rem; }
    .interactive-timeline { padding: 2rem; }
    .timeline-nav { gap: 2rem; }
    .timeline-node { width: 50px; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.6rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .hero h1 { font-size: 2.4rem; }
    .hero p { font-size: 1.4rem; }
    .section-padding { padding: 5rem 0; }
    .timeline-nav { gap: 1.2rem; }
    .timeline-node .node-circle { width: 3.8rem; height: 3.8rem; font-size: 1.1rem; }
    .node-month { font-size: 0.8rem; }
    .timeline-nav::before, .timeline-progress { top: 1.9rem; }
}

/* ========== IMÁGENES EN TARJETAS DE DIPLOMADOS ========== */
.card-img {
    width: 100%;
    height: 360px;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.card:hover .card-img img {
    transform: scale(1.05);
}
/* Eliminamos el icono anterior (opcional, si aún existiera en alguna card) */
.card-icon {
    display: none;
}

/* ========== NUEVA SECCIÓN BENEFICIOS ========== */
.benefits {
    padding: 8rem 0;
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
}

.grid-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    border-radius: 1.2rem;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    font-size: 4.5rem;
    color: var(--orange);
    margin-bottom: 2rem;
}

.benefit-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.benefit-card p {
    font-size: 1.4rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Ajustes responsivos para la nueva sección */
@media (max-width: 768px) {
    .benefits {
        padding: 5rem 0;
    }
    .benefit-card {
        padding: 2rem;
    }
    .benefit-icon {
        font-size: 3.5rem;
    }
    .benefit-card h3 {
        font-size: 1.8rem;
    }
}

/* Estilo para botón de WhatsApp */
.card-link .fa-whatsapp {
    color: #25D366;
    font-size: 1.4rem;
}

/* Opcional: botón con fondo verde y texto blanco, redondeado */
.card-link.whatsapp-btn {
    background-color: #c9601a;
    color: white;
    padding: 0.8rem 1.6rem;
    border-radius: 4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.card-link.whatsapp-btn:hover {
    background-color: #050f27;
    transform: translateY(-2px);
    color: white;
}

/* ========== BOTONES FLOTANTES GENÉRICOS ========== */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background-color: var(--orange);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}
.floating-btn-left {
    left: 30px;
}
.floating-btn-left:hover {
    background-color: var(--orange-dark);
    transform: scale(1.1);
}

/* Botón WhatsApp específico (derecha) */
.wa-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}
.floating-btn-wa {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0 1.8rem;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.floating-btn-wa i {
    font-size: 2rem;
}
.floating-btn-wa:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

/* ========== CARDS FLOTANTES (estilo común) ========== */
.floating-card {
    position: absolute;
    bottom: 85px;
    width: 360px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.floating-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Card del mapa (izquierda) */
.mapa-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}
.mapa-card {
    left: 0;
}
.mapa-card .floating-card-header {
    background: var(--navy-dark);
    color: white;
}
.mapa-card .floating-card-header i {
    color: var(--orange);
}
.mapa-card .card-direccion {
    font-size: 1.2rem;
    color: var(--text-dark);
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
}

/* Card de WhatsApp (derecha) */
.whatsapp-card {
    right: 0;
}
.whatsapp-card .floating-card-header {
    background: #075E54;
    color: white;
}
.whatsapp-card .floating-card-header i {
    background: white;
    color: #075E54;
    border-radius: 50%;
    padding: 0.4rem;
}

/* Encabezado común de las cards */
.floating-card-header {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1.4rem;
}
.floating-card-header span {
    flex: 1;
}
.close-card {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.close-card:hover {
    opacity: 1;
}

/* Cuerpo de las cards */
.floating-card-body {
    padding: 1.5rem;
    background: #fff;
}

/* Estilos del formulario WhatsApp */
.whatsapp-card .form-group {
    margin-bottom: 1.5rem;
}
.whatsapp-card label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}
.whatsapp-card input,
.whatsapp-card textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s;
    box-sizing: border-box;
}
.whatsapp-card input:focus,
.whatsapp-card textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(212, 90, 43, 0.15);
}
.btn-enviar-wa {
    background: linear-gradient(95deg, #25D366, #128C7E);
    color: white;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
    margin-top: 0.5rem;
}
.btn-enviar-wa:hover {
    background: linear-gradient(95deg, #128C7E, #075E54);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 480px) {
    .floating-btn-left {
        left: 15px;
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
    }
    .wa-container {
        right: 15px;
    }
    .floating-btn-wa {
        height: 48px;
        padding: 0 1.2rem;
        font-size: 1.2rem;
    }
    .floating-btn-wa i {
        font-size: 1.6rem;
    }
    .floating-card {
        width: 290px;
    }
    .mapa-card {
        left: 15px;
        bottom: 75px;
    }
    .whatsapp-card {
        right: -10px;
        bottom: 75px;
    }
    .mapa-card-body iframe {
        height: 220px;
    }
}