body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

header h1 {
    margin: 0;
    font-size: 55px;
}

header p {
    margin: 5px 0; font-size: 35px;
}

#countdown {
    text-align: center;
    padding: 20px 0;
}

#timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#timer div {
    /* background-color: #fff; */
    padding: 10px;
    border-radius: 5px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
    font-size: 30px;
    font-weight: 700;
    color:crimson;
}
div#timer div p {
    margin-top: 10px;
}

#timer span {
    font-size: 2em;
    display: block;
}


/* Responsividad */
@media screen and (max-width: 768px) {
    #timer  {
        display: flex
;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    #timer  {
        display: flex
;
        flex-wrap: wrap;
    }
}
.center{text-align: center;}



#event-details, #tickets {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.ticket-option {
    background-color: #fff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ticket-option h3 {
    margin-top: 0;
}

.ticket-option ul {
    list-style: none;
    padding: 0;
}

.ticket-option ul li {
    background: url('checkmark.png') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    margin: 10px 0;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.btn:hover {
    background-color: #d35400;
}

footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}












.header {
    position: relative;
    display: flex;
    height: 80vw;
    max-height: 50vh;
    background: #000;
    overflow: hidden;
  }







  .header__background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 0;
    padding-bottom: 66.25%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .header__video-overlay {
    position: absolute;
    width: 100%;
    height: 160%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.5s linear;
  }
  .header__video-overlay--fadeOut {
    opacity: 0;
    visibility: hidden;
  }
  .header iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  .header__title {
    position: relative;
    flex: 0 0 auto;
    align-self: center;
    width: 100%;
    font-family: "Permanent Marker", cursive;
    font-size: 50px;
    font-weight: normal;
    text-align: center;
    color: white;
    line-height: 1;
  }




  .masa ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.masa ul {
  margin: 2em 0;
}

.masa li {
  margin: 1em;
  margin-left: 0px;
}

.masa li:before {
  content: '\f111';
  font-family: 'FontAwesome';
  float: left;
  margin-left: -1.5em;
  color: crimson;
}

