a{text-decoration:none;color:inherit}
.page-contacto { background-color: #09090b; }
.contacto-wrapper { min-height: 100vh; padding-top: 100px; padding-bottom: 100px; position: relative; overflow: hidden; }

.contacto-hero { padding: 40px 20px 60px; position: relative; z-index: 10; }
.hero-bg-blur.center { 
    position: absolute; top: -50%; left: 50%; transform: translateX(-50%); 
    width: 60vw; height: 60vw; filter: blur(120px); 
    background: radial-gradient(circle, rgba(242, 163, 15, 0.1) 0%, transparent 60%); 
    z-index: -1; pointer-events: none; 
}
.contacto-hero .badge-pill { display: flex; width: max-content; margin: 0 auto 20px; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 50px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: inherit; text-decoration: none;}
.contacto-hero .badge-pill a{color: inherit; text-decoration: none; }
.contacto-hero .badge-pill span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: #a1a1aa; font-family: var(--font-subtitle); }
.contacto-hero .hero-title { font-family: var(--font-title); font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 20px; color: #fff; line-height: 1; text-transform: uppercase; }
.contacto-hero .hero-desc { color: #a1a1aa; max-width: 650px; margin: 0 auto; line-height: 1.6; font-size: 1.1rem; }

.contacto-grid { display: grid; grid-template-columns: 1fr; gap: 40px; position: relative; z-index: 10; }
@media(min-width: 992px) { 
    .contacto-grid { grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; } 
}

.contacto-info { display: flex; flex-direction: column; gap: 20px; }
.info-card { 
    background: rgba(255,255,255,0.02); border: 1px solid var(--border); 
    padding: 25px; border-radius: 16px; display: flex; align-items: flex-start; gap: 20px; 
    transition: all 0.4s ease; 
}
.info-card:hover { 
    border-color: rgba(242, 163, 15, 0.4); background: rgba(242, 163, 15, 0.02); 
    transform: translateX(10px); 
}
.info-card h3 { font-family: var(--font-title); font-size: 1.4rem; color: #fff; margin-bottom: 6px; font-weight: 500; }
.info-card p { color: #a1a1aa; font-size: 0.95rem; line-height: 1.5; margin: 0; }

.social-block { 
    margin-top: 20px; padding: 30px; 
    background: linear-gradient(to right, rgba(7, 98, 217, 0.05), transparent); 
    border-left: 3px solid #0762D9; border-radius: 0 16px 16px 0; 
}
.social-block h3 { font-family: var(--font-title); font-size: 1.3rem; color: #fff; margin-bottom: 20px; }


.contacto-form-wrapper { 
    background: #121214; border: 1px solid var(--border); 
    padding: 40px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); 
}
.contacto-form { display: flex; flex-direction: column; gap: 25px; }
.form-row { display: flex; flex-direction: column; gap: 25px; }
@media(min-width: 768px) { .form-row { flex-direction: row; gap: 20px; } .form-group.half { flex: 1; } }

.form-group { display: flex; flex-direction: column; gap: 10px; position: relative; }
.form-group label { color: #fff; font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

.form-group input, .form-group select, .form-group textarea { 
    background: #09090b; border: 1px solid var(--border); padding: 16px 20px; 
    border-radius: 12px; color: #fff; font-family: var(--font-body); font-size: 1rem; 
    transition: all 0.3s ease; outline: none; width: 100%; box-sizing: border-box;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #555; }

.form-group input:focus, .form-group select:focus, .form-group textarea:focus { 
    border-color: #F2A30F; box-shadow: 0 0 15px rgba(242, 163, 15, 0.2); 
    background: #1a1a1c; 
}
.form-group textarea { resize: vertical; min-height: 150px; }

.select-wrapper { position: relative; }
.form-group select { appearance: none; cursor: pointer; padding-right: 45px; }
.form-group select option { background: #121214; color: #fff; }
.select-icon { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: #a1a1aa; pointer-events: none; width: 18px; height: 18px; }

.form-submit { width: 100%; height: 60px; font-size: 1.1rem; border: none; margin-top: 10px; cursor: pointer; }


.mail-link {
    color: #a1a1aa;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.mail-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #F2A30F;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.info-card:hover .mail-link {
    color: #F2A30F;
}
.info-card:hover .mail-link::after {
    width: 100%;
}

.social-btn { 
    width: 44px; 
    height: 44px; 
    border-radius: 50%; 
    background: rgba(255,255,255,0.05); 
    border: 1px solid var(--border); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.social-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: brightness(0) invert(0.7);
}

.social-btn:hover {
    transform: translateY(-6px) scale(1.1);
    border-color: #0762D9;
    box-shadow: 0 10px 20px rgba(7, 98, 217, 0.3);
    background: rgba(7, 98, 217, 0.1);
}

.social-btn:hover .social-img {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(27%) sepia(98%) saturate(2250%) hue-rotate(209deg) brightness(101%) contrast(104%);
}
.social-row{
    display: flex;
    gap: 15px;
}


a.info-card-link {
    text-decoration: none;
    cursor: pointer;
    display: flex;
}

a.info-card-link:hover {
    border-color: rgba(242, 163, 15, 0.6); 
    background: rgba(242, 163, 15, 0.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

a.info-card-link h3 {
    transition: color 0.3s ease;
}

a.info-card-link:hover h3 {
    color: #F2A30F;
}

.social-block-centered {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(to bottom, rgba(7, 98, 217, 0.05), transparent);
    border-left: none;
    border-top: 3px solid #0762D9;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-block-centered h3 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.social-subtitle {
    color: #a1a1aa;
    margin-bottom: 25px;
    font-size: 1rem;
}

.social-row.justify-center {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media(max-width: 480px) {
    .contacto-hero .hero-title { font-size: 2.5rem; }
    .contacto-hero .hero-desc { font-size: 0.95rem; }
    .social-block-centered h3 { font-size: 1.5rem; }
    .contacto-hero .badge-pill span{ font-size: 0.35rem; }
}

@media (max-width: 360px) {
    .badge-pill{
        display:flex;
        flex-direction: column;
    }
    .contacto-hero .badge-pill span{ font-size: 0.3rem; }
}

@media (max-width: 320px) {
    .contacto-hero .badge-pill span{ font-size: 0.25rem; }
}