@charset "utf-8";
/* CSS Document */
 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
	font-family: "Montserrat", sans-serif;
  	font-optical-sizing: auto;
  	font-style: normal;
	background: #f0f0f0; 
}

.container, .caja { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }
input, button { width: 100%; margin: 10px 0; padding: 10px; }
input { border: 1px solid #ccc; border-radius: 10px; }
button { background-color: #4365EA; color: white; border: none; border-radius: 10px; }
table { width: 100%; margin-top: 20px; border-collapse: collapse;  border-radius: 10px;}
    th, td { border: 1px solid #ccc; padding: 5px; text-align: center; font-size: .85em;} 
    th { background: #2c45a1; color: white;  }
	td { color: black; font-weight: 300; }
	tbody tr:nth-child(even) {
  		background-color: #f2f2f2;
	}

        .table-wrapper {
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #dee2e6;
        }
        .table-wrapper table {
            margin-bottom: 0;
            border: none;
        }
        .table-wrapper table tbody tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        .table-wrapper table td.text-center,
        .table-wrapper table th.text-center {
            text-align: center;
        }


select { width: 100%; margin: 10px 0; padding: 10px; border: 1px solid #ccc; border-radius: 10px; }

.mi-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px; /* espacio interior */
	margin-bottom: 30px;
  /* height: 100%;  opcional: iguala alturas si usas card-style contenido */
}

.p-box {
	font-size: .8em; 
	margin-top: 15px; 
	margin-bottom: 10px;
	border: 1px solid #eee;
  	border-radius: 10px;
	padding: 10px;
}

.header {
  background: #f4f4f4;
  padding: 10px 40px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #ddd;
}

.header-content {
  width: 100%;
  max-width: 1600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
}

.actions {
  display: flex;
  align-items: center;
  font-size: .85em;	
}

.actions a {
  text-decoration: none;
  color: #4365EA;
  font-size: 1em;
}

.search-icon {
  font-size: 18px;
  cursor: pointer;
}

.languages a {
  text-decoration: none;
  color: #333;
  margin: 0 3px;
}

.languages .active {
  font-weight: bold;
  text-decoration: underline;
}

.hero {
  position: relative;
  width: 100%;
  display: flex; justify-content: center; align-items: center;  align-items: flex-start;
	padding-bottom: 50px;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;

}

h1, h2, h3 {
  color: #243882;
	font-weight: 600;
}

  .custom-modal {
    width: 200px;
    height: 150px;
    margin: auto;
  }

  .modal-content {
    border-radius: 8px;
  }

.boton-modal {
    width: 40%;
  }

    .mi-tarjeta {
      position: relative;
      width: 100%;
      background: #fff;
      border-radius: 10px;
		border-color: rgba(255, 255, 255, 0.1);
      overflow: visible;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
		margin-bottom: 30px;
    }

    .face1 {
      background: #f9f9f9;
      border-radius: 10px; border-color: rgba(255, 255, 255, 0.1);
      color: black;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100px;
      cursor: pointer;
      z-index: 2;
      position: relative;
    }

    .face1 svg {
		width: 20%;
		height: 20%;
    }

    .face2 {
      background: white;
      position: absolute;
      top: 96px;
      left: 0;
      width: 100%;
      max-height: 0;
      overflow-y: hidden;
      padding: 0 20px;
      transition: max-height 0.5s ease, padding 0.5s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }

    .face2.active {
      max-height: 450px;
      overflow-y: auto;
      padding: 10px;
    }

    .face2 p {
      margin-top: 10px;
      color: #333;
      font-size: 14px;
    }
