/* ===== RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ===== VARIABLES ===== */
.metallink-network {
    --green: #4c7766;
    --cream: #ebe6e0;
    --dark: #364153;
    --white: #ffffff;
    --shadow-sm: 0px 4px 6px -4px #0000001a, 0px 10px 15px -3px #0000001a;
    --shadow-lg: 0px 25px 50px -12px #00000040;
    --font-regular: "Inter", Helvetica, sans-serif;
    --font-medium: "Inter", Helvetica, sans-serif;

    display: flex;
    flex-direction: column;
    width: 100% !important;
    max-width: 100% !important;
    align-items: center;
    position: relative;
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.metallink-network .header {
    display: inline-flex;
    align-items: center;
    gap: 286px;
    position: relative;
    flex: 0 0 auto;
}

.metallink-network .container {
    display: flex;
    width: 150px;
    height: 150px;
    align-items: center;
    position: relative;
}

.metallink-network .container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.metallink-network .link {
    position: relative;
    flex: 1 1 auto;
    height: 150px;
    background-size: cover;
    background-position: 50% 50%;
}

/* ===== NAVEGACIÓN ===== */
.metallink-network .navigation {
    position: relative;
    width: 456.49px;
    height: 60px;
    background-color: #4c7766ed;
    border-radius: 26843500px;
    overflow: hidden;
}

.metallink-network .div {
    position: absolute;
    top: 0;
    left: 0;
    width: 456px;
    height: 60px;
    opacity: 0.1;
    background-size: cover;
    background-position: 50% 50%;
}

.metallink-network .div-wrapper,
.metallink-network .link-2,
.metallink-network .link-3,
.metallink-network .link-4 {
    position: absolute;
    top: 16px;
    height: 28px;
    display: flex;
    text-decoration: none;
}

.metallink-network .div-wrapper { left: 40px; width: 43px; }
.metallink-network .link-2 { left: 123px; width: 69px; }
.metallink-network .link-3 { left: 232px; width: 73px; }
.metallink-network .link-4 { left: 344px; width: 72px; }

.metallink-network .text-wrapper,
.metallink-network .text-wrapper-2,
.metallink-network .text-wrapper-3 {
    margin-top: -1.4px;
    height: 28px;
    font-family: var(--font-regular);
    font-weight: 400;
    color: var(--white);
    font-size: 18px;
    line-height: 28px;
    white-space: nowrap;
}

.metallink-network .text-wrapper { width: 45px; }
.metallink-network .text-wrapper-2 { width: 78px; }
.metallink-network .text-wrapper-3 { width: 79px; }

/* ===== BOTÓN CTA ===== */
.metallink-network .button {
    all: unset;
    box-sizing: border-box;
    margin-top: 10px;
    width: 171.71px;
    height: 60px;
    display: flex;
    background-color: #4c7766;
    border-radius: 26843500px;
    box-shadow: 0px 4px 6px -4px #0000001a, 0px 10px 15px -3px #0000001a;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.metallink-network .text-wrapper-4 {
    font-family: var(--font-medium);
    font-weight: 500;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
}

/* ===== CONTENIDO PRINCIPAL ===== */
.main-content {
    width: 100%;
}

/* Área principal de contacto */
.contact-section {
    position: relative;
    width: 100%;
    background-color: var(--cream);
    padding: 80px 0;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.contact-shell {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Encabezado principal */
.contact-intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.contact-heading,
.contact-description-wrap {
    display: flex;
    justify-content: center;
}

.contact-title {
    margin: 0;
    font-family: var(--font-medium);
    font-weight: 600;
    color: var(--dark);
    font-size: 42px;
    line-height: 1.15;
}

.contact-description {
    margin: 0;
    max-width: 640px;
    font-family: var(--font-regular);
    font-weight: 400;
    color: var(--dark);
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    opacity: 0.8;
}

/* Formulario y datos de contacto */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 100%;
}

/* Formulario principal */
.contact-form-card {
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-title-wrap {
    display: flex;
    width: 100%;
}

.contact-form-title {
    margin: 0;
    font-family: var(--font-medium);
    font-weight: 600;
    color: var(--green);
    font-size: 22px;
    line-height: 1.3;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Campos del formulario */
.contact-field,
.contact-message-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.contact-label-wrap,
.contact-hours-item,
.contact-info-title-wrap,
.contact-info-text-wrap {
    width: 100%;
}

.contact-label {
    font-family: var(--font-medium);
    font-weight: 500;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.5;
}

.contact-input-wrap {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #d1d5dc;
    background-color: var(--white);
}

.contact-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-regular);
    font-size: 15px;
    color: var(--dark);
}

.contact-textarea-wrap {
    display: flex;
    align-items: flex-start;
    padding: 10px 14px;
    width: 100%;
    min-height: 100px;
    border-radius: 8px;
    border: 1px solid #d1d5dc;
    background-color: var(--white);
}

.contact-textarea {
    width: 100%;
    min-height: 80px;
    border: none;
    outline: none;
    background: transparent;
    resize: none;
    font-family: var(--font-regular);
    font-size: 15px;
    color: var(--dark);
}

.contact-submit-button {
    width: 100%;
    height: 52px;
    background-color: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
}

.contact-submit-text {
    font-family: var(--font-medium);
    font-weight: 500;
    color: var(--white);
    font-size: 16px;
    text-align: center;
}

/* Tarjetas con información directa */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background-color: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon-wrap {
    display: flex;
    width: 44px;
    height: 44px;
    min-width: 44px;
    align-items: center;
    justify-content: center;
    background-color: var(--green);
    border-radius: 50%;
}

.contact-icon {
    position: relative;
    width: 22px;
    height: 22px;
}

.contact-icon-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-info-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-title {
    margin: 0;
    font-family: var(--font-medium);
    font-weight: 600;
    color: var(--green);
    font-size: 17px;
    line-height: 1.4;
}

.contact-info-text {
    margin: 0;
    font-family: var(--font-regular);
    font-weight: 400;
    color: var(--dark);
    font-size: 14px;
    line-height: 1.5;
}

/* Horario de atención */
.contact-hours-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background-color: var(--green);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.contact-hours-title {
    margin: 0;
    font-family: var(--font-medium);
    font-weight: 600;
    color: var(--white);
    font-size: 17px;
    line-height: 1.4;
}

.contact-hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-hours-text {
    margin: 0;
    font-family: var(--font-regular);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
}

/* ===== FOOTER ===== */
.metallink-network .footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 48px 229.6px 48px 229.6px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #4c7766;
}

.metallink-network .container-50 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(1, minmax(0, 1fr));
    gap: 32px;
    padding: 0;
    width: 100%;
}

