@import url(root.css);
@import url(fonts.css);
@import url(common.css);

* {
	box-sizing     : border-box;
	scroll-behavior: smooth;
	scroll-margin  : 150px;
	margin         : 0;
	padding        : 0;
}

html,
body {
	min-height : 100%;
	font-family: var(--main-font), system-ui, Arial, sans-serif;
	font-weight: 400;
	font-size  : var(--main-font-size);
	color      : var(--font-color);
}

header, footer, #back {
  font-family: var(--h1-font), system-ui, Arial, sans-serif;
}

h1,
h2,
h3 {
	font-family: var(--h1-font), system-ui, Arial, sans-serif;
	margin     : 0;
  margin-bottom: 40px;
}

h1 {
	font-size: var(--h1-font-size);
  position: relative;
}

h2 {
	font-size: var(--h2-font-size);
}

h3 {
	font-size: var(--h3-font-size);
}

ul {
  list-style-type: none;
  margin-block-start: 0;
  padding-inline-start: 0;
}

ul li:not(:last-child) {
	margin-bottom: 35px;
}


header {
	color           : var(--header-font-color);
	font-size       : var(--header-font-size);
  /* overflow: hidden; */
  background : var(--header-bg-color);
}

header .logo {
  transition: all 0.3s ease;
}

header hr{
  margin: 15px auto
}

footer {
	font-size: var(--footer-font-size);
}

footer.contenido {
  padding: 25px 15px;
}

footer .copy {
  background-color: var(--tertiary-color);
}

footer .copy .contenido {
  padding: 5px 15px;
}

table {
	border-spacing: 0;
	width         : 100%;
}

th,
td{
	padding        : 5px 0;
	border-collapse: collapse;
}

hr {
	border    : none;
	border-top: #ccc solid 1px;
	margin    : 100px auto;
	/*width     : min(1000px, 95%);*/
	/*margin-top: 100px;*/
}

section {
	margin: var(--margin-sections);
}

section:first-of-type {
	margin-top: 225px;
}

strong {
	font-weight: bold;
  /*color: var(--secondary-color);*/
}

img {
	max-width: 100%;
}

button,
button[type="button"],
.btn {
	border       : none;
	padding      : 15px 8px;
	border-radius: 3px;
	text-align   : center;
	cursor       : pointer;
	display      : inline-block;
  text-transform: uppercase;
}


button[type="button"],
.btn {
	font-weight     : 600;
	width           : min(270px, 100%);
  border: 3px solid black;
  background-color: white;
}

.error {
  font-size: 12px;
  color: red;
  font-weight: bold;
}

.logo {
  width: 200px;
}

.btn-dark, button[type="button"] {
  background-color: var(--primary-btn-color);
  border: none
}

.btn, .btn-dark, .back {
  margin-top: 50px;
  font-weight: 700;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}

.btn-dark:hover, button[type="button"]:hover {
  outline: 3px solid #262626;
  outline-offset: -3px;
}


.btn:hover, .btn-dark:hover, button[type="button"]:hover {
  background-color: white;
  box-shadow: 1px 1px 10px rgba(0,0,0,0.4);
  color: #262626
}

button[type="button"] {
  min-width: 70px
}

div[aria-labelledby="swal2-title"] {
  border-radius: 0;
}

a {
	text-decoration: none
}

.punto{
  color: var(--primary-color);
}
.ingles{
  color: var(--secondary-color)
}
a>svg,
span>svg {
	vertical-align: middle;
	height        : 100%;
	width         : 100%;
}

input:-webkit-autofill {
	background-color  : white !important;
	-webkit-box-shadow: 0 0 0 1000px white inset !important;
	box-shadow        : 0 0 0 1000px white inset !important;
	color             : black !important;
}

input,
textarea {
	display: block;
	padding: 7px 10px;
	width  : 100%;
  border-radius: 0;
  border: 1px solid #333
}

input.invalid,
textarea.invalid {
	border          : 2px solid red;
	background-color: #ffe6e6;
}

input.invalid::placeholder, textarea.invalid::placeholder {
  color: red
}

input:focus {
	/* background-color   : white; */
	outline         : none;
	border-radius   : 0;
	/* border       : 2px solid black; */
}

input:focus.invalid {
	outline: none;
	border : 2px solid red;
  color: red
}

label {
	display: block;
}

label:not(:first-of-type) {
	margin: 25px 0;
}


.contenido {
	max-width: var(--contenido);
	margin   : auto;
	padding  : 15px;
	/* position : relative; */
}

.loader {
	border-radius   : 50%;
	border          : 3px solid black;
	border-top-color: transparent;
	animation       : spin 1.2s linear infinite;
	height          : 50px;
	width           : 50px;
	position        : absolute;
	top             : 0;
	bottom          : 0;
	right           : 0;
	left            : 0;
	margin          : auto;
}


