/* ============================================================
   ACYL ABOGADOS — custom.css
   Orden: Variables → Layout compartido → Componentes → Páginas
   ============================================================ */
 
/* ------------------------------------------------------------
   1. VARIABLES Y RESET DE COLOR
   ------------------------------------------------------------ */
:root {
    --acyl-maroon: #800000;
    --acyl-dark: #1a1a1a;
    --acyl-text: #444;
    --acyl-muted: #666;
    --acyl-bg-light: #f9f9f9;
    --acyl-border: #eee;
}
 
 
/* ------------------------------------------------------------
   2. TOP BAR
   ------------------------------------------------------------ */
.top-bar {
    background: #f4f4f4;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
}
.eu-registry {
    margin-left: 20px;
    color: var(--acyl-maroon);
}
.flag-link {
    padding: 5px 10px;
    display: inline-block;
}
.flag-link img {
    width: 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
 
 
/* ------------------------------------------------------------
   3. HEADER Y NAVEGACIÓN
   ------------------------------------------------------------ */
.head-bg {
    background-color: #737070 !important;
    padding: 20px 0 !important;
}
.navbar-inverse {
    background-color: var(--acyl-maroon);
    border-bottom: 2px solid #eee;
    margin-bottom: 0;
}
.navbar-inverse .navbar-nav > li > a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 13px;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    background-color: rgba(0,0,0,0.15);
    color: #eee;
}
.navbar-inverse .navbar-nav > li.active > a,
.navbar-inverse .navbar-nav > li.active > a:hover,
.navbar-inverse .navbar-nav > li.active > a:focus {
    background-color: rgba(0,0,0,0.2);
    color: #fff;
}
.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff;
}
.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: rgba(0,0,0,0.2);
}
 
 
/* ------------------------------------------------------------
   4. HERO SECTION (home)
   ------------------------------------------------------------ */
.hero-section {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}
.hero-text-box h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-sub {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}
.hero-btns {
    margin-top: 10px;
}
 
 
/* ------------------------------------------------------------
   5. BOTONES
   ------------------------------------------------------------ */
.btn-acyl-red {
    background: #a50000;
    color: #fff;
    padding: 18px 40px;
    border-radius: 3px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
    display: inline-block;
    transition: 0.3s;
}
.btn-acyl-red:hover {
    background: var(--acyl-maroon);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
/* Sobreescribe el btn-primary de Bootstrap para ACYL */
.btn-primary {
    background-color: var(--acyl-maroon);
    border: none;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: #9e0000;
    border: none;
}
 
 
/* ------------------------------------------------------------
   6. LAYOUT COMPARTIDO: PÁGINAS INTERNAS
   ------------------------------------------------------------ */
 
/* Banda de título de página (breadcrumb + h1) */
.page-title-band {
    background: #f4f4f4;
    padding: 40px 0;
    border-bottom: 1px solid #ddd;
}
.page-title-band .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 10px;
    font-size: 13px;
}
.page-title-band h1 {
    color: var(--acyl-dark);
    font-weight: 700;
    margin: 0;
}
 
/* Lead en granate para párrafo introductorio */
.lead-maroon {
    color: var(--acyl-maroon);
    font-weight: 600;
    font-size: 1.15em;
    line-height: 1.7;
    margin-bottom: 25px;
}
 
/* Sidebar sticky de páginas internas */
.sidebar-sticky {
    background: var(--acyl-bg-light);
    padding: 30px;
    border: 1px solid var(--acyl-border);
    position: sticky;
    top: 20px;
}
.sidebar-sticky h4 {
    color: var(--acyl-maroon);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}
.sidebar-sticky .btn-block {
    background: var(--acyl-maroon);
    color: #fff;
    font-weight: 700;
    padding: 12px;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 13px;
}
.sidebar-sticky .btn-block:hover {
    background: #9e0000;
    color: #fff;
}
.sidebar-sticky ul {
    padding: 0;
    list-style: none;
    font-size: 14px;
    color: var(--acyl-muted);
}
.sidebar-sticky ul li {
    margin-bottom: 10px;
}
.sidebar-sticky ul li i {
    margin-right: 8px;
    color: var(--acyl-maroon);
}
 
/* Blockquote de páginas internas */
.blockquote-acyl {
    border-left: 5px solid var(--acyl-maroon);
    background: #fdfdfd;
    padding: 20px 25px;
    font-style: italic;
    color: var(--acyl-text);
    margin: 30px 0;
}
 
/* CTA oscuro final (compartido en todas las páginas internas) */
.cta-dark {
    background-color: #1a1a1a;
    padding: 60px 0;
    color: #fff;
    text-align: center;
}
.cta-dark h2 {
    color: #fff;
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
}
.cta-dark p {
    font-size: 1.1em;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 30px;
}
.cta-dark .btn {
    background-color: var(--acyl-maroon);
    border: none;
    padding: 16px 45px;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    color: #fff;
}
.cta-dark .btn:hover {
    background-color: #9e0000;
    color: #fff;
}
 
 
/* ------------------------------------------------------------
   7. FOOTER
   ------------------------------------------------------------ */
.footer-acyl {
    background-color: #222;
    color: #fff;
    padding: 40px 0 0 0;
    border-top: 4px solid var(--acyl-maroon);
}
.footer-acyl h4 {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 20px;
}
.footer-acyl p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}
.footer-acyl a {
    color: #999;
}
.footer-acyl a:hover {
    color: #ccc;
}
.footer-bottom {
    background: #111;
    padding: 15px 0;
    color: #666;
    font-size: 12px;
    margin-top: 40px;
}
 
 
/* ------------------------------------------------------------
   8. COMPONENTES HOME: TRUST / RECOGNITION CARDS
   ------------------------------------------------------------ */
