/* ============================================================
   RAÍCES MULTIESPACIO — CSS Principal
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ─── Variables ─────────────────────────────────────────── */
:root {
    --verde-principal: #0F4D3A;
    --verde-oscuro:    #07352A;
    --verde-medio:     #2F6B55;
    --dorado:          #B89A5A;
    --dorado-claro:    #D4BC84;
    --beige:           #F5F1E8;
    --blanco:          #FFFFFF;
    --texto:           #333333;
    --gris-claro:      #f8f9fa;
    --sombra:          0 4px 24px rgba(15,77,58,.10);
    --sombra-hover:    0 8px 32px rgba(15,77,58,.18);
    --radius:          12px;
    --transition:      all .25s ease;
}

/* ─── Reset / Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--texto);
    background: var(--blanco);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.25;
}

a { color: var(--verde-principal); transition: var(--transition); }
a:hover { color: var(--verde-medio); }
img { max-width: 100%; }

/* ─── Tipografías utilitarias ───────────────────────────── */
.font-display  { font-family: 'Cormorant Garamond', serif; }
.font-body     { font-family: 'Montserrat', sans-serif; }
.text-gold     { color: var(--dorado); }
.text-verde    { color: var(--verde-principal); }
.bg-verde      { background-color: var(--verde-principal); }
.bg-verde-dark { background-color: var(--verde-oscuro); }
.bg-beige      { background-color: var(--beige); }
.bg-gold       { background-color: var(--dorado); }

/* ─── Botones ───────────────────────────────────────────── */
.btn-raices {
    background: var(--verde-principal);
    color: var(--blanco);
    border: 2px solid var(--verde-principal);
    border-radius: 50px;
    padding: .65rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .04em;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.btn-raices:hover {
    background: var(--verde-oscuro);
    border-color: var(--verde-oscuro);
    color: var(--dorado-claro);
    transform: translateY(-2px);
    box-shadow: var(--sombra-hover);
}

.btn-gold {
    background: var(--dorado);
    color: var(--blanco);
    border: 2px solid var(--dorado);
    border-radius: 50px;
    padding: .65rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .04em;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.btn-gold:hover {
    background: var(--dorado-claro);
    border-color: var(--dorado-claro);
    color: var(--verde-oscuro);
    transform: translateY(-2px);
    box-shadow: var(--sombra-hover);
}

.btn-outline-raices {
    background: transparent;
    color: var(--verde-principal);
    border: 2px solid var(--verde-principal);
    border-radius: 50px;
    padding: .65rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .04em;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.btn-outline-raices:hover {
    background: var(--verde-principal);
    color: var(--blanco);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--blanco);
    border: 2px solid #25D366;
    border-radius: 50px;
    padding: .65rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}
.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: var(--blanco);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,.3);
}

/* ─── Navbar ────────────────────────────────────────────── */
.navbar-raices {
    background: rgba(7, 53, 42, 0.97);
    backdrop-filter: blur(10px);
    padding: .75rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.navbar-raices .navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--blanco) !important;
    letter-spacing: .02em;
}
.navbar-raices .navbar-brand span { color: var(--dorado); }
.navbar-raices .nav-link {
    color: rgba(255,255,255,.85) !important;
    font-weight: 500;
    font-size: .88rem;
    letter-spacing: .03em;
    padding: .5rem 1rem !important;
    transition: var(--transition);
}
.navbar-raices .nav-link:hover,
.navbar-raices .nav-link.active { color: var(--dorado-claro) !important; }
.navbar-raices .nav-cta {
    background: var(--dorado);
    color: var(--blanco) !important;
    border-radius: 50px;
    padding: .4rem 1.2rem !important;
    font-weight: 600;
}
.navbar-raices .nav-cta:hover {
    background: var(--dorado-claro);
    color: var(--verde-oscuro) !important;
}
.navbar-toggler { border-color: var(--dorado); }
.navbar-toggler-icon { filter: invert(1); }

