.contacto-main {
    max-width: 600px;
    margin: 44px auto 34px auto;
    padding: 42px 18px 34px 18px;
    background: #fff7f2;
    border-radius: 22px;
    box-shadow: 0 2px 18px #f5d6c733;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.contacto-main h1 {
    color: #b88258;
    font-size: 2.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px #ffd7b545;
}

.contacto-main p {
    font-size: 1.25rem;
    color: #543524;
    text-align: center;
    line-height: 1.75;
    margin-bottom: 10px;
    font-weight: 500;
}

.contacto-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
}

.contacto-form label {
    font-size: 1.14rem;
    color: #a76a4b;
    margin-bottom: 3px;
    font-weight: 700;
}

.contacto-form input,
.contacto-form textarea {
    padding: 12px;
    font-size: 1.09rem;
    border: 2px solid #ffd7b5;
    border-radius: 9px;
    background: #fff;
    color: #543524;
    font-family: 'Crimson Pro', serif;
    margin-bottom: 8px;
    outline: none;
    transition: border 0.2s;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
    border-color: #b88258;
}

.contacto-form button {
    background: #ffd7b5;
    color: #b88258;
    font-weight: bold;
    font-size: 1.14rem;
    padding: 13px 0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 1px 5px #ffe1cf70;
    transition: background 0.2s, color 0.2s;
}
.contacto-form button:hover {
    background: #f38c5a;
    color: #fff;
}

.contacto-redes {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
}

.red-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffe4c7;
    border-radius: 12px;
    padding: 11px 18px;
    color: #b88258;
    font-weight: 700;
    font-size: 1.12rem;
    text-decoration: none;
    box-shadow: 0 2px 7px #ffe1cf55;
    transition: background 0.17s, color 0.17s, transform 0.18s;
}
.red-social-link img {
    height: 28px;
    width: 28px;
    filter: drop-shadow(0 1px 5px #ffd7b5);
}
.red-social-link:hover {
    background: #ffd7b5;
    color: #fff;
    transform: translateY(-2px) scale(1.06);
}

@media (max-width: 600px) {
    .contacto-main {
        padding: 15px 3vw 20px 3vw;
        max-width: 99vw;
    }
    .contacto-main h1 {
        font-size: 1.55rem;
    }
    .contacto-main p {
        font-size: 1.06rem;
    }
    .contacto-redes {
        gap: 13px;
        flex-direction: column;
        align-items: center;
    }
    .red-social-link {
        padding: 10px 10px;
        font-size: 1rem;
    }
    .red-social-link img {
        height: 24px;
        width: 24px;
    }
}
