.container-contacto{
    padding-top: 120px;
    padding-bottom: 50px;
    max-width: 1200px;
    margin: auto;
}

.container-contacto_item{
    display: flex;
    gap: 55px;
    align-items: center;
    flex-direction: column;
    margin: 0 30px;
}
.container-contacto-descripcion{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.container-contacto-descripcion div{
    padding: 35px 20px;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.09);
    border-left: 4px solid #374151;
}
.container-redes-sociales p{
    display: flex;
    gap: 10px;
}
.container-redes-sociales p i{
    font-size: 18px;
    margin-top: 5px;
}
.container-redes-sociales p a{
    transition: transform 0.5s;
}
.container-redes-sociales a:hover{
    transform: scale(1.3);
}

@media screen and (min-width: 855px){
    .container-contacto_item{
        flex-direction: row;
    }
}


/* DISEÑO PARA EL FORMULARIO */
.container-form {
    max-width: 1200px;
  }
  
  .contact-form-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }
  
  .form-header {
    background: linear-gradient(135deg, #374151, #6C8BA9);
    padding: 2rem;
    position: relative;
  }
  
  .form-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  }
  
  .form-header h2 {
    color: white !important;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    position: relative;
  }
  
  .form-header p {
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    line-height: 1.6;
  }
  
  .form-body {
    padding: 2.5rem;
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .form-group {
    margin-bottom: 0.1rem;
  }
  
  .form-group.full-width {
    grid-column: span 2;
  }
  
  .form-label {
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 500;
    color: #374151;
  }
  
  .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  .form-control:focus {
    border-color: #1F2937;
    box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1);
    outline: none;
  }
  
  .form-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
  }
  
  .btn {
    background-color: #1F2937;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .btn:hover {
    background-color: #374151;
    transform: translateY(-2px);
  }
  
  .btn:active {
    transform: translateY(0);
  }
  
  .required::after {
    content: " *";
    color: #ef4444;
  }
  
  @media (max-width: 768px) {
    .form-grid {
      grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
      grid-column: span 1;
    }
  }