.elementor-kit-7{--e-global-color-primary:#1B0404;--e-global-color-secondary:#936037;--e-global-color-text:#CA9E67;--e-global-color-accent:#272727;--e-global-color-c7f7c9b:#FFFFFF;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-weight:400;--e-global-typography-secondary-font-family:"Didact Gothic";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-7 button,.elementor-kit-7 input[type="button"],.elementor-kit-7 input[type="submit"],.elementor-kit-7 .elementor-button{background-color:var( --e-global-color-secondary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );color:var( --e-global-color-c7f7c9b );}.elementor-kit-7 button:hover,.elementor-kit-7 button:focus,.elementor-kit-7 input[type="button"]:hover,.elementor-kit-7 input[type="button"]:focus,.elementor-kit-7 input[type="submit"]:hover,.elementor-kit-7 input[type="submit"]:focus,.elementor-kit-7 .elementor-button:hover,.elementor-kit-7 .elementor-button:focus{background-color:var( --e-global-color-text );color:var( --e-global-color-primary );}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-7{--e-global-typography-primary-font-size:24px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */<style>
/* ==========================================================================
   DIRECTUM Landing Page - Sistema de Diseño & Estilos Premium (Protección CAE)
   ========================================================================== */

:root {
    /* Paleta de Colores Corporativa */
    --brand-white: #FFFAF9;
    --brand-dark-grey: #423B3B;
    --brand-dark-brown: #432918;
    --brand-mid-brown: #b17f4a;
    --brand-light-brown: #c19c6e;
    --brand-accent-gold: #c99a63;
    
    /* Variaciones de Color y Acentos */
    --accent-gold-light: rgba(201, 154, 99, 0.15);
    --accent-gold-dim: rgba(177, 127, 74, 0.05);
    --bg-dark-overlay: rgba(67, 41, 24, 0.96);
    --alert-red: #8c2525;
    --alert-red-light: rgba(140, 37, 37, 0.06);
    --glass-bg: rgba(255, 250, 249, 0.85);
    --glass-border: rgba(193, 156, 110, 0.15);
    --border-color: rgba(66, 59, 59, 0.08);

    /* Tipografía */
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Comfortaa', sans-serif;

    /* Efectos & Bordes */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 4px 12px rgba(66, 59, 59, 0.03);
    --shadow-md: 0 10px 30px rgba(66, 59, 59, 0.06);
    --shadow-lg: 0 20px 45px rgba(66, 59, 59, 0.09);
    
    /* Transiciones */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-in-out;
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--brand-dark-grey);
    line-height: 1.75;
    background-color: var(--brand-white);
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Tipografía y Elementos de Texto */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--brand-dark-brown);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.25rem;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--brand-light-brown);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 1.05rem;
}

strong {
    font-weight: 600;
}

/* Botones con Micro-animaciones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--brand-mid-brown);
    color: var(--brand-white);
    box-shadow: 0 4px 15px rgba(177, 127, 74, 0.2);
}

.btn-primary:hover {
    background-color: var(--brand-dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 41, 24, 0.25);
}

.btn-accent {
    background-color: transparent;
    border-color: var(--brand-accent-gold);
    color: var(--brand-accent-gold);
}

.btn-accent:hover {
    background-color: var(--brand-accent-gold);
    color: var(--brand-dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 154, 99, 0.2);
}

/* Header & Barra de Navegación */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 38px;
    display: block;
    transition: var(--transition-smooth);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--brand-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-accent-gold);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-links a {
    color: var(--brand-dark-grey);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--brand-dark-brown);
}

.nav-cta {
    padding: 10px 20px;
    font-size: 0.8rem;
    border-radius: var(--border-radius-sm);
}

.navbar:not(.scrolled) .nav-cta {
    border-color: var(--brand-white);
    color: var(--brand-white);
}

.navbar:not(.scrolled) .nav-cta:hover {
    background-color: var(--brand-white);
    color: var(--brand-dark-brown);
}

/* Sección 1: Hero Section */
.hero {
    background-color: var(--brand-dark-brown);
    position: relative;
    padding: 180px 0 120px 0;
    text-align: center;
    color: var(--brand-white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 70% 30%, rgba(177, 127, 74, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-logo {
    max-width: 250px;
    margin: 0 auto 30px auto;
}

.hero h1 {
    color: var(--brand-white);
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto 25px auto;
}

.hero h1 span {
    color: var(--brand-accent-gold);
}

.hero .subtitle {
    font-size: 1.35rem;
    max-width: 750px;
    margin: 0 auto 45px auto;
    color: #e5d5c5;
    font-weight: 300;
    line-height: 1.6;
}

.hero .hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
}

.hero .support-text {
    font-size: 0.95rem;
    opacity: 0.7;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

/* Sección 2: Puntos de Dolor */
.pain-points {
    padding: 100px 0;
    background-color: var(--brand-white);
}

.grid-pain {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 70px;
}

.pain-card {
    background-color: #fff;
    padding: 45px 35px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--brand-light-brown);
    opacity: 0;
    transition: var(--transition-fast);
}

.pain-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(193, 156, 110, 0.3);
}

.pain-card:hover::before {
    opacity: 1;
}

.pain-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold-light);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1;
}

.pain-card h3 {
    font-size: 1.3rem;
    color: var(--brand-dark-brown);
    margin-bottom: 15px;
}

.pain-card p {
    margin: 0;
    font-size: 1rem;
    color: var(--brand-dark-grey);
}

