/* Estilos generales */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
}
.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 20px;
  }
.header-container, .precios-container, .recuadros-container, .contacto-container, .footer-container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

/* Estilos del Header */

header {
    background-color: #2c3e50;
    color: #fff;
    padding: 50px 0;
}
.titulo {
    font-size: 28px; /* Tamaño del texto */
    font-weight: bold; /* Texto en negrita */
    margin-top: 10px; /* Espaciado superior */
}
/* Modal */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}
.modal-content {
    margin: 20% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    background-color: #fefefe;
    text-align: center;
    position: relative;
    border-radius: 8px;
}
.modal-close {
    color: #aaa;
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}


/* Estilos de los Precios */

.precio-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    width: 300px;
    margin: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.precio-card h3 {
    color: #2c3e50;
}

.precio {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
}

/* Estilos CSS para el efecto de transición en los precios */
.precio-card {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.precio-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Estilos de los Recuadros */

.recuadros-container {
  text-align: center;
}

.recuadro {
  background-color: #3498db;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  width: 300px;
  margin: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

/* Estilos del Contacto */

.contacto ul {
    list-style: none;
    padding: 0;
    text-align: center;
}
.contacto-container {
    font-family: 'Rethink Sans', sans-serif; /* Cambia la fuente a 'Rethink Sans' */
    color: #333; /* Color del texto */
    line-height: 1.6; /* Altura de línea */
    font-size: 16px; /* Tamaño del texto */
}

.contacto-container h2 {
    font-size: 28px; /* Tamaño del título 'Contacto' */
    margin-bottom: 15px; /* Espaciado inferior */
    font-weight: bold; 
}

.contacto-container p {
    margin-bottom: 10px; 
    font-weight: bold; 
}

.contacto-container ul {
    padding-left: 20px; 
}

.contacto-container li {
    list-style: none; 
    margin-bottom: 5px; 
    font-weight: bold;  
}

/* Estilos del Footer */

footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.redes-sociales img {
    width: 30px;
    margin: 0 5px;
}

.redes-sociales a {
    text-decoration: none;
    color: #fff;
}

.fa-facebook {
    color: #1877f2;
}

.fa-instagram {
    color: #bc2a8d;
}

.fa-twitter {
    color: #1da1f2; 
}

.fa-whatsapp {
    color: #25d366;
}

.plans-container {
    display: flex;
    justify-content: center;
    gap: 20px; /* Espacio entre los planes */
    margin-top: 40px; /* Espaciado opcional en la parte superior */
  }
  
  .plan {
    border-radius: 16px;
    /* Otras reglas de estilo existentes para los planes */
  }
.plan {
    border-radius: 16px;
    box-shadow: 0 30px 30px -25px rgba(0, 38, 255, 0.205);
    padding: 10px;
    background-color: #fff;
    color: #697e91;
    max-width: 300px;
  }
  
  .plan strong {
    font-weight: 600;
    color: #425275;
  }
  
  .plan .inner {
    align-items: center;
    padding: 20px;
    padding-top: 40px;
    background-color: #ecf0ff;
    border-radius: 12px;
    position: relative;
  }
  
  .plan .pricing {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #bed6fb;
    border-radius: 99em 0 0 99em;
    display: flex;
    align-items: center;
    padding: 0.625em 0.75em;
    font-size: 1.25rem;
    font-weight: 600;
    color: #425475;
  }
  
  .plan .pricing small {
    color: #707a91;
    font-size: 0.75em;
    margin-left: 0.25em;
  }
  
  .plan .title {
    font-weight: 600;
    font-size: 1.25rem;
    color: #425675;
  }
  
  .plan .title + * {
    margin-top: 0.75rem;
  }
  
  .plan .info + * {
    margin-top: 1rem;
  }
  
  .plan .features {
    display: flex;
    flex-direction: column;
  }
  
  .plan .features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .plan .features li + * {
    margin-top: 0.75rem;
  }
  
  .plan .features .icon {
    background-color: #1FCAC5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
  }
  
  .plan .features .icon svg {
    width: 14px;
    height: 14px;
  }
  
  .plan .features + * {
    margin-top: 1.25rem;
  }
  
  .plan .action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
  }
  
  .plan .button {
    background-color: #6558d3;
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
    font-size: 1.125rem;
    text-align: center;
    border: 0;
    outline: 0;
    width: 100%;
    padding: 0.625em 0.75em;
    text-decoration: none;
  }
  
  .plan .button:hover, .plan .button:focus {
    background-color: #4133B7;
  }