#pages {
	margin-top: 50px;
}

#pages .active {
	color: #990000;
}

#collapsing-menu {
	background-color: var(--primary-color);
	padding         : 15px;
	padding-top     : 130px;
}

#collapsing-menu div {
	padding: 10px;
}

#collapsing-menu div:first-of-type {
	padding-top: 0;
}

#collapsing-menu div:last-of-type {
	padding-bottom: 0;
}

.sombra {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
}

details > summary:first-of-type {
  list-style: none;
}

details > summary {
  display: flex;
  gap: 10px;
  cursor: pointer;
}

details > summary::before {
  content: '+';
  height: max-content;
  transition: all 0.3s ease-in-out;
}

details[open] > summary::before {
  transform: rotate(45deg);
}

summary {
  color: white;
  padding: 15px 20px;
}

details {
  user-select: none;
  overflow: hidden;
  margin-bottom: 3px;
  outline-offset: -3px;
}

.w3-dropdown-content {
  background-color: var(--tertiary-color);
  text-transform: uppercase;
  font-size: 13px;
  top: 55px;
  left: -16px;
  min-width: 124px;
}

.wa-flotante {
  position: fixed;
  z-index: 99;
  bottom: 30px;
  right: 25px;
  text-align: center;
  font-weight: bold;
}

.wa-flotante img {
  filter: drop-shadow(-2px 2px 8px rgba(0,0,0,0.3));
  width: 70px;
}

#home .logo {
  width: 400px;
}

#home section {
  margin-top: 100px;
}

#home section .contenido h1:first-of-type {
  margin-top: 70px;
}

#artistas .contenido{
  max-width: 1065px;
}

#artistas .grid {
  gap: 120px 70px
}

#artistas .grid.g-2 {
  grid-template-columns: 33% calc(67% - 70px);
}

#artistas .grid .grid {
  border: 2px solid var(--secondary-color);
  padding: 15px
}

#artistas h1 {
  font-size: 33px;
  margin-bottom: 0;
  margin-top: 15px;
  text-align: left;
}

#artistas h2 {
  text-align: left;
  font-size: 28px;
}



#expo video{
  padding: 20px;
  margin-bottom: 3em;
}

.card {
  border: 1px solid gray;
}

/* .card .img-wrapper > img { */
/*   border-top-right-radius: 14px; */
/*   border-top-left-radius: 14px; */
/* } */

.rounded {
  border-radius: 15px;
} 

#icon-back {
  display: inline-block;
  width: 30px;
}

.lb-data .lb-caption .btn {
  color: var(--font-color);
  border: none;
  margin: 10px;
  margin-left: 0;
  width: min(100%, 200px);
}

.w3-modal {
  z-index: 999999;
  background-color: unset;
  padding-bottom: 50px;
}

.w3-modal .w3-modal-content {
  background-color: white;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 50px 0
}

.w3-modal.contacto {
  background-color: rgba(0,0,0,0.3);
}

.w3-modal.contacto .w3-modal-content {
  background-color: white;
  box-shadow: var(--box-shadow);
}

.lb-nav a.lb-next, .lb-nav a.lb-prev {
  background-size: 12%;
  width: 50%
}

.lb-nav a.lb-next {
  margin-right: -50px;
}

.lb-nav a.lb-prev {
  margin-left: -50px;
}

#lightbox {
  transform: scale(0.9);
}

@media only screen and (min-width:601px) {
  header.scrolled .logo {
		width : 100px;
	}
  #artistas .grid {
    overflow: hidden;
  }

  #contact .grid {
    margin-top: 6em;
  }
  #expo h1{
    font-size: 40px;
  }
  #artista .grid > :only-child {
    grid-column: 2;
    justify-self: center;
  }

}

@media screen and ((min-width: 600px) and (max-width: 950px)) {}

@media only screen and (max-width:600px) {
	h1 {
		font-size: var(--h1-small-font-size);
	}

	h2 {
		font-size: var(--h2-small-font-size);
	}

	h3 {
		font-size: var(--h3-small-font-size);
	}

  button[type="button"], .btn {
    padding: 10px 5px;
    width: min(200px, 100%);
  }

  .logo {
    margin: 10px 0;
    width: 120px;
  }

  .btn, .btn-dark {
    font-size: 15px;
  }

  section:first-of-type {
      margin-top: 200px;
  }

  #home .logo {
    width: 200px;
  }

  #artistas .grid {
    gap: 70px
  }

  .wa-flotante {
    bottom: 20px;
    right: 10px
  }

  .wa-flotante img {
    width: 60px;
  }
  .lb-nav a.lb-next {
    margin-right: -30px;
  }

  .lb-nav a.lb-prev {
    margin-left: -30px;
  }
}


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