/* CSS específico para página de Precios */
/* Basado en el análisis de tv/precios/index.html */

/* Variables de colores extraídas del original */
:root {
    --wsw-17: #000; /* Color principal para títulos (blanco/claro) */
    --wsw-23: #f4d03f; /* Color de marca/acento (dorado/amarillo) */
    --wsw-33: #e8c547; /* Color secundario para texto destacado */
    --wsw-27: #d4af37; /* Color para títulos especiales */
    --wsw-10: #333333; /* Color de texto base */
    --wsw-13: #666666; /* Color para texto importante */
    --wsw-09: #999999; /* Color para texto descriptivo */
    --container-width: 1200px;
    --section-padding: 60px; /* Exact 60px spacing as specified in task */
    --overlay-black: rgba(0, 0, 0, 0.6);
}

/* Reset y base */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--wsw-10);
    margin: 0;
    padding: 0;
}

/* Container común */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section con imagen de fondo Justicia_1.jpg */
.hero-section {
    background-image: url('../img/Justicia_1.jpg');
    background-position: center center; /* bgpos-center-center */
    background-size: cover;
    background-attachment: scroll; /* bgatt-scroll */
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay negro (overlay-black) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay-black);
    z-index: 1;
}

/* Contenido del hero */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--wsw-17);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Contenido principal */
.main-content {
    padding: var(--section-padding) 0;
    background-color: #000;
}

.content-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 95%; /* Layout al 95% con espaciado lateral del 5% */
}

/* Título principal con emoji */
.main-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--wsw-10);
    text-align: center;
    margin-bottom: 30px;
}

.highlight-primary {
    color: var(--wsw-17);
    background-color: var(--wsw-10);
    padding: 5px 10px;
    border-radius: 5px;
}

.highlight-accent {
    color: var(--wsw-23);
    font-weight: bold;
}

/* Texto introductorio */
.intro-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
    color: var(--wsw-13);
}

/* Caja de información */
.info-box {
    background-color: #000;
    border-left: 4px solid var(--wsw-23);
    padding: 20px;
    margin: 30px 0;
    font-size: 1.5rem;
    line-height: 1.8;
    border-radius: 5px;
}

/* Sección Premium */
.premium-section {
    margin: 50px 0;
    padding: 40px;
    background-color: #000;
    border-radius: 10px;
    border: 2px solid var(--wsw-23);
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--wsw-10);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--wsw-13);
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

.service-description {
    background-color: #000;
    border-left: 4px solid var(--wsw-33);
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    text-align: center;
}

/* Fases del servicio */
.service-phase {
    margin: 30px 0;
    padding: 25px;
    background-color: #000;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.service-phase h3 {
    color: var(--wsw-10);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--wsw-23);
    margin: 15px 0;
}

.service-phase ul {
    margin: 15px 0;
    padding-left: 20px;
}

.service-phase li {
    margin: 8px 0;
    color: var(--wsw-13);
}

.phase-quote {
    background-color: #000000;
    border-left: 3px solid var(--wsw-23);
    padding: 15px;
    margin: 15px 0;
    font-style: italic;
    text-align: center;
    color: var(--wsw-13);
}

/* Sección de servicios generales */
.services-section {
    margin: 50px 0;
}

.service-item {
    margin: 40px 0;
    padding: 30px;
    background-color: #000;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    font-size: 1.4rem;
    color: var(--wsw-10);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--wsw-23);
    margin: 10px 0;
    line-height: 1.4;
}

.service-quote {
    background-color: #000;
    border-left: 3px solid var(--wsw-33);
    padding: 15px;
    margin: 15px 0;
    font-style: italic;
    color: var(--wsw-13);
}

/* Nota de seguros */
.insurance-note {
    margin: 40px 0;
    padding: 20px;
    background-color: #000000;
    border: 1px solid #ffeaa7;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--wsw-13);
}

/* Sección confidencial */
.confidential-section {
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, #686868 0%, #000000 100%);
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--wsw-23);
}

.confidential-title {
    font-size: 2rem;
    color: var(--wsw-33);
    margin-bottom: 20px;
    font-weight: bold;
}

.confidential-subtitle {
    font-size: 1.2rem;
    color: var(--wsw-27);
    margin-bottom: 15px;
    line-height: 1.5;
}

.confidential-cta {
    font-size: 1.4rem;
    color: var(--wsw-27);
    margin-top: 30px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .content-container {
        width: 100%;
        padding: 0 15px;
    }
    
    .premium-section,
    .service-item {
        padding: 20px;
    }
    
    .confidential-section {
        padding: 30px 20px;
    }
    
    .confidential-title {
        font-size: 1.6rem;
    }
    
    .service-item h3 {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .service-phase,
    .service-item {
        padding: 15px;
    }
}