.connection-text {
    background-color: var(--accent-gold-dim);
    border: 1px solid var(--glass-border);
    color: var(--brand-dark-brown);
    padding: 40px;
    border-radius: var(--border-radius-md);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.connection-text p {
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
}

/* Sección 3: Banner de Urgencia */
.urgency-banner {
    background-color: var(--alert-red);
    color: var(--brand-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.urgency-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.urgency-banner h2 {
    color: var(--brand-white);
    margin-bottom: 25px;
    font-size: 2.25rem;
}

.urgency-banner h2::after {
    background-color: var(--brand-white);
    opacity: 0.5;
}

.urgency-banner p {
    margin-bottom: 40px;
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 300;
}

.urgency-banner .btn-accent {
    border-color: var(--brand-white);
    color: var(--brand-white);
}

.urgency-banner .btn-accent:hover {
    background-color: var(--brand-white);
    color: var(--alert-red);
}

/* Sección 4: Solución */
.solution {
    padding: 100px 0;
    background-color: var(--brand-white);
}

.solution .intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 65px auto;
    font-size: 1.25rem;
    color: var(--brand-dark-grey);
}

.grid-solution {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.solution-card {
    background-color: #fff;
    padding: 45px 30px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 154, 99, 0.25);
}

.solution-icon-indicator {
    width: 32px;
    height: 4px;
    background-color: var(--brand-accent-gold);
    border-radius: 2px;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 1.35rem;
    color: var(--brand-dark-brown);
    margin-bottom: 15px;
    line-height: 1.3;
}

.solution-card p {
    font-size: 0.98rem;
    color: var(--brand-dark-grey);
    margin: 0;
    flex-grow: 1;
}

/* Sección 5: Tarifas */
.economics {
    background-color: var(--brand-dark-brown);
    color: var(--brand-white);
    padding: 100px 0;
    position: relative;
}

.economics h2 {
    color: var(--brand-white);
    margin-bottom: 40px;
}

.economics h2::after {
    background-color: var(--brand-accent-gold);
}

.price-card {
    background-color: rgba(255, 255, 255, 0.03);
    max-width: 650px;
    margin: 0 auto;
    padding: 55px 45px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
    text-align: center;
    backdrop-filter: blur(5px);
}

.price-tag-container {
    margin-bottom: 30px;
}

.price-period {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-accent-gold);
    margin-bottom: 10px;
    display: block;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brand-white);
    line-height: 1;
}

.price-sub {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: 10px;
}

.price-features {
    list-style: none;
    margin: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: left;
    display: inline-block;
    width: 100%;
    max-width: 450px;
}

.price-features li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-features li::before {
    content: '✓';
    color: var(--brand-accent-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.price-card strong {
    color: var(--brand-accent-gold);
}

.price-description {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Sección 6: Contacto */
.contact {
    padding: 100px 0;
    background-color: #FAF4EE;
}

.contact h2 {
    margin-bottom: 20px;
}

.contact .intro-p {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
    font-size: 1.15rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 70px;
    align-items: start;
}

.contact-form {
    background-color: #fff;
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--brand-dark-brown);
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(66, 59, 59, 0.15);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    color: var(--brand-dark-grey);
    font-family: var(--font-primary);
    background-color: var(--brand-white);
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-mid-brown);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(177, 127, 74, 0.1);
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

.contact-info h3 {
    margin-bottom: 30px;
    color: var(--brand-dark-brown);
    font-size: 1.6rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.info-list {
    list-style: none;
    margin-bottom: 50px;
}

.info-list li {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--brand-mid-brown);
    display: block;
    margin-bottom: 2px;
}

.info-value {
    font-size: 1.1rem;
    color: var(--brand-dark-grey);
    font-weight: 400;
}

.payment-section {
    border-top: 1px solid var(--border-color);
    padding-top: 35px;
}

.payment-section span {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--brand-dark-brown);
}

.payment-badge {
    background: #fff;
    padding: 15px 30px;
    border-radius: var(--border-radius-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.payment-badge span {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ff5a00;
}

/* Footer */
footer {
    background-color: #211c1c;
    color: #a59b90;
    padding: 80px 0 40px 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    list-style: none;
}

.footer-socials a {
    color: #a59b90;
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.footer-socials a:hover {
    color: var(--brand-white);
}

.footer-philosophy {
    max-width: 750px;
    margin: 0 auto;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-weight: 300;
    line-height: 1.8;
}

.footer-copy {
    margin-top: 40px;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* Animaciones de Scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-left.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-right.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity;
}

.reveal-fade.reveal-visible {
    opacity: 1;
}

/* Responsividad */
@media (max-width: 992px) {
    h1 { font-size: 2.75rem; }
    .hero { padding: 160px 0 90px 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    body { font-size: 15px; }
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.85rem; margin-bottom: 35px; }
    .nav-links, .nav-cta-item { display: none; }
    .navbar { padding: 15px 0; }
    .navbar.scrolled { padding: 10px 0; }
    .hero { padding: 140px 0 80px 0; }
    .hero h1 { font-size: 2.25rem; }
    .hero .subtitle { font-size: 1.15rem; margin-bottom: 35px; }
    .hero .hero-actions { flex-direction: column; gap: 15px; align-items: center; }
    .hero .hero-actions .btn { width: 100%; max-width: 320px; }
    .pain-points, .solution, .economics, .contact { padding: 70px 0; }
    .price-card { padding: 40px 25px; }
    .price-value { font-size: 2.75rem; }
    .contact-form { padding: 35px 25px; }
}
</style>/* End custom CSS */