.espe {border: solid 1px #ccc;}


/* Asegura que la imagen sea responsive */
.responsive-img {
    max-width: 100%;
    height: auto;
  }

  /* Opcional: centrado de la imagen */
  .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }





  .price-table {
    margin-top: 50px;
  }
  
  .card {
    border: 2px solidrgb(0, 0, 0); /* Primary color border */
    border-radius: 10px;
    transition: transform 0.3s;
    position: relative;
    margin-bottom: 20px; /* Add bottom margin for responsive layout */
    background-color: #fff; /* Card background color */
  }
  
  .card:hover {
    transform: scale(1.05);
    border-color:rgb(0, 0, 0); /* Darkened primary color on hover */
  }
  
  .card-body {
    padding: 20px;
  }
  
  .card-title {
    font-weight: bold;
    margin-top: 15px; /* Add margin-top */
  }
  .card-desc{
    font-size: 15px;
    margin: 18px 0;
    color: #726e6e;
  }
  
  .card-text {
    font-weight: bold;
    font-size: 1.2em;
  }
  
  .btn-free-trial {
    background-color:rgb(0, 0, 0); /* Primary color background */
    border: 2px solidrgb(0, 0, 0); /* Primary color border */
    color: #fff; /* White text color */
    width: 100%;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 15px; /* Add margin-top */
  }
  
  .btn-free-trial:hover {
    background-color:rgb(0, 0, 0); /* Darkened primary color on hover */
    color: #fff; /* White text color on hover */
  }
  
  .features-list {
    margin-top: 20px;
    max-height: 330px;
    overflow-y: auto;
  }
  
  .features-list li {
    border-bottom: 1px dashed #ddd;
    font-weight: 500;
    padding: 8px 0;
  }
  
  /* Highlight Styles for Small Business */
  .card-highlight {
    border: 2px solidrgb(0, 0, 0); /* Primary color border */
    border-radius: 10px; /* Rounded corners */
    position: relative;
  }
  
  .highlight-box {
    background-color:rgb(0, 0, 0); /* Primary color background */
    padding: 10px; /* Add padding instead of height */
    border-radius: 10px 10px 0 0;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .highlight-text {
    color: #fff; /* White text color */
    font-weight: bold;
  }
  
  .card-highlight .card-body {
    margin-top: 20px; /* Adjust spacing to accommodate the highlight box */
  }
  
  .highlight-btn {
    background-color:rgb(0, 0, 0); /* Primary color background */
    border: 2px solidrgb(0, 0, 0); /* Primary color border */
    color: #fff; /* White text color */
    width: 100%;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .highlight-btn:hover {
    background-color: #fff; /* White background color on hover */
    color: #3DBB92; /* Primary color text on hover */
  }



  .responsive-img {
    max-width: 100%;
    height: auto;
  }

  /* Opcional: centrado de la imagen */
  .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }
  /* Responsividad */
@media screen and (max-width: 768px) {
    .header {
        position: relative;
        display: flex;
        height: 45vw;
        max-height: 45vh;
        background: #000;
        overflow: hidden;
      }
}

@media screen and (max-width: 480px) {
    .header {
        position: relative;
        display: flex;
        height: 45vw;
        max-height: 45vh;
        background: #000;
        overflow: hidden;
      }
}








.section__title {
  font-size: 24px;
  color: #3b3b58;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  margin: 14px 0;
}
.section__intro {
  display: block;
  text-align: center;
  margin: 0 5% 30px;
}
@media only screen and (min-width: 43.75em) {
  .section__intro {
    margin-left: 15%;
    margin-right: 15%;
  }
}
.section--cta {
  color: #454545;
  background: #f1f1f1;
}

.box {
  display: flex;
  flex: 1 0 100%;
  margin-bottom: 20px;
  background: #f9f9f9;
}
.box__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.box__title {
  font-family: "Montserrat", sans-serif;
}
.box__more {
  color: #ff4e5c;
}
.box__content {
  color: #454545;
  text-align: center;
  padding: 20px;
}
.box__content > i {
  color: #3b3b58;
}
.box__content:hover .box__more {
  color: #ff3545;
}
.box__content:hover .box__more i {
  padding-left: 4px;
  transition: all 0.2s ease-in-out;
}
@media only screen and (min-width: 43.75em) {
  .box {
    flex: 0 0 30%;
  }
}
#countdown h1{font-size: 50px;}
#event-details h1{font-size: 50px;}
.center2{margin-left: auto;
    margin-right: auto;}
.spaceb{margin-bottom: 5px;}
.spacet{margin-top: 50px;}
.elliot{font-size: 30px;}
.location{font-size: 25px;}

h1{font-weight: 900;}
.fontsize20{font-size: 40px; font-weight:700;}
.event{background-color: #000; padding: 50px;font-size: 30px;  color: #fff; padding-top: 100px; padding-bottom: 100px;text-align: center;margin-top: -18px;}
.eventtext{max-width: 1400px; margin-left: auto; margin-right: auto;}
.callaction{background-color: yellow; color: #000; padding: 20px; font-size: 23px; margin-left: auto; margin-right: auto; text-decoration: none; font-weight: 700;}
.yellow{color: yellow; font-weight: 900;}
.saltes{background-color: #000; color: #fff;}
.colorw{background-color: #000;}
.colorred{color: red;}
.event2{background-color: #000; padding: 50px; color:#fff; font-size: 20px;}
.masas ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.masas ul {
  margin: 2em 0;
}

.masas li {
  margin: 1em;
  margin-left: 0px;
}
.masas li:before {
  content: '\f0e7';
  font-family: 'FontAwesome';
  float: left;
  margin-left: -1.5em;
  color: yellow;
}
.callaction2{background-color: yellow; color: #000; padding: 20px; font-size: 23px;text-decoration: none; font-weight: 700;}