/* Reset y Variables - Manteniendo estilo original */
:root {
    --primary-color: #2c5f8d;
    --primary-dark: #1e4466;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* Header - Estilo original */
.header {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
    color: white;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 0.5rem 0;
}

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

.nav ul { list-style: none; display: flex; gap: 2rem; margin: 0; padding: 0; }
.nav a { color: rgba(255, 255, 255, 0.9); text-decoration: none; font-weight: 500; font-size: 0.9rem; padding: 0.5rem 0; }
.nav a:hover { color: var(--accent-color); }


.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--accent-color); }


/* Hero Section - Estilo original */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://redcorredoresdepropiedades.cl/wp-content/uploads/2025/09/Caza-Talentos-HeadHunting-para-Corredores-de-propiedades.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.65;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(20, 30, 48, 0.85) 0%, rgba(30, 40, 60, 0.65) 40%, rgba(40, 50, 70, 0.35) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.info-item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons - Estilo original */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Sections */
.section {
    padding: 5rem 0;
    background: white;
}

.section:nth-child(even) {
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 400;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin: 3rem 0 2rem;
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.feature-icon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon .material-symbols-outlined {
    font-size: 3.5rem;
    color: var(--accent-color);
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Reportes Section */
.reporte-destacado {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.reporte-content {
    display: flex;
    flex-direction: column;
}

.badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.reporte-content h3 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 700;
}

.insights-list {
    list-style: none;
    margin: 2rem 0;
}

.insights-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.insights-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.cta-group.center {
    justify-content: center;
    margin: 2rem 0;
}

.reporte-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 2rem;
}

.chart-container {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.chart-container canvas {
    width: 100% !important;
    height: auto !important;
}

/* Comparativa Section */
.comparativa-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.feature-item .icon {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.comparativa-table-container {
    margin-top: 3rem;
    text-align: center;
}

.table-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.comparativa-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
}

.comparativa-table thead {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.comparativa-table th,
.comparativa-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparativa-table tbody tr:hover {
    background: var(--bg-light);
}

.table-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    font-style: italic;
}

/* Noticias Section */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.noticia-card {
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    min-height: 350px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.noticia-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.noticia-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 32, 44, 0.3) 0%, rgba(26, 32, 44, 0.85) 100%);
    z-index: 1;
}

.noticia-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: white;
}

.noticia-tag {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.noticia-card h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.noticia-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.link-arrow {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
}

.link-arrow:hover {
    transform: translateX(5px);
    display: inline-block;
    color: var(--accent-color);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.blog-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 32, 44, 0.9) 0%, rgba(26, 32, 44, 0.3) 100%);
    padding: 1rem 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: white;
    margin: 0;
}

.blog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.blog-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Encuesta Section */
.encuesta {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.encuesta-stats {
    text-align: center;
    margin: 3rem 0;
}

.stat-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--accent-color);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1rem;
}

.encuesta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.encuesta-beneficios h3 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.beneficios-list {
    list-style: none;
}

.beneficios-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.beneficios-list .icon {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.encuesta-cta-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--border-color);
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.beneficios-extra {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.beneficios-extra p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.encuesta-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.encuesta-footer a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.encuesta-footer a:hover {
    text-decoration: underline;
}

/* Suscripción Section */
.suscripcion {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.suscripcion .section-title {
    color: white;
}

.suscripcion-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.suscripcion-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.suscripcion-info .beneficios-list {
    list-style: none;
}

.suscripcion-info .beneficios-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.suscripcion-info .icon {
    color: var(--accent-color);
    font-weight: bold;
}

.suscripcion-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.suscripcion-form h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-disclaimer {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.5;
}

/* Cierre Section */
.cierre-tagline {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-top: 2rem;
}

.testimonios {
    margin-top: 4rem;
}

.testimonios-title {
    text-align: center;
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.testimonio-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-color);
}

.testimonio-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonio-author {
    color: var(--text-light);
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-about p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links h4,
.footer-legal h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 968px) {
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .reporte-destacado,
    .encuesta-content,
    .suscripcion-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .noticias-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Página de noticia individual ===== */

.single-article-page {
  padding-top: 100px;
  background: var(--bg-light);
  padding-bottom: 4rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: #4b5563;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 0.25rem;
}

/* Hero de la noticia */

.single-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .single-hero {
    min-height: 260px;
  }
}

.single-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,0,0,0.3), rgba(0,0,0,0.75));
}
/* Header del post debajo de la imagen */
.single-post-header{
  margin: 0 0 1.75rem;
}

/* Reutilizas tu tag */
.single-post-header .noticia-tag{
  margin-bottom: 0.75rem;
}

/* Título grande, en negrita y oscuro (ya no blanco) */
.single-post-header .single-title{
  color: #111827;            /* casi negro */
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.5px;
}

/* Meta (autor/fecha) debajo del título */
.single-post-header .single-meta{
  color: #6b7280;
  font-size: 0.95rem;
  opacity: 1;               /* antes lo tenías para blanco */
  margin-bottom: 1rem;
}

/* Bajada / resumen */
.single-excerpt{
  font-size: 1.05rem;
  line-height: 1.7;
  color: #374151;
  margin: 0 0 1.25rem;
}

/* Responsive */
@media (max-width: 768px){
  .single-title--below{
    font-size: 1.7rem;
  }
  .single-hero-badge{
    left: 1rem;
    bottom: 1rem;
  }
}

.single-hero-content {
  position: relative;
  padding: 2rem 2rem;
  color: #fff;
  z-index: 1;
}
/* badge dentro del hero */
.single-hero-badge{
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem; /* si lo quieres arriba cambia a top: 1.5rem; y quita bottom */
  z-index: 2;
}

.single-hero .noticia-tag {
  display: inline-block;
  background: #f97316;
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.single-title {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.single-meta {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
}

.single-meta--below{
  font-size: 0.95rem;
  opacity: 0.85;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* Cuerpo */

.single-body{
  max-width: 1000px;      
  margin: 0 auto 3rem;
  padding: 0 12px;      
}
.single-body-header{
  margin: 0 0 1.5rem;
}
.single-title--below{
  color: #111827;
  font-size: 2.2rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 0.75rem;
}


.single-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
}

.single-content p {
  margin: 0 0 1.9rem;   /* más separación entre párrafos */
}

.single-content h2,
.single-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.single-content ul,
.single-content ol {
  margin: 0.75rem 0 1.9rem 1.5rem; /* lista más separada y con sangría */
}

/* Botón volver */

.single-article-page .noticia-tag {
    margin-top: 0.75rem;
}

.single-back {
  margin-top: 2rem;
  text-align: left;     /* o center si quieres centrarlo */
}

.single-back .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.single-back .btn.btn-secondary {
  background: var(--accent-color);   /* NARANJO del tema */
  color: #fff;
  border-color: var(--accent-color);
  box-shadow: none;
}

.single-back .btn.btn-secondary:hover {
  background: #cf6a16;               /* un naranjo un poco más oscuro */
  border-color: #cf6a16;
  transform: translateY(-2px);
}



