/* --- Estilos base y variables --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2b2b2b;
    line-height: 1.6;
    background-color: #fcfcfc;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* --- Menú superior fijo --- */
.web-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #212121;
    color: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 16pt;
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffb300;
}

.nav-contact-top a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 11pt;
    transition: color 0.2s;
}

.nav-contact-top a:hover {
    color: #ffb300;
}

/* --- Hero / Sección Portada --- */
.web-hero {
    background-color: #f5f5f5;
    padding: 100px 20px 60px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    width: 154px;
    height: auto;
    margin-bottom: 30px;
}

.hero-badge {
    background-color: #b71c1c;
    color: #ffffff;
    padding: 6px 14px;
    font-size: 9.5pt;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48pt;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 16pt;
    color: #555555;
    margin: 0 0 40px 0;
    font-weight: 400;
}

.hero-accent-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-left: 5px solid #ffb300;
    padding: 20px;
    border-radius: 4px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.hero-accent-box p {
    margin: 10px 0;
    font-size: 11pt;
    color: #333333;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-accent-box i {
    color: #b71c1c;
    font-size: 14pt;
}

/* --- Contenedor principal de lectura --- */
.web-main-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.web-section {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
}

/* --- Títulos (Sentence case estricto por CSS y texto) --- */
h1 {
    font-size: 22pt;
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid #b71c1c;
    font-weight: 700;
}

h2 {
    font-size: 15pt;
    color: #b71c1c;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: bold;
    border-left: 4px solid #ffb300;
    padding-left: 12px;
}

h3 {
    font-size: 12.5pt;
    color: #212121;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: bold;
}

p {
    margin-bottom: 18px;
    text-align: justify;
    color: #444444;
}

ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

li {
    margin-bottom: 8px;
    color: #444444;
}

/* --- Grillas y Cards Responsivas --- */
.web-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.web-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.web-card {
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.web-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.03);
}

.web-card-title {
    font-weight: bold;
    color: #b71c1c;
    font-size: 12pt;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.web-card-title i {
    font-size: 15pt;
    color: #ffb300;
}

.web-card-mini {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
}

.red-top { border-top: 4px solid #b71c1c; }
.yellow-top { border-top: 4px solid #ffb300; }
.charcoal-top { border-top: 4px solid #212121; }

.web-card-mini strong {
    display: block;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.web-card-mini p {
    font-size: 10pt;
    margin: 0;
}

/* --- Highlight boxes --- */
.web-highlight-box {
    background-color: #f9f9f9;
    border-left: 5px solid #b71c1c;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 6px 6px 0;
}

.yellow-border { border-left-color: #ffb300; }
.red-border { border-left-color: #b71c1c; }

.highlight-title {
    font-weight: bold;
    color: #1a1a1a;
    font-size: 11pt;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-title i {
    font-size: 14pt;
    color: #b71c1c;
}

.web-highlight-box p {
    margin: 0;
    font-size: 10.5pt;
}

/* --- Lista Financiera --- */
.web-financial-list {
    margin: 25px 0;
}

.financial-item {
    background: #fdfdfd;
    border: 1px solid #e8e8e8;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bullet-red, .bullet-yellow, .bullet-charcoal, .bullet-grey {
    width: 12px;
    height: 12px;
    border-radius: 5px;
    flex-shrink: 0;
}
.bullet-red { background-color: #b71c1c; }
.bullet-yellow { background-color: #ffb300; }
.bullet-charcoal { background-color: #212121; }
.bullet-grey { background-color: #777777; }

/* --- Tablas --- */
.web-table-container {
    overflow-x: auto;
    margin: 25px 0;
}

.web-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.web-table th {
    background-color: #212121;
    color: #ffffff;
    padding: 14px;
    font-size: 11pt;
    font-weight: bold;
    text-align: left;
}

.web-table td {
    padding: 14px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 10.5pt;
    text-align: left;
}

.web-table tr:hover {
    background-color: #f9f9f9;
}

/* --- Grilla de Precios --- */
.web-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.pricing-card.featured {
    border: 2px solid #b71c1c;
    box-shadow: 0 4px 20px rgba(183,28,28,0.08);
}

.pricing-header {
    background-color: #212121;
    color: #ffffff;
    padding: 15px;
    font-weight: bold;
    font-size: 12pt;
    letter-spacing: 1px;
}

.pricing-card.featured .pricing-header {
    background-color: #b71c1c;
}

.pricing-body {
    padding: 30px 20px;
}

.plan-files {
    display: block;
    font-weight: bold;
    font-size: 12pt;
    color: #333333;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 28pt;
    font-weight: 800;
    color: #212121;
    margin-bottom: 15px;
}

.plan-period {
    display: block;
    font-size: 9pt;
    color: #666666;
    line-height: 1.4;
}

.color-red { color: #b71c1c !important; }
.pricing-note {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 6px;
    font-size: 9.5pt;
    color: #555555;
    margin-top: 20px;
}

/* --- Footer de sección Empresa --- */
.web-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.footer-info-table p {
    margin: 8px 0;
    border-bottom: 1px dashed #e0e0e0;
    padding-bottom: 6px;
}

.footer-cta-box {
    background-color: #fffde7;
    border: 1px solid #ffb300;
    border-radius: 6px;
    padding: 25px;
}

.footer-cta-box strong {
    display: block;
    font-size: 12pt;
    color: #b71c1c;
    margin-bottom: 10px;
}

.footer-cta-box p {
    margin: 0;
    font-size: 10pt;
    color: #333333;
}

/* --- Helpers de texto --- */
.txt-red { color: #b71c1c; font-weight: bold; }
.txt-yellow { color: #f59e0b; font-weight: bold; }
.txt-charcoal { color: #212121; font-weight: bold; }
.txt-grey { color: #666666; font-weight: bold; }
.font-bold { font-weight: bold; }

/* --- Footer inferior global --- */
.web-footer-bottom {
    background-color: #212121;
    color: #888888;
    text-align: center;
    padding: 20px;
    font-size: 9pt;
    margin-top: 60px;
    border-top: 3px solid #b71c1c;
}

.web-footer-bottom p {
    margin: 0;
    text-align: center;
    color: #888888;
}

/* --- Adaptabilidad móvil extra --- */
@media (max-width: 600px) {
    .hero-title { font-size: 32pt; }
    .hero-subtitle { font-size: 13pt; }
    .web-section { padding: 20px; }
    h1 { font-size: 18pt; }
}
