/* === ESTILOS DE ALINEACIÓN VISUAL EXACTA === */

/* --- HEADER --- */
.Header-Main-1 {
    background-color: #1a1a1a !important; /* Fondo oscuro como en la referencia */
    border-bottom: none !important; /* Sin borde inferior */
    box-shadow: none !important; /* Sin sombra */
}

.Header-Container-1 {
    height: 70px !important; /* Ajustar altura para que coincida con la referencia */
}

/* Logo */
.Header-LogoText-1 {
    color: #ffffff !important; /* Color de texto blanco */
    font-family: 'Montserrat', sans-serif !important; /* Fuente más robusta y moderna */
    font-weight: 700 !important;
    font-size: 1.6rem !important;
    text-transform: uppercase; /* Todo en mayúsculas */
    letter-spacing: 2px !important;
}

.Header-LogoText-1:hover {
    color: #ffd700 !important; /* Color dorado al pasar el ratón */
}

/* Navegación */
.Header-MenuItem-1 a {
    color: #ffffff !important; /* Color de texto blanco */
    text-transform: uppercase; /* Todo en mayúsculas */
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
}

.Header-MenuItem-1 a:hover {
    color: #ffd700 !important; /* Color dorado al pasar el ratón */
}

/* Eliminar la línea de subrayado y cambiarla por un cambio de color */
.Header-MenuItem-1 a::after {
    display: none !important; /* Ocultar la línea animada */
}

/* Estilos para el botón de menú móvil - NO LONGER NEEDED (hamburger menu removed) */
/* .Header-HamburgerLine-1 {
    background-color: #ffffff !important;
} */

/* --- FOOTER --- */
.Footer-Main-1 {
    margin-top: 0 !important; /* Eliminar margen superior para que se una al contenido */
}

/* Títulos de las secciones del footer */
.Footer-Title-1 {
    color: #ffd700 !important; /* Color dorado para los títulos */
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.3rem !important;
}

/* Enlaces del footer */
.Footer-ContactItem-1 a:hover,
.Footer-SocialLinks-1 a:hover,
.Footer-Links-1 a:hover {
    color: #ffd700 !important; /* Color dorado para el hover */
}

/* Iconos sociales */
.Footer-SocialLinks-1 a {
    font-size: 1.5rem; /* Aumentar tamaño de los emojis */
    text-decoration: none;
}

/* Copyright y enlaces legales */
.Footer-Bottom-1 {
    border-top: 1px solid #444 !important; /* Borde superior más sutil */
}

.Footer-Copyright-1,
.Footer-Links-1 a {
    color: #aaa !important; /* Color más claro para mejor legibilidad */
}

/* --- INDEX PAGE --- */

/* Hero Section */
.Home-Hero-Section {
    background-image: url('../img/Despacho_1.jpg'); /* Usando imagen existente */
    background-size: cover;
    background-position: center;
    position: relative;
    color: #000;
}

.Home-HeroOverlay-1 {
    background-color: rgba(10, 25, 47, 0.8);
    padding: 100px 20px;
    text-align: center;
}

.Home-Title-1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000 !important; /* Forzar el color blanco sobre el estilo en línea */
    margin-bottom: 15px;
}

.Home-Subtitle-1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #ffd700 !important; /* Forzar el color dorado sobre el estilo en línea */
    margin-bottom: 40px;
}

.Home-Statements-1 p {
    max-width: 700px;
    margin: 0 auto 15px auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.Home-Statement-Highlight-1 {
    font-weight: 700;
    color: #ffd700;
}

.Home-Statement-1 {
    font-weight: 700;
    font-size: 1.2rem !important;
    color: #ffd700 !important; /* Forzar el color dorado sobre el estilo en línea */
}

.Home-Quotes-1 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.Home-Quote-1 {
    font-style: italic;
    font-size: 1.1rem;
    color: #aaa;
}

.Home-Button-1 {
    background-color: #2196f3;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s, color 0.3s;
}

.Home-Button-1:hover {
    background-color: #ffd700;
    color: #1a1a1a;
}

/* Secciones generales */
.Index-Section-White {
    background-color: #000;
    padding: 80px 20px;
}

.Index-Section-Grey {
    background-color: #f4f4f4;
    padding: 80px 20px;
}

.Index-Container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Layout de dos columnas */
.two-columns {
    display: flex;
    align-items: center;
    gap: 60px;
}

.two-columns .column-text {
    flex: 1;
}

.two-columns .column-image {
    flex: 1;
    text-align: center;
}

.two-columns .column-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Tipografía de las secciones */
.Index-Section-Title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2196f3;
    margin-bottom: 20px;
}

.column-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.Index-Text-Link {
    color: #2196f3;
    text-decoration: none;
    font-weight: 600;
}

.Index-Text-Link:hover {
    text-decoration: underline;
}

/* Sección CTA (Call to Action) */
.Index-CTA-Section {
    background-color: #2196f3;
    color: #000;
    padding: 60px 20px;
    text-align: center;
}

.Index-CTA-Section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
}

.Index-CTA-Button {
    background-color: #000;
    color: #2196f3;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s, color 0.3s;
}

.Index-CTA-Button:hover {
    background-color: #ffd700;
    color: #1a1a1a;
}


/* --- CEO PAGE --- */

.CEO-Hero-Section {
    background-image: url('../img/ceo.jpg'); /* Usando imagen existente del CEO */
    background-color: #1a1a1a; /* Color de respaldo */
    background-size: cover;
    background-position: center;
    position: relative;
    color: #000;
    font-family: 'Montserrat', sans-serif;
}

