body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f4f1ea;
    color: #1a1a1a;
}

.container {
    max-width: 600px;
    margin: auto;
    text-align: center;
    padding: 60px 20px;
}

.logo {
    width: 180px;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.subtitle {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 40px;
}

.contact-info {
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.contact-info p {
    margin: 5px 0;
}

/* FORM */
.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 12px;
    border: 1px solid #ddd;
    background: white;
    font-family: inherit;
}

textarea {
    min-height: 100px;
}

button {
    padding: 14px;
    border: none;
    background: #c1121f; /* rojo del logo */
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #a10e19;
}

/* WhatsApp */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #c1121f;
    color: white;
    padding: 14px 16px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }
}