body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #151217;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-bottom: 1px solid #e1dce5;
    position: relative;
}

.logo img {
    height: 50px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #6a0dad;
    cursor: pointer;
    z-index: 1001;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #151217;
}

nav ul li a:hover {
    color: #6a0dad;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
    }

    nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

    nav.show {
        display: block;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
    }

    nav ul li a {
        color: #6a0dad;
        font-size: 16px;
    }
}

/* Layout */
.layout-container {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.layout-content-container {
    max-width: 720px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.layout-content-container h1 {
    font-size: 2.2rem;
    color: #151217;
    margin-bottom: 10px;
}

.layout-content-container p {
    font-size: 1rem;
    color: #776586;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Formulario */
form {
    margin-top: 20px;
}

label {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

label p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #151217;
}

input,
textarea {
    padding: 12px 15px;
    font-size: 14px;
    background-color: #f2f0f4;
    border: none;
    border-radius: 8px;
    color: #151217;
}

input::placeholder,
textarea::placeholder {
    color: #aaa;
}

textarea {
    resize: none;
    min-height: 100px;
}

button {
    background-color: #ae68e3;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #9156c4;
}

/* Info empresa */
h2 {
    font-size: 1.4rem;
    margin-top: 40px;
}

.grid {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 12px 20px;
    margin-top: 20px;
    border-top: 1px solid #e1dce5;
    padding-top: 20px;
}

.grid p {
    margin: 0;
}

.grid p:nth-child(odd) {
    color: #776586;
    font-weight: 500;
}

.grid p:nth-child(even) {
    color: #151217;
}

/* Footer */
footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 15px 0;
    margin-top: 40px;
    font-size: 0.9rem;
}