/* ─── Hero ──────────────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde-principal) 50%, var(--verde-medio) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/hero-bg.jpg') center/cover no-repeat;
    opacity: .18;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(7,53,42,.85) 50%, rgba(7,53,42,.4));
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--blanco);
    line-height: 1.15;
}
.hero-title span { color: var(--dorado); }
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,.85);
    font-weight: 300;
    max-width: 560px;
}
.hero-badge {
    display: inline-block;
    background: rgba(184,154,90,.25);
    border: 1px solid var(--dorado);
    color: var(--dorado-claro);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,.5);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── Section Headers ───────────────────────────────────── */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--verde-principal);
    margin-bottom: .5rem;
}
.section-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--dorado), var(--dorado-claro));
    border-radius: 2px;
    margin: 1rem auto 1.5rem;
}
.section-divider.left { margin-left: 0; }

/* ─── Cards de uso ──────────────────────────────────────── */
.uso-card {
    background: var(--blanco);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #e8e0d0;
    transition: var(--transition);
    height: 100%;
}
.uso-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sombra-hover);
    border-color: var(--dorado-claro);
}
.uso-card .uso-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-medio));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
    color: var(--blanco);
}
.uso-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--verde-principal);
    margin: 0;
}

/* ─── Space Cards ───────────────────────────────────────── */
.space-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: var(--transition);
    background: var(--blanco);
    border: none;
    height: 100%;
}
.space-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-hover);
}
.space-card-img {
    height: 240px;
    object-fit: cover;
    width: 100%;
}
.space-card-body { padding: 1.75rem; }
.space-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--verde-principal);
}
.space-card .price-badge {
    background: var(--beige);
    color: var(--dorado);
    font-weight: 700;
    font-size: .85rem;
    padding: .25rem .75rem;
    border-radius: 50px;
    border: 1px solid var(--dorado-claro);
}
.capacity-badge {
    background: rgba(15,77,58,.08);
    color: var(--verde-principal);
    font-size: .8rem;
    font-weight: 600;
    padding: .2rem .7rem;
    border-radius: 50px;
}

/* ─── Benefit Items ─────────────────────────────────────── */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--blanco);
    border-radius: var(--radius);
    border: 1px solid #eee;
    transition: var(--transition);
}
.benefit-item:hover {
    border-color: var(--dorado-claro);
    box-shadow: var(--sombra);
}
.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--verde-principal), var(--verde-medio));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanco);
    font-size: 1.25rem;
    flex-shrink: 0;
}
.benefit-item h6 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--verde-principal);
    margin-bottom: .2rem;
}
.benefit-item p {
    font-size: .85rem;
    color: #777;
    margin: 0;
}

