

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    padding: 15px;
}

.contacto_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.primary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.primary a {
    color: white;
    text-decoration: none;
    padding: 10px;
}

.politicas_privacidad {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
    padding: 20px;
}

.contacto {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.input-box {
    width: 100%;
    margin-bottom: 15px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

footer {
    width: 100%;
    background-color: #222;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-links {
    display: flex;
    gap: 15px;
    margin: 10px 0;
}

.footer-icons {
    display: flex;
    gap: 15px;
}
