/*
Theme Name: Hello Veris Theme
Theme URI: https://verisadministradores.com
Description: Tema corporativo a medida basado en Hello Elementor para Veris Administradores
Author: Veris Administradores
Template: hello-elementor
Version: 1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --veris-primary: #1e3a8a;
    --veris-primary-dark: #172554;
    --veris-primary-light: #3b82f6;
    --veris-accent: #0ea5e9;
    --veris-mint: #10b981;
    --veris-mint-light: #ecfdf5;
    --veris-purple-soft: #8b5cf6;
    --veris-purple-light: #f5f3ff;
    --veris-bg-soft: #f8fafc;
    --veris-bg-card: #ffffff;
    --veris-text: #0f172a;
    --veris-text-muted: #64748b;
    --veris-border: #e2e8f0;
    --veris-radius: 12px;
    --veris-radius-lg: 20px;
    --veris-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --veris-shadow: 0 10px 25px -5px rgb(15 23 42 / 0.06), 0 8px 10px -6px rgb(15 23 42 / 0.04);
    --veris-shadow-hover: 0 20px 30px -10px rgb(37 99 235 / 0.12);
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--veris-text);
    background-color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Header Top Bar & Main Header */
.veris-topbar {
    background: #0f172a;
    color: #cbd5e1;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.veris-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.veris-topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.veris-topbar-links a {
    color: #cbd5e1;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.2s ease;
}
.veris-topbar-links a:hover {
    color: #38bdf8;
}

.site-header.veris-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--veris-border);
    transition: all 0.3s ease;
}
.veris-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.veris-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}
.veris-brand-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}
.veris-brand-text {
    display: flex;
    flex-direction: column;
}
.veris-brand-name {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    line-height: 1.1;
}
.veris-brand-sub {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #0ea5e9;
}

.veris-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}
.veris-nav ul li a {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    position: relative;
    padding: 6px 0;
}
.veris-nav ul li a:hover,
.veris-nav ul li.current-menu-item a {
    color: #1e3a8a;
}
.veris-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #0ea5e9;
    transition: width 0.3s ease;
}
.veris-nav ul li a:hover::after,
.veris-nav ul li.current-menu-item a::after {
    width: 100%;
}

.veris-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.veris-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px solid #e2e8f0;
    border-radius: 9999px;
    color: #1e293b;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: #ffffff;
}
.veris-btn-outline:hover {
    border-color: #0ea5e9;
    color: #0ea5e9;
    transform: translateY(-1px);
}
.veris-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    border-radius: 9999px;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
    transition: all 0.3s ease;
}
.veris-btn-primary:hover {
    background: linear-gradient(135deg, #172554, #1d4ed8);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    transform: translateY(-2px);
}

/* Page Components & Sections */
.veris-hero {
    position: relative;
    padding: 90px 0 80px 0;
    background: radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.08) 0%, rgba(255, 255, 255, 0) 60%),
                radial-gradient(circle at 10% 80%, rgba(139, 92, 246, 0.05) 0%, rgba(255, 255, 255, 0) 60%),
                #ffffff;
    overflow: hidden;
}
.veris-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}
.veris-hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #0f172a;
    max-width: 820px;
    margin-bottom: 24px;
}
.veris-hero h1 span.highlight {
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.veris-hero p.lead {
    font-size: 20px;
    color: #475569;
    max-width: 720px;
    line-height: 1.6;
    margin-bottom: 36px;
}
.veris-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 48px;
}

.veris-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid var(--veris-border);
}
.veris-stat-card {
    display: flex;
    flex-direction: column;
}
.veris-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: #1e3a8a;
    line-height: 1;
    margin-bottom: 6px;
}
.veris-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

/* Feature & Service Cards */
.veris-section {
    padding: 80px 0;
}
.veris-section.bg-soft {
    background: #f8fafc;
}
.veris-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px auto;
}
.veris-section-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 12px;
}
.veris-section-title {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
    line-height: 1.2;
}
.veris-section-desc {
    font-size: 17px;
    color: #64748b;
}

.veris-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}
.veris-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.veris-card {
    background: #ffffff;
    border-radius: var(--veris-radius-lg);
    border: 1px solid var(--veris-border);
    padding: 36px;
    box-shadow: var(--veris-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.veris-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--veris-shadow-hover);
    border-color: #cbd5e1;
}
.veris-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    background: #f0fdf4;
    color: #10b981;
}
.veris-card-icon.blue {
    background: #eff6ff;
    color: #2563eb;
}
.veris-card-icon.purple {
    background: #f5f3ff;
    color: #7c3aed;
}
.veris-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #0f172a;
}
.veris-card p {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.veris-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}
.veris-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}
.veris-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #10b981;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Values & Comparison */
.veris-values-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    border-radius: 24px;
    padding: 60px 48px;
    color: #ffffff;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.4);
    margin: 40px 0;
}
.veris-values-banner h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}
.veris-values-banner p {
    font-size: 18px;
    color: #94a3b8;
    max-width: 700px;
    margin-bottom: 40px;
}
.veris-value-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(8px);
}
.veris-value-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #38bdf8;
    margin-bottom: 10px;
}
.veris-value-item p {
    font-size: 14px;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.6;
}

/* Contact Form Box */
.veris-contact-box {
    background: #ffffff;
    border: 1px solid var(--veris-border);
    border-radius: var(--veris-radius-lg);
    box-shadow: var(--veris-shadow);
    padding: 48px;
}
.veris-form-group {
    margin-bottom: 20px;
}
.veris-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}
.veris-input, .veris-textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.2s ease;
    box-sizing: border-box;
}
.veris-input:focus, .veris-textarea:focus {
    border-color: #0ea5e9;
    outline: none;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

/* Footer */
.veris-footer {
    background: #0b1329;
    color: #94a3b8;
    padding: 70px 0 30px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.veris-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}
.veris-footer h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}
.veris-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.veris-footer ul li {
    margin-bottom: 12px;
}
.veris-footer ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}
.veris-footer ul li a:hover {
    color: #38bdf8;
}
.veris-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b;
}

@media (max-width: 991px) {
    .veris-nav, .veris-header-actions .veris-btn-outline {
        display: none;
    }
    .veris-hero h1 {
        font-size: 38px;
    }
    .veris-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .veris-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}