.elementor-1167 .elementor-element.elementor-element-d77d7f7{--display:flex;}/* Start custom CSS *//* ===========================
   SECCIÓN DE CONTACTO
=========================== */

.contact-section {
    position: relative;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #020202;
    overflow: hidden;
}

.contact-container {
    max-width: 600px;
    text-align: center;
    z-index: 10;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 15px #00eaff;
}

.contact-subtitle {
    color: #bbbbbb;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* FORMULARIO */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    background: transparent;
    border-bottom: 2px solid #555;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    resize: none;
    transition: 0.3s ease;
}

.input-group label {
    position: absolute;
    left: 0;
    bottom: 15px;
    color: #888;
    pointer-events: none;
    transition: 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    border-bottom: 2px solid #00eaff;
}

.input-group input:focus + label,
.input-group textarea:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:not(:placeholder-shown) + label {
    transform: translateY(-25px);
    font-size: 0.8rem;
    color: #00eaff;
}

/* BOTÓN */
.send-btn {
    background: #00eaff;
    border: none;
    padding: 15px 30px;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.05);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transition: 0.4s ease;
}

.send-btn:hover .btn-glow {
    width: 100%;
}

/* ===========================
   FONDO ANIMADO — NEURAL NETWORK
=========================== */
.neural-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.neural-bg span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00eaff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00eaff;
    animation: float 6s infinite ease-in-out;
}

.neural-bg span:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.neural-bg span:nth-child(2) {
    top: 40%;
    left: 70%;
    animation-delay: 1s;
}

.neural-bg span:nth-child(3) {
    top: 75%;
    left: 30%;
    animation-delay: 2s;
}

.neural-bg span:nth-child(4) {
    top: 60%;
    left: 80%;
    animation-delay: 3s;
}

.neural-bg span:nth-child(5) {
    top: 10%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.5); }
    100% { transform: translate(0, 0) scale(1); }
}

/* MODO RESPONSIVO */
@media (max-width: 600px) {
    .contact-title {
        font-size: 2.3rem;
    }
}/* End custom CSS */