﻿/* =====================================================
   BCT Callosa de Segura - Estilos principales
   Paleta: Morado CofradÃ­a + Dorado + Blanco
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

:root {
    --gold: #C9A96E;
    --gold-light: #e8c98a;
    --gold-dark: #a07840;
    --dark:   #1a0033;
    --dark-2: #250047;
    --dark-3: #35006a;
    --dark-4: #4a0096;
    --white: #ffffff;
    --gray-light: #f5f0fb;
    --gray: #999;
    --text: #2c2c2c;
    --radius: 6px;
    --shadow: 0 4px 20px rgba(26,0,51,0.18);
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cinzel', serif;
    color: var(--dark);
    line-height: 1.3;
}

a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; }

/* ---- TOPBAR ---- */
.topbar {
    background: var(--dark);
    color: var(--gray);
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid var(--dark-3);
}
.topbar a { color: var(--gray); }
.topbar a:hover { color: var(--gold); }
.topbar .social-icons a {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--dark-4); border-radius: 50%;
    font-size: 12px; margin-left: 4px;
    transition: var(--transition);
}
.topbar .social-icons a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.1); }

/* ---- NAVBAR ---- */
.navbar {
    background: var(--dark-2) !important;
    border-bottom: 2px solid var(--gold);
    padding: 0 !important;
}
.navbar-brand {
    padding: 12px 0;
    display: flex; align-items: center; gap: 14px;
}
.brand-logo-img {
    width: 64px; height: 64px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(201,169,110,0.5));
}
.navbar-brand .brand-text .brand-name {
    font-family: 'Cinzel', serif;
    font-weight: 700; font-size: 14px; color: var(--white);
    line-height: 1.2; display: block;
}
.navbar-brand .brand-text .brand-sub {
    font-size: 11px; color: var(--gold); font-weight: 300;
    letter-spacing: 1.5px; text-transform: uppercase; display: block;
}
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.5px; text-transform: uppercase;
    padding: 20px 14px !important;
    position: relative;
    transition: var(--transition);
}
.navbar-nav .nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
    height: 2px; background: var(--gold);
    transition: var(--transition);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: var(--gold) !important;
}
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
    left: 0; right: 0;
}
.navbar-toggler { border-color: var(--gold) !important; }
.navbar-toggler-icon { filter: invert(1); }

/* ---- HERO / BANNER ---- */
.hero {
    position: relative; min-height: 520px;
    background: linear-gradient(135deg, var(--dark) 0%, #2d1a00 100%);
    display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.25;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(13,13,13,0.9) 40%, rgba(13,13,13,0.4));
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white); font-weight: 700;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero .subtitle {
    font-size: 1.1rem; color: var(--gold);
    letter-spacing: 3px; text-transform: uppercase;
    font-family: 'Open Sans', sans-serif; font-weight: 300;
    margin-bottom: 20px;
}
.hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 550px; }

/* ---- PAGE HEADER ---- */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
    padding: 60px 0 40px;
    position: relative; overflow: hidden;
    border-bottom: 3px solid var(--gold);
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); position: relative; }
.page-header .subtitle { color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-size: 13px; margin-bottom: 10px; position: relative; }
.breadcrumb { background: transparent; padding: 0; margin: 0; position: relative; }
.breadcrumb-item a { color: var(--gold); }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ---- GOLD DIVIDER ---- */
.gold-divider {
    display: flex; align-items: center; gap: 15px;
    margin: 10px 0 30px;
}
.gold-divider::before, .gold-divider::after {
    content: ''; flex: 1; height: 1px; background: var(--gold);
    opacity: 0.3;
}
.gold-divider span {
    color: var(--gold); font-size: 18px;
}

/* ---- SECTION TITLES ---- */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title .label {
    display: inline-block;
    color: var(--gold); font-size: 12px; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
}
.section-title h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--dark); }
.section-title p { color: var(--gray); max-width: 600px; margin: 15px auto 0; }
.section-title .line {
    width: 60px; height: 3px; background: var(--gold);
    margin: 15px auto 0; border-radius: 3px;
}

