.contacto-seccion {
    max-width: 800px;
    margin: 200px auto;
    padding: 20px;
}

.contacto-titulo {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #2B2B2B;
}

.contacto-form {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contacto-input,
.contacto-select,
.contacto-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 50px;
    font-size: 16px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    background-color: rgba(212, 212, 212, 0.2);
}

.contacto-fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

.contacto-legend {
    font-size: 24px;
    font-weight: 600;
    color: #00B9F3;
    margin-bottom: 24px;
    border-bottom: 2px solid #FFC700;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #D4D4D4 20%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00B9F3;
    box-shadow: 0 0 0 2px rgba(0,185,243,0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%232B2B2B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.form-row input {
    width: 50%;
    margin-bottom: 0;
}


.form-submit{
    display: flex;
    justify-content: end;
}
.contacto-submit {
    width: 33%;
    padding: 14px;
    background: #FFC700;
    color: #000000;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contacto-submit:hover {
    background: #FFE55C;
}

@media (max-width: 768px) {
    .contacto-seccion {
        margin: 200px auto;
        padding: 16px;
    }

    .contacto-form {
        padding: 20px;
    }
    .form-submit {
        justify-content: center;
    }
    .contacto-submit{
        width: 100%;
    }
    .form-group {
        margin-bottom: 16px;
    }

    .form-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .form-row input {
        width: 100%;
        margin-bottom: 24px;
    }
}