/* PALETA DE COLORES REVOLUCIONARIA Y PREMIUM */
:root {
    --bg-main: #0b111e;        /* Pizarra oscuro profundo */
    --bg-surface: #131c2e;     /* Azul de medianoche para tarjetas */
    --accent-blue: #00d2ff;    /* Azul eléctrico brillante */
    --accent-gold: #d4af37;    /* Dorado siena elegante */
    --text-light: #f3f4f6;     /* Blanco roto */
    --text-muted: #9ca3af;     /* Gris de lectura */
    --warning-bg: #fff9e6;     /* Fondo suave para Disclaimer (Google Ads) */
    --warning-border: #ffe0b2;
    --warning-text: #5c4300;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* BANNER DE DESLINDE (GOOGLE ADS COMPLIANCE) */
.ads-disclaimer-banner {
    background-color: var(--warning-bg);
    border-bottom: 2px solid var(--warning-border);
    padding: 12px 0;
}
.container-disclaimer {
    display: table;
    width: 100%;
}
.icon-disclaimer {
    display: table-cell;
    vertical-align: middle;
    width: 30px;
}
.ads-disclaimer-banner p {
    display: table-cell;
    vertical-align: middle;
    color: var(--warning-text);
    font-size: 11pt;
    padding-left: 12px;
    text-align: justify;
}

/* HEADER */
.main-header {
    background-color: rgba(19, 28, 46, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-flex {
    display: table;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
}
.logo-brand {
    display: table-cell;
    vertical-align: middle;
    text-decoration: none;
    width: 35%;
}
.logo-svg {
    vertical-align: middle;
    margin-right: 10px;
}
.logo-text {
    display: inline-block;
    vertical-align: middle;
}
.brand-name {
    display: block;
    color: var(--text-light);
    font-size: 16pt;
    font-weight: 800;
    letter-spacing: 1px;
}
.brand-sub {
    display: block;
    color: var(--accent-gold);
    font-size: 8pt;
    text-transform: uppercase;
}
.main-nav {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    width: 45%;
}
.nav-link {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 25px;
    font-size: 11pt;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent-blue);
}
.header-cta {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    width: 20%;
}

/* BOTONES */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 10.5pt;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-primary {
    background-color: var(--accent-gold);
    color: #0b111e;
    border: 1px solid var(--accent-gold);
}
.btn-primary:hover {
    background-color: #be9b2e;
    border-color: #be9b2e;
}
.btn-secondary {
    background-color: transparent;
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
}
.btn-secondary:hover {
    background-color: var(--accent-blue);
    color: #0b111e;
}
.btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.btn-block {
    display: block;
    width: 100%;
}

/* HERO SECTION */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0b111e 0%, #17243c 100%);
}
.hero-grid {
    display: table;
    width: 100%;
}
.hero-content {
    display: table-cell;
    width: 55%;
    vertical-align: middle;
    padding-right: 40px;
}
.hero-image-wrapper {
    display: table-cell;
    width: 45%;
    vertical-align: middle;
}
.badge {
    display: inline-block;
    background-color: rgba(0, 210, 255, 0.1);
    color: var(--accent-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 9pt;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 210, 255, 0.2);
}
h1 {
    font-size: 28pt;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}
.hero-lead {
    font-size: 12pt;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.hero-actions .btn {
    margin-right: 15px;
}
.hero-features {
    margin-top: 40px;
}
.feat-item {
    display: inline-block;
    margin-right: 30px;
}
.feat-item svg {
    vertical-align: middle;
    margin-right: 8px;
}
.feat-item span {
    font-size: 10pt;
    font-weight: 500;
}
.hero-img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* PROOF BAR */
.proof-bar {
    background-color: var(--bg-surface);
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.proof-flex {
    display: table;
    width: 100%;
}
.proof-title {
    display: table-cell;
    width: 30%;
    font-size: 10pt;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 700;
    vertical-align: middle;
}
.proof-logos {
    display: table-cell;
    width: 70%;
    text-align: right;
    vertical-align: middle;
}
.proof-logo-item {
    display: inline-block;
    margin-left: 40px;
    font-size: 11pt;
    color: var(--text-muted);
    font-weight: 600;
}

/* SERVICES SECTION */
.services-section {
    padding: 100px 0;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}
.section-header h2 {
    font-size: 22pt;
    margin-bottom: 15px;
    color: #fff;
}
.section-header p {
    color: var(--text-muted);
    font-size: 11pt;
}
.services-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.service-card {
    display: table-cell;
    width: 33.333%;
    background-color: var(--bg-surface);
    padding: 40px 30px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: transform 0.3s;
}
.service-card:nth-child(2) {
    background: linear-gradient(180deg, #131c2e 0%, #1a263f 100%);
    border-top: 3px solid var(--accent-gold);
}
.card-icon {
    margin-bottom: 25px;
}
.service-card h3 {
    font-size: 14pt;
    margin-bottom: 15px;
    color: #fff;
}
.service-card p {
    color: var(--text-muted);
    font-size: 10pt;
}

/* PROCESS SECTION */
.process-section {
    background-color: #0e1624;
    padding: 100px 0;
}
.process-steps {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.step-item {
    display: table-cell;
    padding: 0 20px;
    position: relative;
}
.step-number {
    font-size: 36pt;
    font-weight: 900;
    color: rgba(0, 210, 255, 0.2);
    margin-bottom: 10px;
}
.step-item h4 {
    font-size: 13pt;
    color: #fff;
    margin-bottom: 12px;
}
.step-item p {
    color: var(--text-muted);
    font-size: 10pt;
}

/* LEAD SECTION & FORM */
.lead-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #131c2e 0%, #0b111e 100%);
}
.lead-grid {
    display: table;
    width: 100%;
}
.lead-text-side {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
    padding-right: 50px;
}
.lead-text-side h2 {
    font-size: 22pt;
    margin-bottom: 20px;
}
.contact-info-block {
    margin-top: 30px;
    border-left: 3px solid var(--accent-blue);
    padding-left: 15px;
}
.contact-info-block p {
    font-size: 10pt;
    margin-bottom: 5px;
}
.lead-form-side {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
}
.form-structure {
    background-color: var(--bg-main);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 9.5pt;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-light);
}
.form-structure input[type="text"],
.form-structure input[type="email"],
.form-structure input[type="tel"],
.form-structure select {
    width: 100%;
    padding: 12px;
    background-color: #131c2e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: #fff;
    font-size: 10pt;
}
.form-structure input:focus, .form-structure select:focus {
    outline: none;
    border-color: var(--accent-blue);
}
.checkbox-group input {
    float: left;
    margin-top: 4px;
    margin-right: 10px;
}
.checkbox-group label {
    font-weight: 400;
    font-size: 9pt;
    color: var(--text-muted);
}
.checkbox-group a {
    color: var(--accent-blue);
}
.form-message {
    margin-top: 15px;
    font-size: 10pt;
    font-weight: bold;
    text-align: center;
}
.form-message.success { color: #2ecc71; }
.form-message.error { color: #e74c3c; }

/* FOOTER */
.main-footer {
    background-color: #070b14;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: table;
    width: 100%;
}
.footer-brand-side {
    display: table-cell;
    width: 40%;
    padding-right: 40px;
}
.footer-brand-desc {
    color: var(--text-muted);
    font-size: 10pt;
    margin-top: 15px;
}
.footer-links-side {
    display: table-cell;
    width: 30%;
    vertical-align: top;
}
.footer-links-side h4 {
    font-size: 11pt;
    color: #fff;
    margin-bottom: 20px;
}
.footer-links-list {
    list-style: none;
}
.footer-links-list li {
    margin-bottom: 10px;
}
.footer-links-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 10pt;
}
.footer-links-list a:hover {
    color: var(--accent-gold);
}
.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin: 40px 0 20px 0;
}
.footer-bottom-disclaimer {
    color: #7f8c8d;
    font-size: 8.5pt;
    text-align: justify;
    line-height: 1.5;
}
.disclaimer-text {
    margin-bottom: 15px;
}
.copyright-text {
    text-align: center;
    color: #555;
    margin-top: 20px;
}