:root {
    --primary-color: #00843D;
    --secondary-color: #00529B;
    --bg-light: #e8f7ed; /* A slightly more vibrant, natural mint/green tint */
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #4a4a4a;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Poppins', sans-serif;
}

.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }

/* Navbar moderna (estilo Glassmorphism) */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
}
.navbar-brand img {
    height: 50px;
    transition: transform 0.3s ease;
}
.navbar-brand:hover img {
    transform: scale(1.05);
}
.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #555 !important;
    position: relative;
    margin: 0 10px;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--primary-color) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.btn-telefono {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-telefono:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 132, 61, 0.2) !important;
}

/* Top Bar Marquee */
.top-bar {
    background: linear-gradient(90deg, #004d23 0%, var(--primary-color) 100%);
    color: #fff;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}
.marquee-container {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}
.marquee-container:hover {
    animation-play-state: paused;
}
.marquee-text {
    padding-right: 50px;
    white-space: nowrap;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero Section & Social Box */
.carousel-item img {
    object-fit: cover;
}
.carousel-product-col {
    height: 50%;
}
@media (min-width: 768px) {
    .carousel-product-col {
        height: 100%;
    }
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    background-size: 50%;
}

/* Hero Social Sidebar */
.hero-social-box {
    background: linear-gradient(135deg, var(--primary-color), #004d23);
    box-shadow: 0 10px 30px rgba(0, 132, 61, 0.15);
    min-height: 450px;
}
.hero-social-box .icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.btn-social-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    color: white;
}
.btn-social-hero span {
    font-size: 0.85rem;
}
.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.btn-instagram:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 39, 67, 0.4);
}
.btn-facebook {
    background: #1877F2;
}
.btn-facebook:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

/* About Us Section */
.about-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    position: relative;
}
.about-box {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 132, 61, 0.05);
}
.about-box.colorful-box {
    background: linear-gradient(145deg, #ffffff, #f0f9f4);
}
.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 132, 61, 0.08);
}
/* Cuando el icon-wrapper está dentro de un flex row, quitarle el margin-bottom por defecto */
.icon-wrapper.mb-0 {
    margin-bottom: 0 !important;
    flex-shrink: 0;
}
/* Divisor interno de subsecciones en la caja */
.about-subsection + .about-subsection {
    padding-top: 5px;
}
/* Tagline destacado de Propuesta de Valor */
.value-tagline {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}
.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 132, 61, 0.15), rgba(0, 82, 155, 0.08));
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 20px;
}

/* Valores Modernos */
.value-card-modern {
    background: #fff;
    padding: 30px 20px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 132, 61, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.value-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 132, 61, 0.1);
    border-color: rgba(0, 132, 61, 0.2);
}
.value-emoji {
    font-size: 2.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.value-card-modern:hover .value-emoji {
    transform: scale(1.1);
}
.value-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.value-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.closing-phrase {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    backdrop-filter: blur(10px);
    padding: 35px 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 132, 61, 0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    display: inline-block;
    max-width: 800px;
}

/* Clients */
.clients-section {
    padding: 80px 0;
    background-color: #fff;
}
.client-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    height: 110px;
    margin-bottom: 15px;
    background: #fff;
    border: 1px solid #f5f5f5;
    border-radius: 12px;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}
.client-logo-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    filter: grayscale(0%);
    opacity: 1;
    border-color: transparent;
}
.client-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}




/* ── Portfolio teaser (index.php) ────────────────────────── */
.portfolio-teaser-section {
    padding: 80px 0;
    background: #fff;
}
.portfolio-cat-chip {
    background: var(--bg-light);
    border: 1.5px solid rgba(0,132,61,0.12);
    color: var(--primary-color);
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}
.portfolio-cat-chip:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}
.portfolio-cat-chip i { opacity: 0.8; }

/* ── Products Page ───────────────────────────────────────── */
/* Hero stat */
.hero-stat {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 18px 28px;
    display: inline-block;
    text-align: center;
    backdrop-filter: blur(6px);
}
.hero-stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #f9de00;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}
.hero-stat-label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    margin-top: 4px;
}

/* Filter bar */
.products-filter-bar {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.sticky-filter {
    position: sticky;
    top: 72px;
    z-index: 100;
}
.btn-filter {
    background: #f4fdf8;
    border: 1.5px solid rgba(0,132,61,0.15);
    color: var(--primary-color);
    border-radius: 30px;
    padding: 7px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
}
.btn-filter:hover,
.btn-filter.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,132,61,0.25);
}
.filter-count {
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 0.75rem;
}
.btn-filter.active .filter-count,
.btn-filter:hover .filter-count {
    background: rgba(255,255,255,0.25);
}

/* Product card */
.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,132,61,0.12);
}
.product-img-wrapper {
    position: relative;
    background: #f8f9fa;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img {
    transform: scale(1.05);
}
.product-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f0;
}
.product-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-body {
    padding: 18px 20px 12px;
    flex: 1;
}
.product-brand {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 4px;
}
.product-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.35;
}
.product-desc {
    font-size: 0.83rem;
    color: #777;
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-footer {
    padding: 12px 20px 18px;
}
.btn-product-wa {
    display: block;
    text-align: center;
    background: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}
.btn-product-wa:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
}
.empty-state-icon { opacity: 0.6; }

