/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    background-color: #ffd8ec;
    color: #444;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #4b0082;
}

.logo {
    font-family: "Great Vibes", "Segoe Script", cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f4d03f;
}

.logo span {
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
}

.nav a {
    margin-left: 15px;
    text-decoration: none;
    color: #f4d03f;
    font-weight: 500;
    transition: color 0.3s ease-out;
    cursor: pointer;
}

.link:hover {
    color: white;
}

.log {
    margin-left: 15px;
    text-decoration: none;
    color: #f4d03f;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
    cursor: pointer;
}

.log:hover {
    color: #d63384;
}

/* Hero */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 60px 20px;
    background-color: #fff7fb;
    text-align: center;
}

.hero h2 {
    font-size: 2.2rem;
    color: #d63384;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.hero img {
    max-width: 300px;
    border-radius: 15px;
    margin-top: 20px;
}

.btn {
    background-color: #d63384;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn:hover {
    background-color: #b82b6e;
}

/* ===== Contacto ===== */
.contacto {
    display: flex;
    flex-direction: column;
    place-items: center;
    flex: 1;
    padding: 60px 20px;
    text-align: center;
}

.contacto h2 {
    color: #d63384;
    font-size: 2rem;
    margin-bottom: 15px;
}

.contacto p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contacto-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}


/* Formulario */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 300px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #d63384;
    font-size: 1rem;
}

.contact-form button {
    background-color: #d63384;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #b82b6e;
}


select {
    width: 100%;
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid #d63384;
    background-color: #fff;
    font-size: 1rem;
    color: #444;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}


select:hover {
    border-color: #b82b6e;
}


.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "▼";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #d63384;
    font-size: 0.8rem;
}


/* WhatsApp */
.contact-whatsapp {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.contact-whatsapp h3 {
    color: #d63384;
    margin-bottom: 10px;
}

.contact-whatsapp .btn-whatsapp {
    width: auto;
    padding: 12px 25px;
}


/* Responsive */
@media (max-width:768px) {
    .contacto-container {
        flex-direction: column;
    }
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-align: center;
    padding: 20px;
    background-color: #4b0082;
    color: white;
    margin-top: 40px;
}

.redes {
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin-top: 10px;
}

.redes a {
    color: #f4d03f;
    text-decoration: none;
    margin: 0 8px;
    font-weight: 600;
    transition: 0.3s;
}

.redes a:hover {
    color: white;
}

.footer a {
    color: #f4d03f;
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 1080px) {
    .body {
        width: 100%;
        height: 100dvh;
    }
}

@media (max-width:500px) {

    .body {
        width: 100%;
        height: 100dvh;
    }

    .header {
        display: block;
        justify-content: space-between;
        align-items: center;
        padding: 15px 30px;
        background-color: #4b0082;
    }
}