@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Nunito" , sans-serif;
    outline: none;
    /* font-size: 12px; */
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
  
::-webkit-scrollbar-track {
    background: transparent;
}
  
::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

body {
    background-color: #f5f7fa;
}

a,
a:visited,
a:active,
a:focus,
a:hover {
  color: #000;
}

a {
    outline: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1;
}

h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 16px; }

hr {
    border: 0;
    border-top: 1px solid #dedede;
}

input,
select, 
textarea, 
button, 
.boton {
    
    padding: 10px;
    transition: all 0.5s;
    border: none;
}

input,
select, 
textarea {
    width: 100%;
    background: none;
    border: 1px solid #dedede;
}

input[type="checkbox"] {
    width: auto;
    margin-right: 20px;
}

input:focus, 
select:focus, 
textarea:focus {
    border-color: #c89947;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    caret-color: white;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

textarea {
    max-height: 100px;
    min-height: 100px;
    max-width: 100%;
    min-width: 100%;
}

button, 
.boton {
    cursor: pointer;
}

.botonPrimario {
    background-color: #c89947;
    color: #fff;
}

.botonPrimario:hover {
    background-color: #b88a3f;
}

.botonSecundario {
    background: none;
    border: 1px solid #c89947;
    color: #c89947;
}

.contenedorGrande {
    max-width: 1100px;
    margin: 0 auto;
}

.contenedorMediano {
    max-width: 800px;
    margin: 0 auto;
}

.contenedorPequeno {
    max-width: 500px;
    margin: 0 auto;
}

.contenido {
    padding: 20px;
}

.grid {
    display: grid;
    gap: 20px;
}

.columnas2 {
    grid-template-columns: 1fr 1fr;
}

.columnas1-2 {
    grid-template-columns: 1fr 2fr;
}

.columnas3 {
    grid-template-columns: repeat(3, 1fr);
}

.contenedor {
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.load {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-width: 2px;
    border-style: solid;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

form .headerForm {
    text-align: center;
}

form .headerForm h1 + p {
    margin-top: 10px;
}

form .boxCampo label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

form .boxCampo span {
    display: block;
    color: #666;
    margin-top: 5px;
}

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

header .logo img {
    width: 80px;
}

nav ul {
    display: flex;
    font-weight: bold;
    gap: 20px;
}

nav ul li a {
    transition: all 0.5s;
}

nav ul li a:hover {
    color: #c89947;
}

.centrado {
    text-align: center;
}

.justificado {
    text-align: justify;
}

.contenedorFotos {
    grid-template-columns: repeat(4, 1fr);
}

.foto {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.5;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    
}

.foto .eliminar {
    position: absolute;
    cursor: pointer;
    color: #fff;
    top: 20px;
    right: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contenedorFotos .foto .informacion {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 20px;
}

.contenedorFotos .foto .informacion a {
    display: block;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contenedorFotos .foto .informacion a:nth-child(1) {
    font-size: 20px;
    font-weight: bold;
}

.contenedorFotos .foto .informacion a:nth-child(2) {
    font-size: 12px;
}

.planes {
    grid-template-columns: repeat(4, 1fr);
}

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

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: center;
    
}

table th,
table td {
    padding: 10px;
}

table thead th {
    background-color: #c89947;
    color: #fff;
}

table tbody tr:not(:last-child) {
    border-bottom: 1px solid #dedede;
}

.perfil .informacion {
    grid-template-columns: 250px auto;
}

.perfil .informacion .foto {
    width: 250px;
    height: 250px;
    border-radius: 50%;
}

.perfil .informacion .descripcion ul li {
    font-weight: bold;
}

.perfil .informacion .descripcion ul li i {
    width: 20px;
    text-align: center;
    margin-right: 20px;
}

.perfil .botones a {
    display: block;
    color: #fff;
    text-align: center;
    font-weight: bold;
}

.perfil .botones a.whatsapp {
    background-color: #0c9915;
}

.perfil .botones a.telegram {
    background-color: #3b5998;
}

.perfil .botones a.compartir {
    background-color: #c89947;
}

.perfil nav ul {
    grid-template-columns: repeat(3, 1fr);
}

.perfil nav ul li a {
    display: block;
    padding: 10px;
    background-color: #dedede;
}

.listas ul {
    margin-left: 20px;
}

.listas ul li {
    list-style: circle;
}

footer {
    text-align: center;
}

.notificacion i {
    font-size: 60px;
    color: #dedede;
}

.notificacion i + p {
    margin-top: 20px;
}

#menuDesplegable {
    position: fixed;
    top: 0;
    left: -300px;
    height: 100vh;
    width: 300px;
    transition: all 0.5s;
    z-index: 1000;
    overflow-y: scroll;
}

#menuDesplegable.visible {
    left: 0;
}

.menu ul li a {
    display: block;
}

.menu ul li a i {
    width: 20px;
    text-align: center;
    margin-right: 20px;
}

.contenedorFondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.contenedorFondo .contenedor {
    
    text-align: center;
}

.contenedorFondo img {
    width: 160px;
    margin: 0 auto;
}

@media (max-width: 1000px) {
    .contenedorFotos {
        grid-template-columns: repeat(4, 1fr);
    }

    .planes {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .contenedorFotos {
        grid-template-columns: repeat(3, 1fr);
    }

    .planes {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .columna1 {
        grid-template-columns: 1fr;
    }

    .perfil .informacion {
        grid-template-columns: 1fr;
    }

    .perfil .informacion .foto {
        margin: 0 auto;
    }

    .contenedorFotos {
        grid-template-columns: repeat(2, 1fr);
    }

    .planes {
        grid-template-columns: repeat(1, 1fr);
    }
}