.CEO-Hero-Overlay {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 80px 20px;
}

.CEO-Content-Wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.CEO-Intro-Title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4af37; /* Color dorado */
    margin-bottom: 10px;
}

.CEO-Name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.CEO-Bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.CEO-Quote {
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 700;
    color: #d4af37; /* Color dorado */
    margin-top: 40px;
    line-height: 1.7;
}

/* --- Responsive CEO Page --- */
@media (max-width: 768px) {
    .CEO-Hero-Overlay {
        padding: 60px 20px;
    }

    .CEO-Name {
        font-size: 2rem;
    }

    .CEO-Content-Wrapper {
        text-align: center;
    }
}


/* --- ABOUT US PAGE --- */

.About-Main {
    font-family: 'Montserrat', sans-serif;
}

.About-Intro-Section {
    background-color: #1a1a1a;
    color: #000;
    padding: 80px 20px;
    text-align: center;
}

.About-Container {
    max-width: 1100px;
    margin: 0 auto;
}

.About-Title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.About-Subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    color: #f0f0f0;
}

.About-Mission-Section, .About-Values-Section {
    padding: 80px 20px;
}

.About-Values-Section {
    background-color: #f4f4f4;
}

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

.column-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.About-Section-Title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.column-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.Values-Grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.Value-Item {
    background-color: #000;
    padding: 30px;
    border-radius: 8px;
}

.Value-Item h3 {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.Value-Item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* --- PRICING PAGE --- */

.Pricing-Main {
    background-color: #f4f4f4;
    padding: 80px 20px;
}

.Pricing-Container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.Pricing-Title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.Pricing-Subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.Pricing-Grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.Pricing-Card {
    background-color: #000;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.Pricing-Card.featured {
    border-color: #2196f3;
    border-width: 2px;
    position: relative;
}

.Pricing-Card.featured::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2196f3;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.Card-Title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.Card-Price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2196f3;
    margin-bottom: 10px;
}

.Card-Description {
    color: #555;
    margin-bottom: 30px;
    flex-grow: 1;
}

.Card-Features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
}

.Card-Features li {
    margin-bottom: 10px;
    color: #555;
}

.Card-Features .check {
    color: #2196f3;
    font-weight: 700;
    margin-right: 10px;
}

.Card-Button {
    display: block;
    background-color: #1a1a1a;
    color: #000;
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s;
}

.Card-Button:hover {
    background-color: #333;
}

.Pricing-Card.featured .Card-Button {
    background-color: #2196f3;
}

.Pricing-Card.featured .Card-Button:hover {
    background-color: #1976d2;
}


/* --- SPECIAL SERVICES PAGE (ACCORDION) --- */

.Special-Main {
    background-color: #000;
    padding: 80px 20px;
}

.Special-Container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.Special-Title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.Special-Subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.Accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.Accordion-Item {
    border-bottom: 1px solid #ddd;
}

.Accordion-Header {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    position: relative;
    padding-right: 40px; /* Espacio para el icono */
}

.Accordion-Header::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #2196f3;
    transition: transform 0.3s;
}

.Accordion-Item.active .Accordion-Header::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.Accordion-Content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.Accordion-Content p {
    padding-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}


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

.Services-Main {
    background-color: #f4f4f4;
    padding: 80px 20px;
}

.Services-Container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.Services-Title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.Services-Subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.Services-Grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.Service-Card {
    background-color: #000;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.Service-Icon {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1;
}

.Service-Card-Title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.Service-Card-Description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* --- Responsive CEO Page --- */
@media (max-width: 768px) {
    .CEO-Content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .CEO-Image-Wrapper {
        margin-bottom: 30px;
    }
}

/* Ajustes para móvil */
@media (max-width: 768px) {
    .two-columns {
        flex-direction: column;
    }
    /* Invertir el orden en la segunda sección de dos columnas */
    .Index-Section-Grey .two-columns {
        flex-direction: column-reverse;
    }
}

/* Basado en capturas PNG de referencia */

/* === IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* === VARIABLES GLOBALES === */
:root {
    /* Colores extraídos de capturas PNG */
    --color-primary: #0a0a0a;
    --color-secondary: #1a1a1a;
    --color-accent: #d4af37;
    --color-accent-secondary: #b8860b;
    --color-text: #e8e677;
    --color-text-secondary: #cccccc;
    --color-text-muted: #999999;
    --color-background: #0a0a0a;
    --color-surface: #1a1a1a;
    --color-surface-elevated: #2a2a2a;
    --color-border: #333333;
    --color-border-light: #444444;
    
    /* Tipografía */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    
    /* Espaciado */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Layout */
    --max-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* === RESET Y BASE === */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family-primary);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    font-weight: var(--font-weight-regular);
}

/* === HEADER === */
.header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--color-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: var(--font-weight-regular);
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.hero-cta {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
    border: 2px solid var(--color-accent);
}

.hero-cta:hover {
    background: transparent;
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* === SECTIONS === */
.section {
    padding: var(--spacing-3xl) 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: var(--font-weight-light);
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* === CARDS === */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    color: var(--color-accent);
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* === LISTS === */
.custom-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-xl) 0;
}

.custom-list li {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
    position: relative;
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-medium);
}

.custom-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: var(--font-weight-bold);
}

/* === HIGHLIGHTS === */
.highlight {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-bold);
}

.quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-accent);
    text-align: center;
    margin: var(--spacing-xl) 0;
    font-weight: var(--font-weight-semibold);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: var(--spacing-xl) 1rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
