/* ========================================
   ZUVERWORKS - CORPORATE PROFESSIONAL THEME
   ======================================== */

/* Variables de Color Corporativo */
:root {
    --zuver-red: #7D0000;
    --zuver-red-dark: #5a0000;
    --zuver-black: #1a1a1a;
    --zuver-gray-dark: #2c2c2c;
    --zuver-gray: #6c757d;
    --zuver-gray-light: #e9ecef;
    --zuver-cream: #DCBEAF;
    --zuver-white: #ffffff;
    --zuver-bg: #f8f9fa;
}

/* Reset Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    color: var(--zuver-black);
    background-color: var(--zuver-bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   LAYOUT PRINCIPAL (Sin Sidebar)
   ======================================== */

.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    padding-top: 80px; /* Altura del header fijo */
}

/* ========================================
   HEADER HORIZONTAL PROFESIONAL - ESTILO STARBUCKS
   ======================================== */

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--zuver-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 80px;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    height: 55px;
    width: auto;
    transition: opacity 0.3s ease;
}

.brand-logo:hover {
    opacity: 0.8;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--zuver-black);
    text-decoration: none;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.brand-name:hover {
    opacity: 0.9;
    color: var(--zuver-black);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
    margin-left: auto;
    margin-right: 30px;
}

.nav-link-item {
    color: rgba(0, 0, 0, 0.87);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.nav-link-item:hover,
.nav-link-item.active {
    color: var(--zuver-red);
    border-bottom: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-join-now {
    background: var(--zuver-red);
    color: var(--zuver-white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--zuver-red);
}

.btn-join-now:hover {
    background: var(--zuver-red-dark);
    color: var(--zuver-white);
}

/* ========================================
   TIPOGRAFÍA PROFESIONAL
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--zuver-black);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
    color: #4a5568;
    font-size: 1.05rem;
}

.lead {
    font-size: 1.35rem;
    font-weight: 300;
    color: #2d3748;
    line-height: 1.6;
}

/* ========================================
   HERO BANNER ESTILO STARBUCKS
   ======================================== */

.hero-banner {
    background: linear-gradient(135deg, var(--zuver-red) 0%, var(--zuver-red-dark) 100%);
    padding: 80px 0 70px;
    text-align: center;
}

.hero-content h1 {
    color: var(--zuver-white);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* ========================================
   SPLIT SECTIONS - IMAGEN/CONTENIDO ALTERNADO ESTILO STARBUCKS
   ======================================== */

.split-section {
    padding: 10px 0;
    margin: 0;
    background: var(--zuver-white);
}

.split-container {
    display: flex;
    min-height: 450px;
    max-height: 550px;
    align-items: stretch;
    background: linear-gradient(135deg, var(--zuver-red) 0%, var(--zuver-red-dark) 100%);
    max-width: 1400px;
    margin: 0 auto;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-content {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--zuver-white);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

/* Reverse order for alternating sections */
.split-reverse .split-container {
    flex-direction: row-reverse;
}

/* Light background for alternating sections */
.bg-light-section {
    background: #f8f9fa;
}

/* ========================================
   STATS INLINE - Sobre fondo rojo
   ======================================== */

.stats-inline {
    display: flex;
    gap: 50px;
    margin-top: 2rem;
}

.stat-inline-item {
    display: flex;
    flex-direction: column;
}

.stat-inline-item strong {
    font-size: 3rem;
    color: var(--zuver-white);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-inline-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--zuver-red) 0%, var(--zuver-red-dark) 100%);
    padding: 70px 0;
    text-align: center;
    margin-top: 40px;
}

.cta-content h2 {
    color: var(--zuver-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Botones en CTA - Blancos sobre fondo rojo */
.cta-content .rz-button,
.cta-section .rz-button,
.cta-content button,
.cta-section button {
    background: var(--zuver-white) !important;
    background-color: var(--zuver-white) !important;
    color: var(--zuver-red) !important;
    border: 2px solid var(--zuver-white) !important;
    border-color: var(--zuver-white) !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
}

.cta-content .rz-button:hover,
.cta-section .rz-button:hover,
.cta-content button:hover,
.cta-section button:hover {
    background: transparent !important;
    background-color: transparent !important;
    color: var(--zuver-white) !important;
    border-color: var(--zuver-white) !important;
}

/* ========================================
   SECCIONES Y ESPACIADO
   ======================================== */

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 60px 0;
}

.section-lg {
    padding: 140px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 2.75rem;
    color: var(--zuver-black);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--zuver-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Fondos de Sección */
.bg-white {
    background-color: var(--zuver-white);
}

.bg-light {
    background-color: var(--zuver-bg);
}

.bg-cream {
    background-color: #f5f2ef;
}

.bg-dark {
    background-color: var(--zuver-gray-dark);
    color: var(--zuver-white);
}

/* ========================================
   CARDS PROFESIONALES
   ======================================== */

.card-professional {
    background: var(--zuver-white);
    border-radius: 8px;
    padding: 50px 35px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.card-professional:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(125, 0, 0, 0.1);
}

.card-professional h3 {
    color: var(--zuver-red);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.card-professional p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 1.05rem;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* ========================================
   BOTONES CORPORATIVOS
   ======================================== */

.btn-corporate {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.btn-primary-corp {
    background: var(--zuver-red);
    color: var(--zuver-white);
    border-radius: 50px;
}

.btn-primary-corp:hover {
    background: var(--zuver-red-dark);
    color: var(--zuver-white);
}

.btn-outline-corp {
    background: transparent;
    color: var(--zuver-red);
    border: 2px solid var(--zuver-red);
    border-radius: 50px;
}

.btn-outline-corp:hover {
    background: var(--zuver-red);
    color: var(--zuver-white);
}

.btn-light-corp {
    background: var(--zuver-white);
    color: var(--zuver-red);
    border-radius: 50px;
}

.btn-light-corp:hover {
    background: var(--zuver-gray-light);
    color: var(--zuver-red-dark);
}

/* Radzen Button Override - Estilo Starbucks */
.rz-button.rz-button-md.rz-variant-filled.rz-primary,
.rz-button-primary,
.rz-button.rz-primary,
button.rz-button-primary,
.rz-button[style*="Primary"] {
    background: var(--zuver-red) !important;
    background-color: var(--zuver-red) !important;
    border: none !important;
    border-color: var(--zuver-red) !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    color: var(--zuver-white) !important;
}

.rz-button.rz-button-md.rz-variant-filled.rz-primary:hover,
.rz-button-primary:hover,
.rz-button.rz-primary:hover,
button.rz-button-primary:hover,
.rz-button[style*="Primary"]:hover {
    background: var(--zuver-red-dark) !important;
    background-color: var(--zuver-red-dark) !important;
    border-color: var(--zuver-red-dark) !important;
    box-shadow: none !important;
    color: var(--zuver-white) !important;
}

/* Botones Light en Secciones Split - Sobre fondo rojo */
.split-content .rz-button-light,
.split-content .rz-button.rz-variant-outlined,
.split-content .rz-button {
    background: transparent !important;
    color: var(--zuver-white) !important;
    border: 2px solid var(--zuver-white) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}

.split-content .rz-button-light:hover,
.split-content .rz-button.rz-variant-outlined:hover,
.split-content .rz-button:hover {
    background: var(--zuver-white) !important;
    color: var(--zuver-red) !important;
    border-color: var(--zuver-white) !important;
}

/* ========================================
   ESTADÍSTICAS
   ======================================== */

.stats-section {
    background: linear-gradient(135deg, var(--zuver-red) 0%, var(--zuver-red-dark) 100%);
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--zuver-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   FOOTER PROFESIONAL
   ======================================== */

.app-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: rgba(255, 255, 255, 0.8);
    border-top: 3px solid var(--zuver-red);
    margin-top: auto;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--zuver-cream);
}

/* ========================================
   FORMULARIOS PROFESIONALES
   ======================================== */

.rz-textbox,
.rz-dropdown,
.rz-textarea {
    border: 2px solid #e2e8f0 !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.rz-textbox:focus,
.rz-dropdown:focus,
.rz-textarea:focus {
    border-color: var(--zuver-red) !important;
    box-shadow: 0 0 0 3px rgba(125, 0, 0, 0.1) !important;
    outline: none !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 991px) {
    .nav-links {
        gap: 25px;
    }

    .nav-link-item {
        font-size: 14px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .section {
        padding: 70px 0;
    }

    .stat-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .split-section {
        padding: 10px 20px;
    }

    .split-container {
        min-height: 400px;
        max-height: 500px;
    }

    .split-content {
        padding: 50px 40px;
    }

    .split-content h2 {
        font-size: 1.9rem;
    }

    .split-content p {
        font-size: 1.05rem;
    }

    .stats-inline {
        gap: 30px;
    }

    .stat-inline-item strong {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .top-header {
        height: auto;
        padding: 15px 0;
    }

    .navbar-content {
        flex-direction: column;
        height: auto;
        gap: 15px;
    }

    .brand-logo {
        height: 45px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0;
        margin-right: 0;
    }

    .nav-link-item {
        font-size: 13px;
    }

    .nav-actions {
        margin-top: 10px;
    }

    .main-content {
        padding-top: 180px;
    }

    h1 {
        font-size: 2rem;
    }

    /* Hero Banner Mobile */
    .hero-banner {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Split Sections Mobile */
    .split-section {
        padding: 10px 15px;
    }

    .split-container {
        flex-direction: column !important;
        min-height: auto;
        max-height: none;
    }

    .split-image {
        min-height: 280px;
        max-height: 350px;
        order: 1;
    }

    .split-content {
        padding: 40px 30px;
        order: 2;
    }

    .split-content h2 {
        font-size: 1.7rem;
    }

    .split-content p {
        font-size: 1rem;
    }

    /* Stats Inline Mobile */
    .stats-inline {
        flex-direction: column;
        gap: 20px;
    }

    .stat-inline-item strong {
        font-size: 2.5rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 70px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .section {
        padding: 50px 0;
    }
}

/* ========================================
   UTILIDADES
   ======================================== */

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* ========================================
   PÁGINA DE CONTACTO
   ======================================== */

/* Header rojo y delgado */
.contact-header {
    background: linear-gradient(135deg, var(--zuver-red) 0%, var(--zuver-red-dark) 100%);
    padding: 40px 0;
    text-align: center;
}

.contact-header h1 {
    color: var(--zuver-white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Sección del formulario más compacta */
.contact-form-section {
    padding: 40px 0;
    background: #f8f9fa;
}

/* Cards más compactos */
.contact-card {
    background: var(--zuver-white);
    border-radius: 8px;
    padding: 30px 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--zuver-black);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--zuver-red);
}

/* Form groups compactos */
.form-group-compact {
    margin-bottom: 1rem;
}

.form-group-compact label {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

/* Contact info items */
.contact-info-item {
    margin-top: 1.2rem;
}

.contact-info-item p {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.contact-info-item strong {
    color: var(--zuver-black);
}

/* Responsive contacto */
@media (max-width: 991px) {
    .contact-header {
        padding: 35px 20px;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-form-section {
        padding: 30px 15px;
    }

    .contact-card {
        padding: 25px 20px;
    }
}

@media (max-width: 767px) {
    .contact-header {
        padding: 30px 15px;
    }

    .contact-header h1 {
        font-size: 1.8rem;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-form-section {
        padding: 25px 10px;
    }

    .contact-card {
        padding: 20px 15px;
        margin-bottom: 1rem;
    }
}