/* ─── Professional Cards ────────────────────────────────── */
.pro-card {
    background: var(--blanco);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: var(--transition);
    text-align: center;
    border: none;
    height: 100%;
}
.pro-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sombra-hover);
}
.pro-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--dorado-claro);
    margin: 2rem auto 1rem;
    display: block;
}
.pro-card-body { padding: 0 1.75rem 2rem; }
.pro-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--verde-principal);
    margin-bottom: .2rem;
}
.pro-card .specialty {
    font-size: .82rem;
    font-weight: 600;
    color: var(--dorado);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .75rem;
}
.pro-card p {
    font-size: .88rem;
    color: #666;
    margin-bottom: 1rem;
}
.pro-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: var(--transition);
    text-decoration: none;
    margin: 0 .2rem;
}
.pro-social .wa  { background: #25D366; color: #fff; }
.pro-social .ig  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.pro-social .wa:hover  { opacity: .85; transform: scale(1.1); }
.pro-social .ig:hover  { opacity: .85; transform: scale(1.1); }

/* ─── Event Cards ───────────────────────────────────────── */
.event-card {
    background: var(--blanco);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: var(--transition);
    border: none;
    height: 100%;
}
.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sombra-hover);
}
.event-card-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    position: relative;
}
.event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--verde-principal);
    color: var(--blanco);
    text-align: center;
    padding: .5rem .75rem;
    border-radius: 8px;
    line-height: 1.2;
}
.event-date-badge .day   { font-size: 1.5rem; font-weight: 700; font-family: 'Cormorant Garamond', serif; }
.event-date-badge .month { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.event-card-body { padding: 1.5rem; }
.event-card h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--verde-principal);
    margin-bottom: .75rem;
}
.event-meta span {
    font-size: .8rem;
    color: #777;
    margin-right: 1rem;
}
.event-meta i { color: var(--dorado); margin-right: .25rem; }
.spots-badge {
    font-size: .78rem;
    font-weight: 600;
    padding: .2rem .7rem;
    border-radius: 50px;
}
.spots-available { background: rgba(15,77,58,.1); color: var(--verde-principal); }
.spots-few       { background: rgba(184,154,90,.15); color: #8a6a1a; }
.spots-full      { background: rgba(239,68,68,.1); color: #dc2626; }

/* ─── Gallery ───────────────────────────────────────────── */
.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}
.gallery-item img {
    transition: transform .4s ease;
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.gallery-item:hover img { transform: scale(1.08); }

/* ─── Contact Section ───────────────────────────────────── */
.contact-card {
    background: var(--blanco);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--sombra);
    border-left: 4px solid var(--dorado);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info-item .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde-principal);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-item h6 {
    font-weight: 600;
    color: var(--verde-principal);
    margin-bottom: .15rem;
    font-size: .9rem;
}
.contact-info-item p, .contact-info-item a {
    margin: 0;
    font-size: .88rem;
    color: #666;
    text-decoration: none;
}
.contact-info-item a:hover { color: var(--verde-principal); }

/* ─── Forms ─────────────────────────────────────────────── */
.form-raices .form-control,
.form-raices .form-select {
    border: 1.5px solid #e0d8cc;
    border-radius: 8px;
    padding: .75rem 1rem;
    font-size: .9rem;
    transition: var(--transition);
    background: var(--blanco);
}
.form-raices .form-control:focus,
.form-raices .form-select:focus {
    border-color: var(--verde-principal);
    box-shadow: 0 0 0 3px rgba(15,77,58,.12);
}
.form-raices label {
    font-weight: 600;
    font-size: .85rem;
    color: var(--verde-principal);
    margin-bottom: .4rem;
}

/* ─── Footer ────────────────────────────────────────────── */
.footer-raices {
    background: var(--verde-oscuro);
    color: rgba(255,255,255,.8);
    padding: 4rem 0 0;
}
.footer-raices h5 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--dorado-claro);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}
.footer-raices a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: .88rem;
    transition: var(--transition);
    display: block;
    margin-bottom: .5rem;
}
.footer-raices a:hover { color: var(--dorado-claro); }
.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--blanco);
}
.footer-brand span { color: var(--dorado); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 3rem;
    padding: 1.25rem 0;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: var(--blanco);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    margin-right: .5rem;
    transition: var(--transition);
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--dorado);
    color: var(--blanco);
    transform: translateY(-3px);
}

/* ─── WhatsApp Flotante ─────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blanco);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover {
    background: #128C7E;
    color: var(--blanco);
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,.5);
    animation: none;
}
@keyframes pulse-wa {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ─── Admin Layout ──────────────────────────────────────── */
.admin-sidebar {
    width: 260px;
    min-height: 100vh;
    background: var(--verde-oscuro);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding-top: 1rem;
    transition: width .3s ease;
    overflow-y: auto;
}
.admin-sidebar .sidebar-brand {
    padding: 1rem 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 1rem;
}
.admin-sidebar .sidebar-brand h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--blanco);
    margin: 0;
}
.admin-sidebar .sidebar-brand span { color: var(--dorado); }
.admin-sidebar .sidebar-brand p {
    font-size: .75rem;
    color: rgba(255,255,255,.5);
    margin: .25rem 0 0;
}
.admin-sidebar .nav-item { margin: .1rem .75rem; }
.admin-sidebar .nav-link {
    color: rgba(255,255,255,.7);
    border-radius: 8px;
    padding: .65rem 1rem;
    font-size: .88rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: .75rem;
}
.admin-sidebar .nav-link i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
    color: rgba(255,255,255,.5);
    transition: var(--transition);
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: rgba(255,255,255,.1);
    color: var(--blanco);
}
.admin-sidebar .nav-link:hover i,
.admin-sidebar .nav-link.active i { color: var(--dorado); }
.admin-sidebar .nav-section-title {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    padding: 1.25rem 1.75rem .4rem;
}

