.contact-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.sidebar {
    flex: 1;
    max-width: 33%;
}

.form-section {
    flex: 2;
}

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

.form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffc000;
    box-shadow: 0 0 0 2px rgba(255, 192, 0, 0.2);
}

.form-input.message {
    height: 150px;
    resize: vertical;
}

.button-primary {
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    padding: 0.8em 2em;
    background: #ffc000;
    border: 2px solid transparent !important;
    border-radius: 0.5em;
    box-shadow: 0 4px 15px rgba(242, 235, 33, 0.3);
    color: #010101 !important;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.button-primary p{
    font-size: 16px;
    margin: 0;
}

.button-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.button-primary:hover {
    background: #010101 !important;
    color: #ffc000 !important;
    border-color: #ffc000 !important;
    box-shadow: 0 6px 20px rgba(242, 235, 33, 0.5);
    transform: translateY(-3px);
}

.button-primary:hover::after {
    left: 150%;
}

.button-primary:active {
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.text-right {
    text-align: right;
}

/* Estilos existentes mantenidos */
.border-title {
    font-size: 32px;
    line-height: 32px;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.border-title:after {
    content: "";
    position: absolute;
    display: inline-block;
    bottom: 0px;
    width: 150px;
    height: 1px;
    background: #dadada;
    left: 50%;
    margin-left: -80px;
}

.border-title:before {
    content: "";
    position: absolute;
    display: inline-block;
    bottom: 0px;
    width: 50px;
    height: 2px;
    background: #ffc000;
    left: 50%;
    margin-left: -30px;
    z-index: 1;
}

.border-title.border-left {
    padding-bottom: 20px;
    margin-bottom: 40px;
}

h3.border-title.border-left {
    font-size: 24px;
    padding-bottom: 15px;
}

.border-title.border-left:before,
.border-title.border-left:after {
    left: 0;
    margin-left: 0;
}

.sidebar .widget-title {
    font-size: 20px;
    font-weight: 700;
    position: relative;
    margin-bottom: 40px;
    margin-top: 0;
    padding-bottom: 15px;
    line-height: normal;
}

.sidebar .widget-title:after {
    content: "";
    position: absolute;
    display: inline-block;
    bottom: 0px;
    width: 150px;
    height: 1px;
    left: 0;
    background: #dadada;
}

.sidebar .widget-title:before {
    content: "";
    position: absolute;
    display: inline-block;
    bottom: 0px;
    width: 50px;
    height: 2px;
    left: 0;
    z-index: 1;
    background: #ffc000;
}

.contact-info-box {
    margin-top: 20px;
}

.contact-info-box i {
    float: left;
    font-size: 24px;
    color: #ffc000;
}

.contact-info-box-content {
    padding-left: 40px;
}

.contact-info-box-content h4 {
    font-size: 16px;
    margin-top: 0;
    line-height: normal;
    font-weight: 700;
}

.contact-info-box-content p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .sidebar,
    .form-section {
        max-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
    }
}