:root {
    /* Color Palette */
    --bg-dark: #0f1219;
    --bg-nav: #080a0e;
    --accent: #FFD600; /* Vibrant Yellow from the image */
    --text-main: #FFFFFF;
    --text-muted: #D1D5DB;
    --card-bg: #1a1e29;
    --card-border: rgba(255, 255, 255, 0.05);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* --- Decorative Backgrounds --- */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.35;
    animation: floatShape 12s infinite alternate ease-in-out;
    pointer-events: none;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background-color: var(--accent);
    top: -150px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background-color: #FF5E00; /* Naranja Vibrante */
    top: 25%;
    left: -150px;
    animation-delay: -3s;
}

.shape-3 {
    width: 600px;
    height: 600px;
    background-color: #00E5FF; /* Cian Neón */
    bottom: 20%;
    right: -200px;
    animation-delay: -7s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background-color: #9D00FF; /* Púrpura Profundo */
    top: 60%;
    left: 10%;
    animation-delay: -5s;
    opacity: 0.25;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 60px) scale(1.1); }
}

/* --- Typography --- */
h1, h2, h3, .logo-text {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.accent {
    color: var(--accent);
}

/* --- Navbar --- */
.navbar {
    background-color: var(--bg-nav);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-circle {
    background-color: var(--accent);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    letter-spacing: -1px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* --- Navigation Links --- */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

.nav-links a.btn-nav-action {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.nav-links a.btn-nav-action:hover {
    background: #ffec3b;
    box-shadow: 0 0 15px rgba(255, 214, 0, 0.4);
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 6rem 0 8rem;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center right;
    z-index: 0;
}

@media (max-width: 768px) {
    .hero-bg-overlay {
        background-position: 30% center;
    }
}

.hero-bg-1 {
    background-image: url('heo1.jpg');
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -1px;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-main);
    max-width: 600px;
    margin-bottom: 3rem;
    font-weight: 500;
    background: rgba(15, 18, 25, 0.75);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: #FFFFFF;
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

.btn-primary:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
    box-shadow: 0 4px 20px rgba(255, 214, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

/* --- About Section --- */
.about-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

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

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text p strong {
    color: var(--text-main);
}

.about-image {
    background: linear-gradient(145deg, var(--card-bg), #11141d);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* --- Services & Pricing --- */
.services-section {
    padding: 5rem 0;
    background-color: var(--bg-dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
}

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

/* --- Modals --- */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-dark);
    border: 1px solid var(--accent);
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

/* Custom scrollbar para el modal */
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}
.modal-content::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.close-btn:hover {
    color: var(--accent);
}

@keyframes modalSlideIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* --- Service Cards Redesign --- */
.service-card-redesign {
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #11141d, #1a1e29);
    border: 2px solid rgba(255, 214, 0, 0.2);
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card-redesign:hover {
    transform: scale(1.05) rotate(-1deg);
    border-color: var(--accent);
    box-shadow: 0 15px 35px rgba(255, 214, 0, 0.2);
}

.service-card-redesign .bg-text {
    position: absolute;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    top: -10px;
    left: -20px;
    transform: rotate(-10deg);
    pointer-events: none;
    font-family: var(--font-heading);
}

.scatter-title {
    position: relative;
    z-index: 2;
    text-align: center;
    font-family: var(--font-heading);
}

.scatter-title span {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
}

.scatter-title .word-1 {
    color: #fff;
    transform: translateX(-15px) rotate(-3deg);
}

.scatter-title .word-2 {
    color: var(--accent);
    transform: translateX(15px) rotate(2deg);
    margin-top: 5px;
}

.service-summary-redesign {
    position: relative;
    z-index: 2;
    margin-top: 2.5rem;
    color: var(--text-main);
    background: rgba(255, 214, 0, 0.1);
    border: 1px solid rgba(255, 214, 0, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.features-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

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

.pricing-box {
    background-color: rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.03);
}

.pricing-box h4 {
    font-family: var(--font-heading);
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.price-label {
    font-weight: 500;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.price-value small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

.price-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-style: italic;
}

.price-extra p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.operation-mode h5 {
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.operation-mode p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Trusted Companies Marquee --- */
.trusted-section {
    padding: 3rem 0 5rem;
    background-color: transparent;
    overflow: hidden;
}

.trusted-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.company-logo {
    padding: 1rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.company-logo:hover {
    color: var(--accent);
    background: rgba(255, 214, 0, 0.1);
    border-color: var(--accent);
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Contact Section --- */
.contact-section {
    padding: 4rem 0 8rem;
}

.contact-card {
    background: linear-gradient(145deg, var(--card-bg), #11141d);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
}

.contact-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-desc {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 2.5rem;
    background: rgba(255, 214, 0, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-info span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info a, .contact-info p {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

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

.signature {
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.greeting {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.name {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--accent);
}

.title {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* --- Footer --- */
footer {
    background-color: var(--bg-nav);
    padding: 4rem 0 3rem;
    color: var(--text-muted);
    border-top: 1px solid var(--card-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.footer-logo {
    justify-content: center;
    margin-bottom: 0.5rem;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-text p {
    margin: 0;
}

/* --- Calculadoras --- */
.calculator-section {
    padding: 2rem 0 5rem;
    background-color: var(--bg-nav);
}

.calculator-card.calc-redesign {
    background: linear-gradient(180deg, #181c25, #0a0c11);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
}

.calc-header {
    background: linear-gradient(90deg, rgba(255, 214, 0, 0.1), transparent);
    border-bottom: 1px solid rgba(255, 214, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.calc-icon {
    font-size: 2.5rem;
}

.calc-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.range-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.range-header label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.range-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
}

.modern-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
    transition: var(--transition);
}

.modern-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 214, 0, 0.5);
    border: 3px solid #0a0c11;
}

.modern-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 214, 0, 0.8);
}

.calc-result-redesign {
    background: rgba(255, 214, 0, 0.05);
    border: 1px solid rgba(255, 214, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.calc-result-redesign::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.calc-result-redesign span {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.glowing-price {
    font-size: 3rem;
    color: #fff;
    font-family: var(--font-heading);
    text-shadow: 0 0 20px rgba(255, 214, 0, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    margin-top: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #1EBE5C;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.w-100 {
    width: 100%;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero { padding: 4rem 0 6rem; text-align: center; }
    
    .hero-bg-overlay::before {
        mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
    }
    .hero-bg-overlay::after {
        background: linear-gradient(to bottom, rgba(15, 18, 25, 0.95) 0%, rgba(15, 18, 25, 0.8) 60%, transparent 100%);
    }
    
    .hero-buttons { justify-content: center; }
    .hero-title { font-size: 2.5rem; }
    .scatter-title span { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .contact-card { padding: 2rem; }
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-text .section-title {
        text-align: center !important;
    }
    .about-text p {
        text-align: center;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .grid-container {
        grid-template-columns: 1fr;
    }
    .modal-content {
        padding: 1.5rem;
    }
    .calc-header {
        padding: 1.5rem;
    }
    .calc-result-redesign {
        padding: 1.5rem;
    }
    .glowing-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .scatter-title span { font-size: 1.6rem; }
    .btn { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
    .hero-subtitle { font-size: 1rem; }
    .company-logo { padding: 0.8rem 1.5rem; font-size: 1rem; margin: 0 0.5rem; }
    .calc-icon { font-size: 2rem; }
    .glowing-price { font-size: 2rem; }
    .range-header label { font-size: 0.85rem; }
    .range-value { font-size: 1rem; }
}

/* --- Animations --- */
.blink-anim {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0; }
}

/* --- PDF Template --- */
#pdf-template-container {
    position: absolute;
    top: -9999px;
    left: -9999px;
}
.pdf-document {
    width: 1056px;
    height: 816px;
    background: #fff;
    color: #000;
    font-family: Arial, sans-serif;
    padding: 40px 60px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.pdf-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 3px solid #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.pdf-logo {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
}
.pdf-phone {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}
.pdf-doc-number {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f8f8;
    padding: 10px 20px;
    border-radius: 8px;
}
.nota-label {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
}
.n-label {
    font-size: 28px;
    font-weight: 800;
}
.doc-num-val {
    font-size: 32px;
    font-weight: 800;
    color: #b00;
}
.pdf-subheader {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}
.pdf-subtitle {
    font-size: 18px;
    font-weight: bold;
    flex-grow: 1;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
}
.pdf-checkbox {
    width: 28px;
    height: 28px;
    border: 2px solid #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    background: #f0f0f0;
}
.pdf-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 20px;
    font-size: 16px;
    gap: 15px;
}
.pdf-line {
    flex-grow: 1;
    border-bottom: 2px solid #333;
    min-height: 25px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #000080;
    font-size: 22px;
    padding: 0 10px;
}
.pdf-date-box {
    border: 2px solid #000;
    display: flex;
    flex-direction: column;
}
.date-header, .date-body {
    display: flex;
}
.date-header span {
    width: 45px;
    text-align: center;
    border-right: 1px solid #000;
    padding: 4px;
    background: #eee;
    font-size: 12px;
}
.date-body span {
    width: 45px;
    text-align: center;
    border-right: 1px solid #000;
    padding: 6px;
    font-size: 20px;
    font-weight: bold;
    color: #000080;
}
.pdf-dest-title {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 15px;
    text-decoration: underline;
}
.pdf-movil-box {
    border: 3px solid #000;
    width: 120px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000080;
    font-size: 24px;
    background: #fff;
}
.box-content {
    border: 2px solid #000;
    width: 200px;
    height: 50px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000080;
    font-size: 28px;
    background: #fff;
}
.box-label {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}
