.contact-hero-v2 {
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #000;
    overflow: hidden;
    z-index: 1;
    margin-top: 0;
}

.hero-bg-text {
    position: absolute;
    bottom: -50px;
    left: -20px;
    font-size: 25vw;
    font-family: var(--font-main);
    font-weight: 900;
    color: rgba(255, 215, 0, 0.03);
    line-height: 0.8;
    z-index: 0;
    pointer-events: none;
}

.giant-title {
    padding-top: 100px;
    position: relative;
    z-index: 5;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    font-family: var(--font-main);
    color: var(--white);
    position: relative;
    z-index: 1;
}

.gold-hollow {
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
}

.contact-layout {
    background: #000;
    padding-bottom: 150px;
}

.contact-flex {
    display: flex;
    gap: 100px;
}

.contact-flex {
    display: flex;
    gap: 80px;
    padding: 100px 5%;
    background: #000;
}

.contact-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.tech-tag {
    font-family: 'Courier New', Courier, monospace;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 20px;
    border-left: 3px solid var(--gold);
    padding-left: 10px;
}

.sidebar-block {
    margin-bottom: 70px;
    border-bottom: 1px solid #111;
    padding-bottom: 30px;
}

.massive-text {
    font-family: var(--font-main);
    font-size: 2.2rem;
    line-height: 1;
    color: var(--white);
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.sub-text {
    font-family: var(--font-main);
    color: #444;
    font-size: 1rem;
    margin-top: 10px;
    letter-spacing: 2px;
}

.link-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.massive-link {
    font-family: var(--font-main);
    font-size: 2.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 900;
    line-height: 0.9;
    transition: all 0.3s ease;
}

.massive-link .arrow {
    color: var(--gold);
    transition: transform 0.3s ease;
    display: inline-block;
}

.massive-link:hover {
    color: var(--gold);
}

.massive-link:hover .arrow {
    transform: translateX(15px);
}

.social-massive {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.social-massive a {
    font-family: var(--font-main);
    color: #222;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    transition: 0.3s;
}

.social-massive a:hover {
    color: var(--white);
}

.giant-title {
    margin-left: 5%;
    margin-bottom: 20px;
}

.contact-main-form {
    flex: 2;
    background: #050505;
    padding: 80px;
    border: 1px solid #111;
}

.input-wrapper {
    margin-bottom: 40px;
}

.input-wrapper label {
    display: block;
    color: #444;
    font-family: var(--font-main);
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

input, select, textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #222;
    padding: 15px 0;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1.2rem;
    transition: 0.4s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.btn-submit-massive {
    width: 100%;
    background: var(--gold);
    color: #000;
    border: none;
    padding: 30px;
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    margin-top: 20px;
}

.btn-submit-massive:hover {
    background: var(--white);
    transform: scale(1.02);
}

/* Estilo para el contenedor de dirección */
#wrapper-direccion {
    border-left: 3px solid #ffcc00; /* Línea amarilla de Tenchulo */
    padding-left: 15px;
    margin-bottom: 20px;
    background: rgba(255, 204, 0, 0.03); /* Un fondo muy sutil */
    padding-top: 10px;
    padding-bottom: 10px;
}

#cliente-direccion {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#cliente-direccion:focus {
    outline: none;
    border-bottom-color: #ffcc00;
}

/* El texto pequeño de ayuda */
#wrapper-direccion small {
    font-family: 'Inter', sans-serif; /* O la que uses */
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Animación de entrada */
.animate-fade-in {
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}