/* ========================= */
/* 📞 CONTACTO */
/* ========================= */
.contact-panel {
    margin-top: 20px;
    padding: 120px 40px;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* HERO */
.contact-hero {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 2.7rem;
    margin-bottom: 10px;
}

.contact-hero p {
    color: #aaa;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 1;
}

/* CARD */
.contact-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 35px 25px;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* HOVER */
.contact-card:hover {
    transform: translateY(-8px);
    border-color: #7a00ff;
    box-shadow: 0 0 25px rgba(122,0,255,0.25);
}

/* ICON */
.contact-icon {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    background: linear-gradient(45deg, #00c3ff, #7a00ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    transition: 0.3s ease;
}

/* SVG */
.contact-icon svg {
    width: 32px;
    fill: white;
}

/* HOVER ICON */
.contact-card:hover .contact-icon {
    transform: scale(1.08) rotate(3deg);
}

/* TEXT */
.contact-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-card p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* BOTÓN */
.contact-card a {
    display: inline-block;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #333;
    color: white;
    transition: 0.3s ease;
    min-height: 44px;
    min-width: 84px;
    text-align: center;
    touch-action: manipulation;
}

.contact-card a:hover {
    background: linear-gradient(45deg, #00c3ff, #7a00ff);
    border-color: transparent;
}

/* CTA */
.contact-cta {
    margin-top: 120px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
}

/* BOTÓN CTA */
.cta-btn {
    display: inline-block;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 10px;
    background: linear-gradient(45deg, #00c3ff, #7a00ff);
    color: white;
    transition: 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(122,0,255,0.4);
}

/* GLOW */
.contact-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(122,0,255,0.2),
            transparent 70%);
    right: -150px;
    top: 100px;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

/* ========================= */
/* ✨ SCROLL REVEAL */
/* ========================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================= */
/* 📱 MOBILE */
/* ========================= */
@media(max-width:768px){

    .contact-panel {
        padding: 100px 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h2 {
        font-size: 2.2rem;
    }

    .contact-cta h2 {
        font-size: 1.8rem;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* ========================= */
/* 📲 TABLET */
/* ========================= */
@media(min-width:769px) and (max-width:1024px){

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================= */
/* 🤝 TRUST BLOCK */
/* ========================= */
.contact-trust {
    margin-top: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.trust-text {
    color: #ddd;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* ITEMS */
.trust-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* ITEM */
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid #222;
    border-radius: 999px;
    transition: 0.3s ease;
}

/* DOT */
.trust-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00c3ff, #7a00ff);
    box-shadow: 0 0 12px rgba(122,0,255,0.6);
}

/* TEXT */
.trust-item p {
    color: #aaa;
    font-size: 0.9rem;
}

/* HOVER */
.trust-item:hover {
    border-color: #7a00ff;
    transform: translateY(-3px);
}

/* MOBILE */
@media(max-width:768px){

    .trust-items {
        flex-direction: column;
        align-items: center;
    }

    .trust-item {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}