.admin-main {
    margin-left: 260px;
    min-height: 100vh;
    background: #f4f5f7;
    transition: margin-left .3s ease;
}
.admin-topbar {
    background: var(--blanco);
    border-bottom: 1px solid #eee;
    padding: .9rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.admin-content { padding: 2rem; }

/* Admin Cards */
.stat-card {
    background: var(--blanco);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 4px 0 0 4px;
}
.stat-card.verde::after  { background: var(--verde-principal); }
.stat-card.dorado::after { background: var(--dorado); }
.stat-card.azul::after   { background: #3b82f6; }
.stat-card.rojo::after   { background: #ef4444; }
.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.stat-card .stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.stat-card .stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--texto);
}
.stat-card .stat-label {
    font-size: .82rem;
    color: #999;
    font-weight: 500;
    margin-top: .2rem;
}

/* Admin Tables */
.table-raices {
    background: var(--blanco);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.table-raices table { margin: 0; }
.table-raices thead th {
    background: var(--verde-principal);
    color: var(--blanco);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: none;
    padding: 1rem;
}
.table-raices tbody td {
    padding: .9rem 1rem;
    border-color: #f0f0f0;
    vertical-align: middle;
    font-size: .88rem;
}
.table-raices tbody tr:hover { background: #f9fafb; }

/* Admin status badges */
.badge-pending   { background: #fef3c7; color: #92400e; }
.badge-confirmed { background: #d1fae5; color: #065f46; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }
.badge-finished  { background: #f3f4f6; color: #374151; }
.badge-draft     { background: #e0e7ff; color: #3730a3; }
.badge-published { background: #d1fae5; color: #065f46; }
.badge-new       { background: #fef3c7; color: #92400e; }
.badge-contacted { background: #dbeafe; color: #1e40af; }
.badge-closed    { background: #f3f4f6; color: #374151; }

/* Admin form card */
.form-card {
    background: var(--blanco);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.form-card .form-label {
    font-weight: 600;
    font-size: .85rem;
    color: #555;
}
.form-card .form-control,
.form-card .form-select {
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: .6rem .9rem;
    font-size: .9rem;
}
.form-card .form-control:focus,
.form-card .form-select:focus {
    border-color: var(--verde-principal);
    box-shadow: 0 0 0 3px rgba(15,77,58,.12);
}

/* ─── FullCalendar overrides ────────────────────────────── */
.fc .fc-toolbar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--verde-principal);
}
.fc .fc-button-primary {
    background: var(--verde-principal);
    border-color: var(--verde-principal);
}
.fc .fc-button-primary:hover {
    background: var(--verde-oscuro);
    border-color: var(--verde-oscuro);
}
.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
    background: var(--verde-oscuro);
    border-color: var(--verde-oscuro);
}
.fc .fc-daygrid-day-number { color: var(--texto); font-weight: 500; }
.fc .fc-col-header-cell-cushion { font-weight: 600; color: var(--verde-principal); }
.fc-event { border-radius: 4px; font-size: .78rem; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .admin-sidebar { transform: translateX(-100%); width: 260px; }
    .admin-sidebar.show { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .admin-content { padding: 1rem; }
    .hero-title { font-size: 2.5rem; }
}

@media (max-width: 575.98px) {
    .hero-section { min-height: 90vh; }
    .hero-title { font-size: 2rem; }
    .btn-raices, .btn-gold, .btn-outline-raices { padding: .55rem 1.4rem; font-size: .85rem; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 1.25rem; right: 1.25rem; }
}

/* ─── Utilities ─────────────────────────────────────────── */
.rounded-raices { border-radius: var(--radius); }
.shadow-raices  { box-shadow: var(--sombra); }
section { padding: 5rem 0; }
.py-section { padding: 5rem 0; }


/* ============================================================
   PIXELROOT BADGE
   ============================================================ */
.pixelroot-badge {
    background-color: #080808;
    padding: 0.45rem 0;
}

.pixelroot-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    opacity: 0.65;
    transition: opacity 0.25s ease;
}

.pixelroot-link:hover,
.pixelroot-link:focus-visible {
    opacity: 1;
}

.pixelroot-logo {
    height: 28px;
    width: auto;
    display: block;
}

.pixelroot-text {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    white-space: nowrap;
}