:root {
    --primary: #0a192f;   /* Azul Marino Profundo */
    --gold: #c5a059;      /* Dorado Elegante */
    --gold-light: #d4af37;
    --text: #333333;
    --text-light: #666666;
    --bg-paper: #f9f7f2;  /* Fondo hueso sutil */
    --white: #ffffff;
}

/* --- ESTILOS GENERALES Y TARJETAS --- */
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    margin: 0; 
    color: var(--text); 
    line-height: 1.6; 
}

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 4px;
    border: 1px solid #eee;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icon-service {
    font-size: 2.5rem !important;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: bold;
    margin-top: 0;
}

.card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- GRID Y LAYOUT --- */
.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.main-nav {
    background: var(--primary);
    padding: 1rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* --- HOME PAGE STYLES --- */

/* Hero Home */
.hero-home {
    height: 85vh;
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), 
                url('https://picsum.photos/seed/law-building/1920/1080');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: left;
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

.hero-home h1 {
    font-size: 4.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-home p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* Trust Bar */
.trust-bar {
    background: var(--primary);
    padding: 60px 0;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* Practice Areas Home */
.practice-areas-home {
    padding: 120px 0;
    background: var(--bg-paper);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.gold-text {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.8rem;
}

.practice-card {
    background: white;
    padding: 50px 40px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.practice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.practice-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.practice-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

/* Why Us Section */
.why-us {
    padding: 120px 0;
    background: white;
}

.why-image {
    position: relative;
    padding-right: 40px;
}

.why-image img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 20px 20px 0px var(--bg-paper);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: 10px;
    background: var(--gold);
    padding: 30px;
    color: var(--primary);
    text-align: center;
}

.badge-year {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.why-content h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.check-list i {
    color: var(--gold);
}

/* --- BOTÓN DARK --- */
.btn-dark {
    display: inline-block;
    background-color: #0a192f; /* El azul marino profundo de la firma */
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #0a192f;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-dark:hover {
    background-color: transparent;
    color: #0a192f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 25, 47, 0.1);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto;
}

.stars {
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-item p {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.4;
}

.client-name {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    text-align: center;
    background: var(--bg-paper);
}

.btn-gold-large {
    display: inline-block;
    background: var(--gold);
    color: var(--primary);
    padding: 22px 60px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-top: 40px;
    transition: background 0.3s;
}

.btn-gold-large:hover {
    background: var(--gold-light);
}

/* Grid Utilities */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; align-items: center; }

@media (max-width: 768px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .hero-home h1 { font-size: 3rem; }
    .hero-btns { flex-direction: column; }
}

/* --- FORMULARIO --- */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: bold; margin-bottom: 8px; color: var(--primary); }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    box-sizing: border-box;
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

/* --- SERVICES PAGE STYLES --- */

.services-hero {
    padding: 120px 0 80px;
    background: var(--bg-paper);
    text-align: center;
}

.services-hero .subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: block;
}

.services-hero h1 {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.hero-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Service Rows */
.services-detail {
    padding: 100px 0;
    background: white;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.service-row.reverse {
    direction: ltr;
}

.service-row.reverse .service-text {
    order: 2;
}

.service-row.reverse .service-image {
    order: 1;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.service-text h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-text .lead {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 25px;
}

.service-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-list li {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

.service-list i {
    font-size: 0.7rem;
    color: var(--gold);
}

.service-image img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--primary);
    color: white;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-center h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-item {
    position: relative;
    padding-top: 40px;
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(197, 160, 89, 0.2);
    position: absolute;
    top: -10px;
    left: 0;
    font-weight: 700;
}

.process-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.process-item p {
    opacity: 0.7;
    font-weight: 300;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-paper);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-light);
    font-weight: 300;
}

/* CTA Services */
.cta-section-services {
    padding: 100px 0;
    text-align: center;
    background: white;
}

.cta-section-services h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.cta-section-services p {
    margin-bottom: 40px;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 992px) {
    .service-row, .process-grid, .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .service-row.reverse .service-text { order: 1; }
    .service-row.reverse .service-image { order: 2; }
    .services-hero h1 { font-size: 3rem; }
}

/* --- TABLA LEAD MANAGER (CAMBIOS DE CENTRADO AQUÍ) --- */

table { 
    table-layout: fixed !important; 
    width: 100% !important; 
    border-collapse: collapse;
}

th { 
    text-align: center !important; /* Centrado horizontal encabezado */
    background: var(--primary); 
    color: white; 
    padding: 15px; 
    font-size: 0.9em; 
}

td { 
    padding: 15px; 
    border-bottom: 1px solid #eee; 
    vertical-align: middle !important; /* Centrado VERTICAL */
    text-align: center !important;    /* Centrado HORIZONTAL */
}

/* Asegurar que el nombre y email se centren */
td div, td small {
    text-align: center !important;
}

.mensaje-recortado, .mensaje-expandido {
    max-height: 80px;
    overflow: hidden; 
    display: block;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important; 
    word-break: break-all !important;
    text-align: center !important; /* Centrado del texto del mensaje */
    margin: 0 auto;
}

.mensaje-expandido { max-height: none !important; }

.btn-leer-mas { 
    display: inline-block; 
    margin-top: 8px; 
    color: var(--primary); 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 0.8em; 
}

/* Seguimiento y Botón Save */
.nota-area { 
    width: 100%; 
    border: 1px solid #ddd; 
    border-radius: 6px; 
    padding: 10px; 
    font-size: 0.85em; 
    box-sizing: border-box; 
    min-height: 80px; 
}

.btn-save { 
    background: var(--primary); 
    color: white; 
    border: none; 
    padding: 8px 12px; 
    border-radius: 5px; 
    margin: 8px auto 0 !important; /* Centrado horizontal del botón */
    cursor: pointer; 
    font-size: 0.8em; 
    font-weight: bold; 
    display: inline-block; 
    float: none !important;        /* Quitamos el float para que se centre */
}

/* Botón Acción Cuadrado */
.btn-square { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    width: 30px; 
    height: 30px; 
    border: 2px solid var(--primary); 
    border-radius: 5px; 
    text-decoration: none; 
    color: var(--primary);
    margin: 0 auto !important; /* Centrado del cuadrado */
    transition: 0.2s;
}

.btn-square:hover { background: var(--primary); color: white; }

/* Estados */
.status-revisado { background: rgba(46, 125, 50, 0.1); color: #2e7d32; padding: 5px 10px; border-radius: 5px; font-weight: bold; font-size: 0.8em; }
.status-pendiente { background: rgba(178, 31, 31, 0.1); color: #b21f1f; padding: 5px 10px; border-radius: 5px; font-weight: bold; font-size: 0.8em; }

/* --- PAGINACIÓN --- */
.pagination-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 25px;
    gap: 5px;
}

.page-link {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-decoration: none;
    color: #1a2a6c;
    font-weight: bold;
    font-size: 0.9em;
    transition: all 0.2s;
}

.page-link:hover { background: #f0f0f0; }
.page-link.active { background: #1a2a6c; color: white; border-color: #1a2a6c; }
.page-info { margin-left: 15px; font-size: 0.75em; color: #999; font-weight: 500; }

/* --- ESTILOS ESPECÍFICOS PARA QUIÉNES SOMOS --- */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.value-card {
    border-top: 4px solid var(--gold);
}

.grid-team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.member-role {
    display: block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.member-info p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
}

/* Estilos Generales */
.about-container {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--bg-paper);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, .font-serif {
    font-family: 'Playfair Display', serif;
}

.italic { font-style: italic; }
.accent { color: var(--gold); }

/* Hero Section */
.about-hero {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
}

.about-hero .subtitle {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-light);
    font-weight: 300;
}

/* Mission Section (FIXED) */
.mission-section {
    padding: 80px 0;
    background: var(--white);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gold-line {
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 25px;
}

.mission-content h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.mission-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.link-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.mission-image-wrapper {
    position: relative;
}

.mission-img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

.deco-box {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--gold);
    top: -20px;
    right: -20px;
    z-index: 1;
}

/* Valores */
.values-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 15px auto 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--white);
}

.grid-2-narrow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.attorney-card {
    text-align: left;
}

.attorney-image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 25px;
}

.attorney-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attorney-card:hover .attorney-image img {
    transform: scale(1.05);
}

.attorney-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.role {
    display: block;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.attorney-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.attorney-social a {
    width: 35px;
    height: 35px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.attorney-social a:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--primary);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-gold:hover {
    background: var(--gold-light);
}

/* Responsive */
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-2-narrow {
        grid-template-columns: 1fr;
    }
    .about-hero h1 { font-size: 2.5rem; }
}

/* --- FOOTER MEJORADO --- */
.main-footer {
    background-color: #0a192f;
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
    font-family: 'Inter', sans-serif; /* Fuente moderna */
    -webkit-font-smoothing: antialiased;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 0.5fr 1.5fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

/* Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo i {
    color: #c5a059;
    font-size: 1.8rem; /* Icono del mazo más grande */
}

/* --- LOGO DEL FOOTER (Fondo Oscuro) --- */
.main-footer .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff; /* Color blanco para el fondo oscuro */
}

.main-footer .logo-text .gold {
    color: #c5a059; /* El "LAW" se mantiene dorado */
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 350px;
    font-weight: 300;
}

/* Títulos */
.footer-title {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px; /* Más espacio entre letras */
    margin-bottom: 35px;
}

/* Listas */
.contact-list, .footer-links {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center; /* Alinea icono con texto */
    gap: 15px;
    margin-bottom: 22px;
    font-size: 0.95rem;
}

.contact-list i {
    color: #c5a059;
    width: 20px; /* Ancho fijo para que el texto se alinee verticalmente */
    text-align: center;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover, .footer-links a.active-link {
    color: #c5a059;
}

/* Línea y Copyright */
.footer-hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

/* --- HEADER PRESTIGE STYLES --- */

.main-header {
    background-color: rgba(255, 255, 255, 0.95); /* Fondo blanco casi opaco */
    backdrop-filter: blur(10px); /* Efecto de desenfoque moderno */
    border-bottom: 1px solid rgba(10, 25, 47, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0a192f;
}

.logo i {
    color: #c5a059;
    font-size: 1.6rem;
}
/* --- LOGO DEL HEADER (Fondo Claro) --- */
.main-header .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0a192f; /* Color oscuro para que se vea en el fondo blanco */
}

.main-header .logo-text .gold {
    color: #c5a059; /* El "LAW" se mantiene dorado */
}

/* Enlaces de Navegación */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #0a192f;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #c5a059;
}

/* Botón Contact Us */
.btn-nav {
    background-color: #0a192f;
    color: #ffffff !important;
    padding: 12px 25px;
    border-radius: 2px;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(10, 25, 47, 0.15);
}

.btn-nav:hover {
    background-color: #c5a059 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.2);
}

/* Log In (Admin) */
.admin-login {
    color: #7f8c8d !important; /* Gris elegante */
    font-size: 0.75rem !important;
    border-left: 1px solid #eee;
    padding-left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-login i {
    font-size: 0.7rem;
}

.admin-login:hover {
    color: #0a192f !important;
}

/* Menú Móvil */
.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    color: #0a192f;
    cursor: pointer;
}

/* Responsivo */
@media (max-width: 992px) {
    .nav-links {
        display: none; /* Aquí podrías implementar un menú lateral */
    }
    .mobile-menu-icon {
        display: block;
    }
}