@charset "UTF-8";
.montserrat {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.montserrat {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

body, a {
  font-family: "Montserrat", "Roboto", sans-serif;
  background-color: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* PRIMARY BUTTONS */
.btn {
  /*background: $primary-color;
  color: #fff;*/
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.main-cont {
  min-height: 500px !important;
}

/* MAIN CONTAINER */
main.container {
  padding-top: 25px;
}

.contacto-page .container {
  max-width: 600px;
  margin: 50px auto;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.contacto-page h2 {
  text-align: center;
  margin-bottom: 20px;
}
.contacto-page .form-control {
  border-radius: 5px;
  padding: 10px;
}
.contacto-page .btn-primary {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
}

header {
  background: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

/* MAIN MENU */
.menu {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.menu li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.menu li a:hover {
  color: #ff4c4c;
}

/* MODAL */
.modal-content {
  max-width: 400px;
  padding: 2rem;
  border-radius: 16px;
  background: #fff;
  margin: auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1rem;
  cursor: pointer;
  text-decoration: none;
  color: #444;
}
.google-btn img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.divider {
  text-align: center;
  margin: 1rem 0;
  position: relative;
}
.divider::before, .divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: #ccc;
}
.divider::before {
  left: 0;
}
.divider::after {
  right: 0;
}
.divider span {
  padding: 0 1rem;
  background: #fff;
  color: #666;
  font-size: 0.85rem;
}

.btn.primary {
  background: #E71E27;
  color: white;
  border: none;
  width: 100%;
  padding: 0.75rem;
  border-radius: 5px;
  margin-top: 0px;
  cursor: pointer;
  font-weight: bold;
}
.btn.primary:hover {
  background: #FF4340;
}

input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 12px;
}

.error-message {
  color: red;
  font-size: 0.85rem;
  text-align: center;
}

/* FOOTER */
footer {
  background: #fff;
  padding: 40px 20px 20px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid #eee;
}
footer .row {
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
footer h6 {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
}
footer ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
footer ul li a {
  color: #666;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}
footer ul li a:hover {
  text-decoration: underline;
  color: #000;
}
footer .footer-links {
  margin-bottom: 15px;
}
footer .footer-links a {
  color: #2C4354;
  margin: 0 10px;
  text-decoration: none;
}
footer .footer-links a:hover {
  text-decoration: underline;
  color: #E71E27;
}
footer .footer-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
footer .footer-socials a {
  font-size: 25px;
  color: #2C4354;
  text-decoration: none;
  transition: transform 0.3s, color 0.3s;
}
footer .footer-socials a:hover {
  color: #E71E27;
  transform: translateY(-3px);
}
footer p {
  color: #999;
  margin-top: 15px;
  font-size: 13px;
}

/* Hero Section */
.hero {
  background: url("../img/bg-home.png") no-repeat center center/cover;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding: 60px 20px;
}
.hero .hero-content {
  margin: auto;
  max-width: 600px;
}
.hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero .hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
}
.hero .hero-content .btn {
  background: #E71E27;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.hero .hero-content .btn:hover {
  background: #FF4340;
}
@media (max-width: 576px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
  .hero .hero-content p {
    font-size: 1rem;
  }
  .hero .hero-content .btn {
    width: 100%;
  }
}

/* password */
.form-container .password-info {
  text-align: left;
  font-size: 9px;
  margin: 0;
}

.error-message {
  text-align: left;
  font-size: 9px !important;
  margin: 0 !important;
  color: red;
}

/* Features Section (legacy) */
.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

.feature {
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
}

.feature img {
  max-width: 100%;
  border-radius: 8px 8px 0 0;
}

.feature h3 {
  margin: 15px 0;
  font-size: 1.2rem;
}

.feature p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.feature .btn {
  background: #ff4c4c;
  color: #fff;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.feature .btn:hover {
  background: #e43e3e;
}

/* Features Modern */
.features-modern {
  padding: 100px 0;
}
.features-modern h2 {
  color: #2C4354;
}
.features-modern .feature-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.features-modern .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.features-modern .feature-card i {
  color: #E71E27;
  font-size: 3rem;
}
.features-modern .feature-card h5 {
  color: #2C4354;
}
.features-modern .feature-card p {
  font-size: 14px;
  color: #7B92A2;
}

/* Call to Action Section */
.cta {
  background: url("../img/bg-fifa.png") no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.cta .cta-content {
  text-align: left;
}
.cta .cta-content h2 {
  font-size: 36px;
  font-weight: bold;
  max-width: 480px;
  text-shadow: 1px 1px #333;
}
.cta .cta-content .btn {
  background: #ff4c4c;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.cta .cta-content .btn:hover {
  background: #e43e3e;
}

/* How It Works */
.how-it-works-modern {
  background-color: #FFFAFA;
}
.how-it-works-modern .btn-primary {
  padding: 20px !important;
  margin-bottom: 0px !important;
  font-weight: 17px;
}
.how-it-works-modern .text-muted {
  font-weight: bold;
}
.how-it-works-modern .step-item {
  position: relative;
  padding-left: 60px;
}
.how-it-works-modern .step-item::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 19px;
  height: calc(100% + 8px);
  width: 2px;
  background: #0D283C;
}
.how-it-works-modern .step-item:last-child::before {
  display: none;
}
.how-it-works-modern .step-item .step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #E71E27;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.how-it-works-modern .step-item .step-content h5 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #2C4354;
}
.how-it-works-modern .step-item .step-content p {
  color: #7B92A2;
  margin-bottom: 0;
}

/* Partners */
.partners {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  background-color: #FEF7F3;
}
.partners h4 {
  font-weight: 700;
  color: #2C4354;
}
.partners .partner-logo-box {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners .partner-logo-box:hover {
  transform: translateY(-3px);
}
.partners .partner-logo-box img {
  max-height: 50px;
  max-width: 100%;
  object-fit: contain;
  min-height: 48px;
}

/* INTERNAL PAGES */
.card-img-top {
  object-fit: cover;
  height: 200px;
}

.card {
  transition: transform 0.2s ease-in-out;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.bg-light {
  background-color: #f9f9f9 !important;
}

.shadow-sm {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.fs-5 {
  font-size: 1.15rem;
  line-height: 1.75;
}

.intro-section {
  background: #f9f9fc;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 70px;
}
.intro-section h2 {
  color: #1e2a44;
}
.intro-section p {
  line-height: 1.75;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.intro-section strong {
  color: #3b3f58;
}

/* Contenedor principal */
.perfil {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Información del perfil */
.perfil-info {
  margin-bottom: 20px;
}

.perfil-info h1 {
  font-size: 1.8em;
  color: #0056b3;
  margin-bottom: 10px;
}

ß .perfil-info p {
  margin: 5px 0;
  font-size: 1em;
  color: #555;
}

/* Sección de edición */
.perfil-editar h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #333;
}

.checkout-wrapper {
  background-color: #fff;
  padding: 0rem 1rem 2rem 1rem;
}

.metodo-pago-opcion {
  cursor: pointer;
  transition: all 0.2s ease;
}

.metodo-pago-opcion:hover,
.metodo-pago-opcion.border-primary {
  border: 2px solid #0d6efd;
  background-color: #f0f8ff;
}

/* Contenedor flexible */
.botones-deposito {
  gap: 1rem;
}

.btn-cancelar-deposito,
.btn-confirmar-deposito {
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: background 0.2s ease;
}

/* Botón cancelar */
.btn-cancelar-deposito {
  background-color: #e0e0e0;
  color: #333;
  min-width: 120px;
}

.btn-cancelar-deposito:hover {
  background-color: #d6d6d6;
}

/* Botón confirmar */
.btn-confirmar-deposito {
  background-color: #0d6efd;
  color: white;
  flex-grow: 1;
  font-size: 1.05rem;
}

.btn-confirmar-deposito:hover {
  background-color: #0b5ed7;
}

/* Botones personalizados del modal */
.btn-modal-cancelar,
.btn-modal-confirmar {
  border: none;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
}

/* Cancelar */
.btn-modal-cancelar {
  background-color: #e0e0e0;
  color: #333;
}

.btn-modal-cancelar:hover {
  background-color: #d5d5d5;
}

/* Confirmar */
.btn-modal-confirmar {
  background-color: #0d6efd;
  color: #fff;
}

.btn-modal-confirmar:hover {
  background-color: #0b5ed7;
}

.btn-modal-confirmar:disabled {
  background-color: #ccc !important;
  color: #666 !important;
  cursor: not-allowed !important;
  border-color: #ccc !important;
  opacity: 0.7;
}

.modal-backdrop.show {
  z-index: 1000;
}

.resumen-pago.sticky-top {
  z-index: 100;
}

/* Responsive */
@media (max-width: 576px) {
  .metodo-pago-opcion .card-body {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.5rem;
  }
}
@media (max-width: 768px) {
  .btn {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
  }
  .botones-deposito {
    flex-direction: column;
  }
  .btn-cancelar-deposito,
  .btn-confirmar-deposito {
    width: 100%;
  }
  .modal-footer {
    flex-direction: column;
  }
  .btn-modal-cancelar,
  .btn-modal-confirmar {
    width: 100%;
  }
}
.personas {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  position: relative;
}
.personas h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  color: #333;
}
.personas .btn-cancelar-invitacion {
  font-size: 12px;
}
.personas .persona-bloque {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  border-radius: 6px;
}
.personas .persona-bloque:hover {
  background-color: #f9f9f9;
}
.personas .persona-bloque img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.personas .persona-bloque .info {
  flex: 1;
}
.personas .persona-bloque .info .nombre {
  font-weight: 500;
  margin: 0;
}
.personas .persona-bloque .info .email {
  font-size: 0.85rem;
  color: #666;
}
.personas .persona-bloque .info .ultimo-aporte {
  font-size: 0.8rem;
  color: #999;
}
.personas .persona-bloque .badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 1rem;
}
.personas .persona-bloque .btn-ver {
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
}
.personas .persona-bloque .btn-cancelar {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
}
.personas .seccion-titulo {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 1.2rem 0 0.5rem;
  color: #444;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.3rem;
}
.personas .btn-invitar-ico {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  font-size: 1.3rem;
  color: #0d6efd;
  cursor: pointer;
}
.personas .btn-invitar-ico:hover {
  color: #0a58ca;
}

div#linkContainer .input-group input {
  height: 35px;
  padding: 10px;
  font-size: 11px;
}
div#linkContainer .input-group button {
  height: 35px;
  font-size: 12px;
  font-weight: bold;
  padding: 5px !important;
}

/* form styles */
/* Login Section */
.login-section {
  background: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.form-container {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
  padding: 20px;
}

.form-container h2 {
  margin-bottom: 15px;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-container input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: auto;
  margin: 0 !important;
}

.form-container button {
  background: #ff4c4c;
  color: #fff;
  padding: 10px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-container button:hover {
  background: #e43e3e;
}

.form-container p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.not-account {
  padding-top: 20px;
  margin-bottom: 0px;
}

/* Modal Styles */
.modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  position: relative;
  text-align: center;
}

.modal .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.hidden {
  display: none; /* Ocultar elemento */
}

/* Dashboard General */
.dashboard {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 20px;
  /*padding: 20px;*/
}

/* Barra de Búsqueda */
.search-bar {
  grid-column: 1/3;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.search-bar input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.search-bar button {
  background: #007bff;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-bar button img {
  width: 20px;
}

/* Colectas Activas */
.active-collects {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.active-collects h2 {
  margin-bottom: 10px;
  font-size: 18px;
}

.active-collects p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #555;
}

.collects-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* COLLECT */
.collect {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.collect h3 {
  display: inline-block;
  font-size: 16px;
  margin: 0;
}
.collect progress {
  flex: 1;
  margin: 0 15px;
  height: 10px;
  appearance: none;
}
.collect progress::-webkit-progress-bar {
  background: #f3f3f3;
  border-radius: 5px;
}
.collect progress::-webkit-progress-value {
  background: #007bff;
  border-radius: 5px;
}

.personas .info-personas {
  max-width: 450px;
  word-break: break-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Panel Lateral */
.sidebar {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.btn-primary {
  background: #ff4c4c;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.btn-primary:hover {
  background: #d63a3a;
}

.total-invested {
  text-align: center;
  margin-bottom: 20px;
}

.total-invested h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.total-invested p {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
}

.total-invested .growth {
  font-size: 14px;
  color: #28a745;
}

.goals ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.goals ul li {
  margin-bottom: 10px;
}

/* Gráficos */
.charts {
  grid-column: 1/3;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

.chart img {
  width: 100%;
  max-width: 600px;
}

/* Footer */
/* footer{
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    overflow: hidden;
} */
/* COLECTAS */
.collect a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.collect a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.info-colecta {
  margin-bottom: 40px;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-header h1 {
  margin: 0;
  font-size: 24px;
}

.progress span {
  color: #666;
  font-weight: 600;
  padding: 5px;
  text-align: center;
  display: inline-block;
  width: 100%;
}

.info-montos {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.info-montos div {
  text-align: center;
}

.info-montos h2 {
  margin: 0;
  font-size: 20px;
}

.transacciones {
  margin-bottom: 40px;
}

.tabla-transacciones {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.tabla-transacciones th,
.tabla-transacciones td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.tabla-transacciones th {
  background-color: #f3f3f3;
}

.personas {
  /*text-align: center;*/
}

.personas-lista {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.persona {
  width: 120px;
  text-align: center;
}

.persona img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}/*# sourceMappingURL=styles.css.map */