/* ── Sedes standalone page ────────────────────────────────── */
.page-hero-section {
    background: linear-gradient(135deg, #004d23 0%, var(--primary-color) 100%);
    padding: 60px 0 50px;
    border-bottom: 6px solid #f9de00;
}
.breadcrumb-item a { text-decoration: none; }
.breadcrumb-item.active, .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.6); }
.delivery-badge-hero {
    background: #f9de00;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.1rem;
    padding: 10px 24px;
    border-radius: 6px;
    display: inline-block;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 0.5px;
}
.sede-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.sede-map-wrapper {
    min-height: 380px;
    overflow: hidden;
}
.sede-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    display: block;
}
.sede-image-wrapper {
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}
.sede-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sede-info {
    background: #fff;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sede-city-badge {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-weight: 800;
    font-size: 1.4rem;
    padding: 8px 28px;
    border-radius: 30px;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
}
.sede-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}
.sede-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: var(--bg-light);
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 2px;
}
.sede-detail-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 2px;
}
.sede-detail-value {
    font-size: 1rem;
    color: #333;
    margin-bottom: 2px;
    line-height: 1.5;
}

/* Sedes teaser (en index.php) */
.sedes-teaser-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #004d23 0%, var(--primary-color) 100%);
}
.sedes-teaser-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 30px 25px;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    color: #fff;
    height: 100%;
}
.sedes-teaser-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-4px);
}

/* ── Contact Section ───────────────────────────────────────── */
.contact-section {
    padding: 90px 0;
    background: linear-gradient(160deg, #f4fdf8 0%, #ffffff 100%);
}
.section-label {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
}
.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,132,61,0.06);
}
.contact-input {
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,132,61,0.1);
    outline: none;
}
.btn-contact-send {
    border-radius: 12px;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-contact-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,132,61,0.25);
}
/* Info stack (columna derecha) */
.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    color: inherit;
}
.contact-wa {
    border: 1.5px solid #25d366;
}
.cic-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    font-size: 1.4rem;
}
.cic-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 2px;
}
.cic-value {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 4px;
    line-height: 1.4;
}
.cic-phone {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.cic-phone:hover { text-decoration: underline; }

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, #004d23 100%);
    position: relative;
    border-top: 10px solid #f9de00; /* Yellow border top */
}
.location-card {
    background: transparent;
    color: white;
    padding: 20px 15px;
    height: 100%;
    position: relative;
}
.location-card:not(:last-child) {
    border-right: 2px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
    .location-card:not(:last-child) {
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 30px;
        margin-bottom: 10px;
    }
}
.location-badge {
    background-color: #f9de00; /* Yellow from image */
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.5rem;
    padding: 8px 30px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    text-transform: uppercase;
}
.location-address {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}
.location-neighborhood {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.95;
}
.location-phone {
    display: inline-flex;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}
.location-phone:hover {
    color: #f9de00;
    transform: translateY(-2px);
}
.delivery-badge {
    background-color: #f9de00;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.8rem;
    padding: 10px 40px;
    border-radius: 5px;
    display: inline-block;
    text-transform: uppercase;
    font-style: italic;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    letter-spacing: 1px;
}

/* Maps */
.map-col {
    position: relative;
}
.map-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.map-label {
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    backdrop-filter: blur(4px);
}
.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}
@media (max-width: 768px) {
    .map-wrapper iframe { height: 250px; }
}

/* Floating WhatsApp Pulse */
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #004d23 0%, var(--primary-color) 100%);
    color: #fff;
    padding: 50px 0 25px;
}
footer a {
    color: #e0f2e9;
    text-decoration: none;
    transition: color 0.3s ease;
}
footer a:hover {
    color: #fff;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 18px;
    margin-right: 10px;
    transition: all 0.3s ease;
}
.social-icons a:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ────────────────────────────────────────────────────────── */
/* 📱 RESPONSIVE GLOBAL OPTIMIZATIONS                       */
/* ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Tipografía fluida y márgenes para móviles */
    h1.display-5 {
        font-size: 2.2rem !important;
    }
    h2.section-title {
        font-size: 1.8rem;
    }
    .hero-stat-number {
        font-size: 2.2rem;
    }
    .section-label {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    /* Espaciado general (reducir padding en secciones) */
    .about-section, 
    .values-section, 
    .contact-section, 
    .clients-section, 
    .sedes-teaser-section, 
    .portfolio-teaser-section,
    .page-hero-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    /* Navbar en móviles - asegurar que el botón llamar no se rompa */
    .navbar-nav .btn-telefono {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 15px !important;
    }

    /* Tarjetas de producto */
    .product-img-wrapper {
        height: 180px;
    }
    
    /* Cajas y flexbox de contacto */
    .contact-wrapper {
        flex-direction: column;
    }
    
    /* Botón flotante WhatsApp */
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    
    /* Mapas en sedes */
    .sede-map-wrapper,
    .sede-map-wrapper iframe {
        min-height: 250px !important;
        height: 250px !important;
    }
}
/ *  
 R i c h  
 T e x t  
 S t y l i n g  
 F i x e s  
 * /  
 . r i c h - t e x t - c o n t e n t  
 p  
   m a r g i n - b o t t o m :   0 . 7 5 r e m ;    
 . r i c h - t e x t - c o n t e n t  
 p : l a s t - c h i l d  
   m a r g i n - b o t t o m :   0 ;    
 . r i c h - t e x t - c o n t e n t  
 u l  
 . r i c h - t e x t - c o n t e n t  
 o l  
   m a r g i n - b o t t o m :   0 . 7 5 r e m ;   p a d d i n g - l e f t :   1 . 5 r e m ;    
 