body {
  background: linear-gradient(135deg, rgb(67, 80, 115) 0%, rgb(246, 199, 65) 40%, rgb(67, 79, 100) 70%, rgb(45, 60, 96) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
}
.remodel-container {
  background: #fff;
  border-top-right-radius: 2.5rem;
  border-bottom-right-radius: 2.5rem;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  box-shadow: 0 8px 32px rgba(44, 56, 85, 0.15);
  padding: 3rem 2rem 3rem 3rem; /* <-- Cambia aquí el padding izquierdo */
  max-width: 450px;
  text-align: center;
  border: 3px solid #22325a;
  position: relative;
  overflow: hidden;
}
.remodel-container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 100%;
  background: linear-gradient(180deg, #22325a 80%, #f7c948 100%);
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  box-shadow: 2px 0 8px rgba(44,56,85,0.10);
}
.remodel-logo {
  max-width: 180px;
  margin-bottom: 1.5rem;
}
.remodel-title {
  color: #22325a;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.remodel-highlight {
  color: #f7c948;
  font-weight: 800;
}
.remodel-text {
  color: #22325a;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.remodel-footer {
  color: #888;
  font-size: 0.95rem;
  margin-top: 2rem;
}
.remodel-underline {
  border-bottom: 3px solid #f7c948;
  display: inline-block;
  padding-bottom: 2px;
}
@media (max-width: 576px) {
  .remodel-container {
    padding: 2rem 0.5rem;
  }
}

.container {
  display: flex;
  border-radius: 25px;
  overflow: hidden;
  border: 3px solid #1a3357;
  background: #fff;
}

.left-bar {
  width: 20px;
  background: #1a3357;
}

.content {
  padding: 40px 30px 30px 30px; /* padding-left igual o mayor al ancho de .left-bar */
  flex: 1;
}

.remodel-social-link {
  margin: 0 8px; /* separa los iconos */
  text-decoration: none;
}

.remodel-social-icon {
  font-size: 2rem; /* hazlos más grandes */
  vertical-align: middle;
  color: #3b5998; /* color por defecto, Facebook azul */
  transition: color 0.2s;
}

.remodel-social-link[aria-label="Instagram"] .remodel-social-icon {
  color: #E4405F; /* color oficial de Instagram */
}

.remodel-social-link[aria-label="Facebook"] .remodel-social-icon {
  color: #3b5998; /* color oficial de Facebook */
}
