.elementor-105 .elementor-element.elementor-element-26d2e25{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-105 .elementor-element.elementor-element-7aa56af{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-7aa56af *//* ==========================
   ESTILOS SOLO PARA ESTA PÁGINA
   ========================== */

.contact-page {
    background-color: #0c0e1a;
    padding-bottom: 60px; 
}

/* HERO */
.contact-page .cp-hero {
    width: 100%;
    background: url('banner.jpg') no-repeat center/cover;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

.contact-page .cp-hero-content {
    max-width: 700px;
    text-align: center;
    color: white;
}

.contact-page .cp-hero h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-page .cp-hero p {
    font-size: 15px;
    color: #d2d2d2;
}

/* TARJETAS */
.contact-page .cp-contact-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 60px 20px;
    flex-wrap: wrap;
}

.contact-page .cp-card {
    background-color: #111425;
    border: 1px solid #282b40;
    padding: 25px;
    width: 260px;
    border-radius: 14px;
    text-align: left;
    color: white;

    /* Necesario para animación */
    position: relative;
    overflow: hidden;
    transition: border .3s ease, transform .3s ease;
}

.contact-page .cp-card:hover {
    border-color: #2b2bee;
    transform: translateY(-4px);
}

.contact-page .cp-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-page .cp-card h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.contact-page .cp-card p {
    margin-top: 5px;
    color: #c9c9c9;
    font-size: 14px;
}

/* ========= GLOW ANIMATION (importada del código 2) ========= */

.card-glow {
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle,
      rgba(43,43,238,0.15) 0%,
      rgba(43,43,238,0) 70%);
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
    z-index: 0;
}

.cp-card:hover .card-glow {
    opacity: 1;
}

/* Hace que todo el contenido quede arriba del glow */
.cp-card * {
    position: relative;
    z-index: 2;
}

/* CTA FINAL */
.contact-page .cp-cta {
    margin: 40px auto;
    background: linear-gradient(90deg, #3a0ca3, #6a4cff);
    border-radius: 20px;
    padding: 35px 40px;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.contact-page .cp-cta-text h2 {
    margin: 0;
    font-size: 20px;
}

.contact-page .cp-cta-text p {
    margin-top: 5px;
    color: #e8e8e8;
    font-size: 14px;
}

.contact-page .cp-cta-btn {
    background: white;
    color: #000;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.2s ease;
}

.contact-page .cp-cta-btn:hover {
    opacity: 0.8;
}/* End custom CSS */