.elementor-8 .elementor-element.elementor-element-9f3775e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-25c4b4f *//* ========== FUENTE ========== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========== VARIABLES DE COLORES ========== */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #0ea5e9;
    --accent: #06b6d4;
    --text-dark: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --bg-dark: #0f172a;
}

/* ========== HEADER ========== */
.header-blackbelt {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.8) !important;
}

/* ========== BOTONES ========== */
.btn-primary-bb {
    background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 16px 32px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.btn-primary-bb:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5) !important;
}

.btn-secondary-bb {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 12px !important;
    padding: 16px 32px !important;
    font-weight: 600 !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
}

.btn-secondary-bb:hover {
    background: rgba(255,255,255,0.15) !important;
    transform: translateY(-3px) !important;
}

/* ========== HERO ========== */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%) !important;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 3rem !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    color: #ffffff !important;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #818cf8 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem !important;
    color: rgba(255,255,255,0.7) !important;
    line-height: 1.7 !important;
}

.hero-check {
    color: #10b981 !important;
}

.hero-check-text {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.85rem !important;
}

/* ========== IMÁGENES REDONDEADAS ========== */
.img-rounded img {
    border-radius: 32px !important;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.4) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.img-rounded img:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 35px 60px -15px rgba(0,0,0,0.5) !important;
}

.img-rounded-light img {
    border-radius: 32px !important;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.img-rounded-light img:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 30px 50px -15px rgba(0,0,0,0.2) !important;
}

/* ========== SECTION LABELS ========== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6366f1 !important;
}

.section-label::before {
    content: "";
    width: 24px;
    height: 2px;
    background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
    border-radius: 1px;
}

/* ========== SECTION TITLES ========== */
.section-title-bb {
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -0.03em;
    line-height: 1.2 !important;
}

.section-title-white {
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.03em;
    line-height: 1.2 !important;
}

/* ========== SERVICE CARDS ========== */
.service-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 24px !important;
    padding: 2rem !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15) !important;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card img {
    border-radius: 16px !important;
    transition: transform 0.4s ease !important;
}

.service-card:hover img {
    transform: scale(1.05) !important;
}

.service-card h3 {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.service-card p {
    font-size: 0.9rem !important;
    color: #64748b !important;
    line-height: 1.7 !important;
}

/* ========== PROCESS CARDS ========== */
.process-section {
    background: #0f172a !important;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.process-card {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 24px !important;
    padding: 2rem !important;
    transition: transform 0.4s ease, background 0.4s ease !important;
}

.process-card:hover {
    transform: translateY(-8px) !important;
    background: rgba(255,255,255,0.08) !important;
}

.process-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.process-card h4 {
    color: #ffffff !important;
    font-weight: 600 !important;
}

.process-card p {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.9rem !important;
}

/* ========== CONTACT ========== */
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
}

.contact-email-box {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 24px !important;
    padding: 1.5rem 2rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.contact-email-box:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1) !important;
}

.contact-icon-box {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 32px !important;
    padding: 2.5rem !important;
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.1) !important;
}

.contact-form-card input,
.contact-form-card textarea {
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 0.875rem 1rem !important;
    background: #f8fafc !important;
    transition: all 0.3s ease !important;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1) !important;
    background: #ffffff !important;
}

/* ========== FOOTER ========== */
.footer-section {
    background: #0f172a !important;
}

.footer-section a {
    color: rgba(255,255,255,0.6) !important;
    transition: color 0.3s ease !important;
}

.footer-section a:hover {
    color: #ffffff !important;
}

/* ========== ANIMACIONES AL SCROLL ========== */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-in.elementor-widget-container {
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animated {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .section-title-bb,
    .section-title-white {
        font-size: 1.75rem !important;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-9f3775e *//* Eliminar bordes blancos en Elementor Canvas */
body.elementor-template-canvas {
    margin: 0 !important;
    padding: 0 !important;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

/* Asegurar que las secciones ocupen todo el ancho */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100%;
}

.elementor-section.elementor-section-stretched {
    width: 100% !important;
    left: 0 !important;
}

/* Eliminar gaps en secciones */
.elementor-section {
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Para el header específicamente */
.elementor-section.elementor-section-full_width {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}/* End custom CSS */
/* Start custom CSS */html {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

.elementor-section-wrap > .elementor-section {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.elementor-container {
    max-width: 100% !important;
}

.e-con {
    --padding-inline-start: 0;
    --padding-inline-end: 0;
}/* End custom CSS */