/* ---- NEWS CARDS ---- */
.news-card {
    border: none; border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow);
    transition: var(--transition); height: 100%;
    background: var(--white);
}
.news-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }
.news-card .card-img-wrapper {
    position: relative; overflow: hidden; height: 210px;
}
.news-card .card-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .card-img-wrapper img { transform: scale(1.05); }
.news-card .card-img-wrapper .no-img {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
    display: flex; align-items: center; justify-content: center;
}
.news-card .card-img-wrapper .no-img i { font-size: 40px; color: var(--gold); opacity: 0.5; }
.news-card .cat-badge {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
    color: white;
}
.news-card .card-body { padding: 22px; }
.news-card .card-date { font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.news-card .card-title { font-size: 1rem; font-family: 'Cinzel', serif; margin-bottom: 10px; }
.news-card .card-title a { color: var(--dark); }
.news-card .card-title a:hover { color: var(--gold-dark); }
.news-card .card-text { font-size: 14px; color: #666; margin-bottom: 15px; }
.news-card .btn-read { font-size: 13px; color: var(--gold-dark); font-weight: 600; }
.news-card .btn-read:hover { color: var(--gold); }

/* ---- FEATURED NEWS ---- */
.featured-news {
    border-radius: var(--radius); overflow: hidden;
    position: relative; min-height: 420px;
    box-shadow: var(--shadow);
}
.featured-news img {
    width: 100%; height: 420px; object-fit: cover;
}
.featured-news .overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 40px 30px 30px;
}
.featured-news .cat-badge { margin-bottom: 12px; display: inline-block; }
.featured-news h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 10px; }
.featured-news p { color: rgba(255,255,255,0.75); font-size: 14px; }
.featured-news .meta { color: var(--gold); font-size: 12px; margin-top: 12px; }

/* ---- FILTER TABS ---- */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 35px; }
.filter-tabs .btn-filter {
    padding: 7px 20px; border-radius: 25px;
    border: 1px solid #ddd; background: transparent;
    font-size: 13px; font-weight: 600; cursor: pointer;
    transition: var(--transition); color: var(--gray);
}
.filter-tabs .btn-filter:hover, .filter-tabs .btn-filter.active {
    background: var(--gold); border-color: var(--gold); color: var(--dark);
}

/* ---- GALLERY ---- */
.gallery-card {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition);
    position: relative; cursor: pointer;
}
.gallery-card:hover { transform: translateY(-4px); }
.gallery-card .thumb {
    height: 220px; overflow: hidden; background: var(--dark-3);
    position: relative;
}
.gallery-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-card:hover .thumb img { transform: scale(1.08); }
.gallery-card .thumb .overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.5);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-card:hover .thumb .overlay { opacity: 1; }
.gallery-card .thumb .overlay i { font-size: 36px; color: var(--gold); }
.gallery-card .info { padding: 15px 18px; background: var(--white); }
.gallery-card .info h5 { font-size: 14px; font-family: 'Cinzel', serif; }
.gallery-card .count { font-size: 12px; color: var(--gray); margin-top: 4px; }