.metallink-network .container-51 {
    position: relative;
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.metallink-network .infraestructura-y-wrapper {
    position: relative;
    align-self: stretch;
    width: 100%;
    opacity: 0.9;
}

.metallink-network .infraestructura-y {
    width: 281px;
    font-family: "Inter-Regular", Helvetica;
    font-weight: 400;
    color: #ebe6e0;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
}

.metallink-network .container-52 {
    position: relative;
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.metallink-network .text-wrapper-41 {
    font-family: "Inter-Medium", Helvetica;
    font-weight: 500;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 28px;
    white-space: nowrap;
}

.metallink-network .list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.metallink-network .text-wrapper-42 {
    font-family: "Inter-Regular", Helvetica;
    font-weight: 400;
    color: #ebe6e0;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    white-space: nowrap;
    text-decoration: none;
}

.metallink-network .container-53 {
    position: relative;
    grid-row: 1 / 2;
    grid-column: 3 / 4;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.metallink-network .container-54 {
    position: relative;
    grid-row: 1 / 2;
    grid-column: 4 / 5;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-style: normal;
}

.metallink-network .list-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.metallink-network .list-3 {
    display: flex;
    flex-direction: column;
    height: 88px;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
}

.metallink-network .container-20 {
    position: relative;
    grid-row: 1 / 2;
    grid-column: 4 / 5;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.metallink-network .paragraph-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24.8px 0px 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    border-top-width: 0.8px;
    border-top-style: solid;
    border-color: #ffffff33;
}

.metallink-network .element-metallink {
    font-family: "Inter-Regular", Helvetica;
    font-weight: 400;
    color: #ebe6e0;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0;
    line-height: 24px;
    white-space: nowrap;
}