.trust-grid {
    margin-top: 50px;
    padding-bottom: 40px;
}
.trust-card {
    background: var(--acyl-bg-light);
    border: 1px solid var(--acyl-border);
    padding: 25px 15px;
    text-align: center;
    border-radius: 4px;
    height: 100%;
    transition: all 0.3s ease;
}
.trust-card:hover {
    border-color: var(--acyl-maroon);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.trust-card i {
    color: var(--acyl-maroon);
    font-size: 24px;
    margin-bottom: 15px;
}
.trust-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.trust-card p {
    font-size: 12px;
    color: var(--acyl-muted);
    line-height: 1.4;
    margin: 0;
}
.trust-card-link {
    text-decoration: none !important;
}
 
/* Trust bar horizontal */
.trust-bar {
    border-top: 1px solid var(--acyl-border);
    padding-top: 30px;
    margin-top: 40px;
}
.trust-title {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    color: #333;
    font-weight: 700;
    margin-bottom: 35px;
    display: inline-block;
    border-bottom: 2px solid var(--acyl-maroon);
    padding-bottom: 5px;
}
.trust-item {
    border-right: 1px solid var(--acyl-border);
    padding: 10px;
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--acyl-maroon); margin-bottom: 10px; font-size: 18px; }
.trust-item a { color: #333; font-weight: 600; font-size: 13px; }
.trust-item p { margin: 0; font-size: 13px; font-weight: 600; }
 
 
/* ------------------------------------------------------------
   9. COMPONENTES HOME: SECCIÓN DE SERVICIOS (CARDS)
   ------------------------------------------------------------ */
.service-card { padding: 15px; }
.card-inner {
    background: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    height: 100%;
    transition: 0.3s;
    border-radius: 4px;
}
.card-inner:hover {
    border-color: var(--acyl-maroon);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.card-inner i {
    color: var(--acyl-maroon);
    font-size: 30px;
    margin-bottom: 20px;
}
.card-inner h3 {
    color: var(--acyl-dark) !important;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.card-inner p {
    color: #333 !important;
    font-size: 15px;
    line-height: 1.6;
}
 
 
/* ------------------------------------------------------------
   10. COMPONENTES HOME: CAJA DE CASOS / PRESTIGE BOX
   ------------------------------------------------------------ */
.prestige-box-v2 {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-left: 5px solid var(--acyl-maroon);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.box-title {
    font-size: 1.2em;
    text-transform: uppercase;
    color: var(--acyl-maroon);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--acyl-border);
    padding-bottom: 10px;
}
.case-item-v2 { margin-bottom: 25px; }
.case-item-v2 strong {
    display: block;
    font-size: 16px;
    color: var(--acyl-dark);
    margin-bottom: 5px;
}
.case-item-v2 p {
    font-size: 15px;
    color: #444 !important;
    line-height: 1.6;
    margin: 0;
}
 
 
/* ------------------------------------------------------------
   11. COMPONENTES: TEXTO ACCESIBLE
   ------------------------------------------------------------ */
.lead-strong {
    font-size: 19px;
    color: var(--acyl-dark) !important;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 600;
}
.text-accessible {
    font-size: 16px;
    color: #333 !important;
    line-height: 1.8;
    margin-bottom: 15px;
}
 
 
/* ------------------------------------------------------------
   12. PÁGINA THE FIRM: BIOS EN TRES COLUMNAS
   ------------------------------------------------------------ */
.partner-col {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 25px;
}
.partner-col img {
    max-width: 120px;
    margin: 0 auto 20px;
    filter: grayscale(20%);
}
.partner-col h4 {
    font-weight: 700;
    color: var(--acyl-maroon);
    margin-bottom: 5px;
}
.partner-role {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--acyl-border);
    padding-bottom: 15px;
}
.partner-col p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    text-align: left;
}
 
 
/* ------------------------------------------------------------
   13. PÁGINA THE FIRM: BLOQUE DE RECONOCIMIENTOS (SIDEBAR)
   ------------------------------------------------------------ */
.recognition-sidebar {
    background: var(--acyl-bg-light);
    padding: 25px;
    border: 1px solid var(--acyl-border);
    position: sticky;
    top: 20px;
}
.recognition-sidebar h4 {
    color: var(--acyl-maroon);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}
.recognition-sidebar ul {
    padding: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1.6;
}
.recognition-sidebar ul li {
    margin-bottom: 20px;
}
.recognition-sidebar ul li strong {
    color: var(--acyl-dark);
    display: block;
    margin-bottom: 3px;
}
 
 
/* ------------------------------------------------------------
   14. FOTO CON PIE (Palacio de Justicia y similares)
   ------------------------------------------------------------ */
.photo-caption-wrap {
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}
.photo-caption-wrap img {
    width: 100%;
    filter: grayscale(20%) brightness(0.88);
}
.photo-caption-wrap .photo-caption-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    padding: 20px;
    color: #fff;
    font-size: 13px;
    font-style: italic;
}
 
 
/* ------------------------------------------------------------
   15. UTILIDADES
   ------------------------------------------------------------ */
.padt24 { padding-top: 24px; }
.padb24 { padding-bottom: 24px; }
.mtop08 { margin-top: 0.8em; }
.mtop16 { margin-top: 1.6em; }
.eu-badge { color: var(--acyl-maroon); font-weight: bold; margin-left: 10px; }