/* CONTENEDOR GENERAL */
    .contact-container {
        width: 50%;
        max-width: 600px;
        min-width: 320px;
        margin: 40px auto;
        padding: 25px 30px;
        background: #ffffff;
        border-radius: 18px;
        box-shadow: 0px 10px 25px rgba(0,0,0,0.15);
        box-sizing: border-box;
    }

    /* TITULO */
    .contact-container h2 {
        text-align: center;
        margin-bottom: 20px;
        font-size: 22px;
        color: #222;
    }

    /* FORM */
    .contact-form {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    /* GRUPO INPUT */
    .input-group {
        position: relative;
        margin-bottom: 18px;
        width: 100%;
    }

    /* ICONO */
    .input-group .icon {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: #666;
        font-size: 16px;
    }

    /* INPUT + TEXTAREA AJUSTADOS */
    .input-group input,
    .input-group textarea {
        width: 100%;
        padding: 10px 10px 10px 38px;
        border: 1px solid #bbb;
        border-radius: 8px;
        font-size: 15px;
        background: #fafafa;
        box-sizing: border-box;
        transition: 0.25s ease;
    }

    /* FOCUS */
    .input-group input:focus,
    .input-group textarea:focus {
        border-color: #0078d4;
        background: #fff;
        box-shadow: 0px 0px 6px rgba(0,120,212,0.35);
    }

    /* TEXTAREA */
    .textarea-box textarea {
        resize: none;
        height: 110px;
    }

    /* BOTÓN */
    .btn-enviar {
        padding: 10px;
        font-size: 16px;
        font-weight: 600;
        background-color: #0078d4;
        color: white;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: 0.3s;
    }

    .btn-enviar:hover {
        background-color: #005fa3;
        transform: scale(1.02);
    }