/* ---- TRADITION CARDS ---- */
.tradition-card {
    border: none; border-radius: var(--radius);
    box-shadow: var(--shadow); overflow: hidden;
    transition: var(--transition); height: 100%;
    background: var(--white);
}
.tradition-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.tradition-card .card-img-top { height: 200px; object-fit: cover; }
.tradition-card .no-img {
    height: 200px; background: linear-gradient(135deg, var(--dark), var(--dark-3));
    display: flex; align-items: center; justify-content: center;
}
.tradition-card .no-img i { font-size: 50px; color: var(--gold); opacity: 0.4; }
.tradition-card .card-body { padding: 22px; }
.tradition-card .card-title { font-family: 'Cinzel', serif; font-size: 1.1rem; margin-bottom: 12px; }
.tradition-card .card-text { font-size: 14px; color: #666; }
.tradition-card .btn-gold { margin-top: 15px; }

/* ---- BUTTONS ---- */
.btn-gold {
    background: var(--gold); color: var(--dark) !important;
    font-weight: 700; border: none; border-radius: var(--radius);
    padding: 10px 28px; font-size: 14px; letter-spacing: 0.5px;
    transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Open Sans', sans-serif;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,169,110,0.4); }
.btn-outline-gold {
    background: transparent; color: var(--gold) !important;
    border: 2px solid var(--gold); border-radius: var(--radius);
    padding: 9px 26px; font-size: 14px; font-weight: 700;
    transition: var(--transition);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--dark) !important; }
.btn-dark-custom {
    background: var(--dark); color: var(--white) !important;
    border: none; border-radius: var(--radius);
    padding: 10px 28px; font-size: 14px; font-weight: 600;
    transition: var(--transition);
}
.btn-dark-custom:hover { background: var(--dark-3); transform: translateY(-2px); }

/* ---- CONTACT FORM ---- */
.contact-form .form-control, .contact-form .form-select {
    border: 1px solid #e0e0e0; border-radius: var(--radius);
    padding: 12px 15px; font-size: 14px;
    transition: var(--transition);
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
    border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}
.contact-info-item {
    display: flex; align-items: flex-start; gap: 16px;
    margin-bottom: 25px;
}
.contact-info-item .icon {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(201,169,110,0.1); border: 1px solid rgba(201,169,110,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 18px; flex-shrink: 0;
}
.captcha-box {
    background: var(--gray-light); border-radius: var(--radius);
    padding: 14px 18px; display: inline-flex; align-items: center; gap: 12px;
    border: 1px solid #ddd;
}
.captcha-box .captcha-question { font-weight: 700; font-size: 16px; color: var(--dark); }
.captcha-box input { width: 70px; }

/* ---- MAP ---- */
#map { height: 450px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---- REPERTORIO ---- */
.repertorio-table thead {
    background: var(--dark); color: var(--gold);
    font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 0.5px;
}
.repertorio-table tbody tr:hover { background: rgba(201,169,110,0.05); }
.repertorio-table .btn-pdf {
    background: #dc3545; color: white !important;
    padding: 4px 12px; font-size: 12px; border-radius: 4px;
    display: inline-flex; align-items: center; gap: 5px;
}
.repertorio-table .btn-pdf:hover { background: #c82333; }

/* ---- SECTIONS ---- */
.section-light { padding: 80px 0; background: var(--white); }
.section-dark { padding: 80px 0; background: var(--dark); }
.section-gray { padding: 80px 0; background: var(--gray-light); }

/* ---- QUOTE / DESTACADO ---- */
.quote-block {
    border-left: 4px solid var(--gold);
    padding: 20px 25px; background: rgba(201,169,110,0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic; font-size: 1.05rem; color: #444;
    margin: 25px 0;
}

/* ---- STATS ---- */
.stats-section { background: var(--dark); padding: 60px 0; }
.stat-item { text-align: center; padding: 20px; }
.stat-item .number {
    font-family: 'Cinzel', serif; font-size: 3rem;
    color: var(--gold); font-weight: 700; line-height: 1;
}
.stat-item .label { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 8px; }

/* ---- FOOTER ---- */
footer {
    background: var(--dark); border-top: 3px solid var(--gold);
    color: rgba(255,255,255,0.7); padding: 60px 0 0;
}
footer h5 {
    color: var(--gold); font-family: 'Cinzel', serif;
    font-size: 14px; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 20px; padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,169,110,0.2);
}
footer p { font-size: 14px; line-height: 1.8; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 8px; font-size: 14px; }
footer ul li a { color: rgba(255,255,255,0.65); transition: var(--transition); }
footer ul li a:hover { color: var(--gold); padding-left: 5px; }
footer .footer-bottom {
    margin-top: 40px; padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px; color: rgba(255,255,255,0.4);
    text-align: center;
}
footer .social-links a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 15px; margin-right: 8px;
    transition: var(--transition);
}
footer .social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ---- ARTICLE / CONTENT ---- */
.article-content h2, .article-content h3 { margin-top: 30px; margin-bottom: 15px; }
.article-content p { margin-bottom: 15px; color: #444; }
.article-content ul, .article-content ol { margin: 0 0 20px 0; padding-left: 24px; color: #444; }
.article-content ul li, .article-content ol li { margin-bottom: 8px; line-height: 1.7; }
.article-content img {
    border-radius: var(--radius); box-shadow: var(--shadow); margin: 20px 0;
    cursor: zoom-in; transition: opacity .2s;
    display: block; max-width: 100%; height: auto;
}
.article-content a img { margin: 0; box-shadow: none; }
.article-content a[data-lightbox] img:hover { opacity: .85; }
.article-content img:hover { opacity: .85; }
.article-content .lb-video-trigger {
    position: relative; display: block; cursor: pointer;
    margin: 20px 0; border-radius: var(--radius); overflow: hidden;
    background: #000; line-height: 0;
}
.article-content .lb-video-trigger iframe,
.article-content .lb-video-trigger video {
    width: 100%; display: block; pointer-events: none;
    border-radius: var(--radius);
}
.article-content .lb-video-trigger .lb-play-btn {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.35); transition: background .2s;
}
.article-content .lb-video-trigger:hover .lb-play-btn { background: rgba(0,0,0,0.55); }
.article-content .lb-play-btn i {
    font-size: 52px; color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
    transition: transform .2s;
}
.article-content .lb-video-trigger:hover .lb-play-btn i { transform: scale(1.12); }

/* ---- SINGLE NEWS / TRADITION ---- */
.post-header-img {
    width: 100%; max-height: 450px; object-fit: cover;
    border-radius: var(--radius); box-shadow: var(--shadow);
    margin-bottom: 30px;
}

/* ---- BACK TO TOP ---- */
#backToTop {
    position: fixed; bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    background: var(--gold); color: var(--dark); border: none;
    border-radius: 50%; font-size: 18px;
    display: none; align-items: center; justify-content: center;
    cursor: pointer; z-index: 1000; box-shadow: 0 4px 15px rgba(201,169,110,0.4);
    transition: var(--transition);
}
#backToTop:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ---- LIGHTBOX ---- */
.lightbox-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.95); z-index: 9999;
    align-items: center; justify-content: center;
    padding: 16px;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay .lb-img {
    max-width: min(92vw, 1100px); max-height: 88vh;
    width: auto; height: auto;
    border-radius: 4px; object-fit: contain;
    touch-action: pinch-zoom;
    display: none;
}
.lightbox-overlay .lb-video-wrap {
    width: min(92vw, 960px);
}
.lightbox-overlay .lb-video-inner {
    position: relative; padding-top: 56.25%; /* 16:9 */
    border-radius: 4px; overflow: hidden; background: #000;
}
.lightbox-overlay .lb-video-inner iframe,
.lightbox-overlay .lb-video-inner video {
    position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.lightbox-overlay .lb-close {
    position: absolute; top: 14px; right: 18px;
    color: white; font-size: 38px; cursor: pointer;
    transition: var(--transition); background: none; border: none;
    line-height: 1; z-index: 10; padding: 4px 10px;
    -webkit-tap-highlight-color: transparent;
}
.lightbox-overlay .lb-close:hover { color: var(--gold); }
.lightbox-overlay .lb-caption {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.85); font-size: 13px; text-align: center;
    background: rgba(0,0,0,0.55); padding: 6px 18px; border-radius: 20px;
    max-width: 90vw; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ---- PAGINATION ---- */
.pagination .page-link {
    color: var(--gold-dark); border-color: #ddd;
    transition: var(--transition);
}
.pagination .page-link:hover, .pagination .page-item.active .page-link {
    background: var(--gold); border-color: var(--gold); color: var(--dark);
}

/* ---- ALERT ---- */
.alert-success { background: #d4edda; border-color: #c3e6cb; color: #155724; }
.alert-danger  { background: #f8d7da; border-color: #f5c6cb; color: #721c24; }

/* ---- LOADING SPINNER ---- */
.spinner-gold { color: var(--gold) !important; }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .navbar-nav .nav-link { padding: 12px 16px !important; }
    .navbar-nav .nav-link::after { display: none; }
    .hero { min-height: 380px; }
}
@media (max-width: 768px) {
    .section-light, .section-dark, .section-gray { padding: 50px 0; }
    .featured-news { min-height: 280px; }
    .featured-news img { height: 280px; }
    .stat-item .number { font-size: 2.2rem; }
}


    .header-title-main {
        font-size: 1.4rem;
    }
    .header-title-sub {
        font-size: 0.85rem;
    }
}


/* ===== HEADER PRINCIPAL ===== */
.site-header {
    background: #1a0033;
    padding: 0;
    border-bottom: 3px solid #C9A96E;
}
.header-main {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 12px 0;
}
.header-logo-link {
    flex-shrink: 0;
    line-height: 0;
}
.header-logo-img {
    height: 100px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
}
.header-title-block {
    flex: 1;
}
.header-title-main {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #C9A96E;
    margin: 0 0 6px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}
.header-title-sub {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 20px 0;
    }
    .header-logo-img {
        height: 80px;
    }
    .header-title-main {
        font-size: 1.3rem;
    }
}
/* Widget Ramos */
.ramos-widget {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ramos-widget i {
    color: var(--gold);
}
