#diseño {
  text-align: center;
  padding: 2rem 0;
}

#diseño h2 {
  font-size: 30px;
  font-weight: 700;
  color: #c2185b;
  margin-bottom: 4rem; /* <-- aquí aumentamos la separación */
}

/* Contenedor íconos */
.icon-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Cada ícono + texto */
.icon-box {
  width: 200px;
  text-decoration: none;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Ícono redondo */
.icon-box img {
  width: 100px;
  height: 100px;
  border-radius: 20%; /* Si quieres esquinas redondeadas, cambia a 20% */
  background-color: #f1f5f0;
  padding: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  margin-bottom: 0.5rem;
  object-fit: contain;
}

/* Texto debajo del ícono */
.icon-box span {
  display: block;
  font-size: 14px;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

/* Animación hover */
.icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.icon-box:hover img {
  transform: scale(1.1);
}

.icon-box:hover span {
  color: #007cba;
  text-decoration: underline;
}

/* Botones inferiores */
.support-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.support-links a {
  padding: 10px 20px;
  border: 2px solid #007cba;
  border-radius: 25px; /* Más moderno */
  text-decoration: none;
  color: #007cba;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.support-links a:hover {
  background-color: #007cba;
  color: #fff;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .icon-box {
    width: 45%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .icon-box {
    width: 100%;
  }
}


/* ========================================================= */
/* ESTILOS GENERALES DE ANCHO COMPLETO (SEGÚN TU REQUERIMIENTO) */
/* ========================================================= */
#wrapper,
.container,
.container-fluid,
.page-width {
    max-width: 100% !important;
    width: 100% !important;
    /* Mantenemos el padding lateral de la página, pero podemos reducirlo un poco si es excesivo */
    padding-left: 10px !important; /* Un poco menos de padding en los bordes de la página */
    padding-right: 10px !important; /* Un poco menos de padding en los bordes de la página */
    box-sizing: border-box;
}

body {
    margin: 0 !important;
    background-color: #fff;
}

/* ========================================================= */
/* ESTILOS PARA LOS BLOQUES 'plan-elegante'*/
/* ========================================================= */


/* Estilos generales para los planes */
.plan-elegante {
    text-align: center;
    border: 1px solid #ddd;
    padding: 20px 15px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-elegante h5 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.4em;
    color: #007bff;
    line-height: 1.2;
}

.plan-elegante p {
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 1.05em;
    color: #495057;
}

.plan-elegante p.price {
    margin-bottom: 18px;
    font-size: 1.8em;
    font-weight: bold;
    color: #28a745;
}

.plan-elegante span[style*="color: #6c757d;"] {
    font-size: 1em;
    line-height: 1.3;
}

.plan-elegante .btn {
    margin-top: auto;
    width: calc(100% - 30px);
    margin-left: auto;
    margin-right: auto;
    padding: 12px 20px;
    font-size: 1.1em;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 700;
}

.plan-elegante .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.plan-elegante .btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}

.plan-elegante .btn-outline-primary {
    background-color: transparent;
    border-color: #007bff;
    color: #007bff;
}

.plan-elegante .btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}

.plan-elegante .btn-outline-primary.btn-block[style*="margin-top: 20px;"] {
    margin-top: auto !important;
}

/* Ajustes espacio entre columnas */
.col-md-4 {
    padding-left: 5px;
    padding-right: 5px;
}

.col-md-4.mb-4 {
    margin-bottom: 20px !important;
}

.row {
    margin-left: -5px;
    margin-right: -5px;
}

/* Responsive para móviles */
@media (max-width: 575.98px) {
  .plan-elegante .btn {
    font-size: 1em;
    padding: 10px 15px;
    width: 100%; /* Botón ocupa todo el ancho en móvil */
  }

  .plan-elegante {
    padding: 15px;
  }

  .plan-elegante h5 {
    font-size: 1.2em;
  }

  .plan-elegante p.price {
    font-size: 1.4em;
  }
}
