/* ============================================
   THE BEATLES ONE - WEBSITE STYLES
   ============================================ */

/* ============================================
   GLOBAL STYLES & FONTS
   ============================================ */

* {
  margin: 0px;
  padding: 0px;
}

body {
  font-size: 100%;
  overflow-x: hidden;
}

/* Bootstrap 3 oferece `.sr-only`, mas o site deve funcionar mesmo que o CDN falhe. */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@font-face {
  font-family: "bebas_neueregular";
  src: url("Files/Fonts/bebasneue-webfont.eot");
  src: url("Files/Fonts/bebasneue-webfont.eot?#iefix")
      format("embedded-opentype"),
    url("Files/Fonts/bebasneue-webfont.woff") format("woff"),
    url("Files/Fonts/bebasneue-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SEGOEUIL";
  src: url("Files/Fonts/SEGOEUIL.eot");
  src: url("Files/Fonts/SEGOEUIL.eot?#iefix") format("embedded-opentype"),
    url("Files/Fonts/SEGOEUIL.woff"), url("Files/Fonts/SEGOEUIL.ttf");
}

/* ============================================
   NAVIGATION - DESKTOP & MOBILE
   ============================================ */

ul {
  list-style-type: none;
}

ul a {
  display: block;
  text-decoration: none;
  font-weight: bold;
  font-family: "bebas_neueregular", Helvetica, Arial;
  font-size: 2em;
}

ul a:hover {
  text-decoration: none;
}

/* Desktop Navbar Styling */
.navbar-inverse {
  background: linear-gradient(
    135deg,
    #2c3136 0%,
    #3c4248 25%,
    #4a5258 50%,
    #3c4248 75%,
    #2c3136 100%
  ) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px);
  position: relative;
}

.navbar-inverse::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
}

.navbar-inverse::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
}

/* Desktop Navbar Links */
.navbar-inverse .navbar-nav > li > a {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 255, 255, 0.1) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  position: relative;
  padding: 15px 20px !important;
}

.navbar-inverse .navbar-nav > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.6);
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #ff9900 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
    0 0 25px rgba(255, 153, 0, 0.3) !important;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 0, 0.1) 0%,
    rgba(255, 153, 0, 0.05) 100%
  ) !important;
  transform: translateY(-2px);
}

.navbar-inverse .navbar-nav > li > a:hover::before,
.navbar-inverse .navbar-nav > li > a:focus::before {
  width: 80%;
}

/* Brand/Logo Link Special Styling */
.navbar-inverse .navbar-nav > li > a#brand {
  color: #ff9900 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
    0 0 25px rgba(255, 153, 0, 0.3) !important;
  font-size: 2.2em !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
}

.navbar-inverse .navbar-nav > li > a#brand:hover {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 153, 0, 0.8),
    0 0 35px rgba(255, 153, 0, 0.5), 0 0 50px rgba(255, 153, 0, 0.2) !important;
  animation: brand-glow 2s infinite alternate;
}

/* Mobile brand/logo link styling */
.navbar-inverse .navbar-nav > li > a#brand-mobile {
  color: #ff9900 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
    0 0 25px rgba(255, 153, 0, 0.3) !important;
  font-size: 1.8em !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-align: center !important;
  border-bottom: 2px solid rgba(255, 153, 0, 0.3) !important;
  margin-bottom: 10px !important;
}

.navbar-inverse .navbar-nav > li > a#brand-mobile:hover {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 153, 0, 0.8),
    0 0 35px rgba(255, 153, 0, 0.5), 0 0 50px rgba(255, 153, 0, 0.2) !important;
  animation: brand-glow 2s infinite alternate;
  transform: none !important; /* Don't slide the brand name */
}

.navbar-inverse .navbar-nav > li > a#brand-mobile::before {
  display: none;
}

/* Social Icons in Desktop Navbar */
.navbar-inverse .navbar-nav.navbar-right > li > a {
  padding: 10px 15px !important;
  transition: all 0.3s ease !important;
}

.navbar-inverse .navbar-nav.navbar-right > li > a:hover {
  transform: translateY(-3px) scale(1.1);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  ) !important;
}

/* Animations */
@keyframes brand-glow {
  0% {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 153, 0, 0.8),
      0 0 35px rgba(255, 153, 0, 0.5), 0 0 50px rgba(255, 153, 0, 0.2);
  }
  100% {
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 153, 0, 1),
      0 0 45px rgba(255, 153, 0, 0.7), 0 0 65px rgba(255, 153, 0, 0.4);
  }
}

/* ============================================
   TYPOGRAPHY & GLOBAL ELEMENTS
   ============================================ */

img {
  max-width: 100%;
  display: block;
}

p {
  font-family: "SEGOEUIL", Helvetica, Arial;
}

h1 {
  color: white !important;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-size: 46px !important;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
}

h2 {
  color: white;
  font-family: "SEGOEUIL", Helvetica, Arial;
}

h3 {
  color: white;
  font-family: "SEGOEUIL", Helvetica, Arial;
}

iframe {
  border: 0 !important;
}

/* ============================================
   BACKGROUND IMAGES & PARALLAX
   ============================================ */

#background-release {
  background-color: black;
}

.background-midia {
  background-image: url("Files/Images/JPG/The-Beatles-Cover-The-Beetles-One-British-Flag-Background.jpg");
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
}

.background-midia-mobile {
  background-color: black;
}

.background-tour {
  background-image: url("Files/Images/JPG/tour.jpg");
  background-position: center center;
  background-attachment: fixed;
  background-size: contain;
  max-width: 101%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ============================================
   ABOUT THE BAND SECTION - DESKTOP & MOBILE
   ============================================ */

#release-img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#contato {
  background-color: black;
}

#background-mobile {
  background-color: black;
}
#toTop img {
  width: 50px;
}

#toTop img:hover {
  cursor: pointer;
}

.move {
  top: -60px;
}

#brand {
  display: block;
  text-decoration: none;
  font-weight: bold;
  font-family: "bebas_neueregular", Helvetica, Arial;
  font-size: 2em;
}

#contact-picture {
  display: inline-block;
  position: relative;
}
#cont-text {
  color: white;
  text-align: center;
  font-family: "sen-regular", Helvetica, Arial;
  letter-spacing: 0.1em;
  font-size: 1.5em;
  margin-top: 2.5%;
}
#cont-text-xs {
  color: white;
  text-align: center;
  font-family: "SEGOEUIL", Helvetica, Arial;
  letter-spacing: 0.1em;
}
#cont-text a {
  color: white;
  text-align: center;
  font-family: "SEGOEUIL", Helvetica, Arial;
  letter-spacing: 0.1em;
  font-size: 1em;
}
#cont-text-xs a {
  color: white;
  text-align: center;
  font-family: "SEGOEUIL", Helvetica, Arial;
  letter-spacing: 0.1em;
  font-size: 0.9em;
}
#tour-art {
  margin-top: -1.5%;
}
#setlist-background {
  z-index: -1;
  opacity: 0.1;
}
#release-picture {
  position: absolute;
  top: -1em;
}
#release-text {
  text-align: justify;
  color: white;
  font-family: "SEGOEUIL", Helvetica, Arial;
  font-size: 1.5em;
}
#release-text a {
  color: #cfcfcf;
}
#release-text-quote {
  font-size: 1.2em;
  margin-top: 2rem; /* Replace <br> */
}
#release-text-xs {
  text-align: justify;
  color: white;
  font-family: "SEGOEUIL", Helvetica, Arial;
  font-size: 1.5em;
}
#release-text-xs-quote {
  font-style: italic;
  margin-top: 2rem; /* Replace <br> */
}
#header-release-mobile {
  color: white !important;
  text-shadow: 1px 1px 1px rgba(255, 255, 255, 1) !important;
}
#logo-xs {
  padding: 2%;
}
#logo-xs img {
  width: 100%;
  height: 100%;
}

/* ============================================
   UTILITY CLASSES & HELPERS
   ============================================ */

#bit-events td.bit-description-links,
#bit-events th.bit-description-links,
#bit-events th.bit-date,
#bit-events th.bit-venue,
#bit-events th.bit-location,
#bit-events th.bit-tickets {
  display: none;
}
.center-pills {
  display: inline-block;
}

.bit-header-links {
  display: none;
}
.bit-events th,
.bit-events td {
  padding: 0 !important;
}
.bit-date {
  font-size: 1.5em;
  font-family: "SEGOEUIL", Helvetica, Arial;
}
.bit-venue {
  font-size: 1.5em;
  font-family: "SEGOEUIL", Helvetica, Arial;
}
.bit-location {
  font-size: 1.5em;
  font-family: "SEGOEUIL", Helvetica, Arial;
  font-weight: 100 !important;
}
.bit-rsvp {
  display: none;
}
.social-icons {
  width: 25px;
  height: 25px;
}
.social-icons:hover {
  opacity: 0.8;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o--transition: all 0.5s;
  -ms--transition: all 0.5s;
  transition: all 0.5s;
}
#logo-embrashow {
  width: 100%; /* Increased from 16% */
  margin: 2rem auto;
  opacity: 0.7;
}
#logo-embrashow-mobile {
  width: 80%; /* Increased from 60% */
  height: auto; /* Changed from 40% to auto for proper aspect ratio */
  margin: 2rem auto;
  opacity: 0.7;
}
.picture-hover-property img:hover {
  opacity: 0.7;
  filter: alpha(opacity=70); /*For IE*/
}
.show-img {
  margin-bottom: 20%;
}
.margin-picture-session {
  margin-bottom: 10%;
}
.setlist-inline {
  display: inline;
}
.margin-setlist {
  margin-left: 8%;
  margin-right: 8%;
}

/* ============================================
   VIDEOS SECTION - DESKTOP & MOBILE
   ============================================ */

/* Enhanced Video Section Styling */

/* Video Section Background and Layout */
.background-midia {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.background-midia::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.background-midia-mobile {
  background-image: url("Files/Images/JPG/The-Beatles-Cover-The-Beetles-One-British-Flag-Background.jpg");
  background-position: center center;
  background-attachment: scroll; /* Changed from fixed for better mobile performance */
  background-size: cover;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.background-midia-mobile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Video Section Headers */
.background-midia h1,
.background-midia-mobile h1 {
  position: relative;
  z-index: 2;
  font-size: 3.5em !important;
  margin-bottom: 60px !important;
  text-align: center;
  color: #ffffff !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 153, 0, 0.4),
    0 0 40px rgba(255, 153, 0, 0.2) !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
}

.background-midia h1::after,
.background-midia-mobile h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.6);
  border-radius: 2px;
}

/* Enhanced Video Container */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 153, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 153, 0, 0.2);
  transition: all 0.4s ease;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  min-height: 280px; /* Increased minimum height for desktop */
}

.video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 153, 0, 0.05) 50%,
    transparent 100%
  );
  border-radius: 13px;
  z-index: -1;
}

.video-container:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 80px rgba(255, 153, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 153, 0, 0.4);
}

.video-container:hover::before {
  background: linear-gradient(
    45deg,
    rgba(255, 153, 0, 0.1) 0%,
    rgba(255, 153, 0, 0.15) 50%,
    rgba(255, 153, 0, 0.1) 100%
  );
}

/* Video iframe styling */
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 13px;
  transition: all 0.3s ease;
  border: none;
}

/* Desktop Video Layout */
.videos-desktop-layout {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.videos-desktop-layout .video-item {
  flex: 1;
  max-width: 650px;
  width: 100%;
}

/* Mobile Video Layout */
.videos-mobile-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.videos-mobile-layout .video-item-mobile {
  width: 100%;
  max-width: 600px;
}

.videos-mobile-title {
  margin-bottom: 40px !important;
  font-size: 2.8em !important;
}

/* Video Spacing Classes */
.video-margin-top {
  margin-top: 20px;
}

.video-margin-bottom {
  margin-bottom: 80px;
}

.video-margin-top-mobile {
  margin-top: 0;
}

.video-margin-bottom-mobile {
  margin-bottom: 60px;
}

/* Legacy video classes for compatibility */
.video {
  background: transparent;
  padding: 0;
  box-shadow: none;
  width: 100%;
}

.videobox-mobile {
  background: transparent;
  padding: 0;
  box-shadow: none;
  margin-bottom: 40px;
}

.video figure {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.video img {
  width: 100%;
  opacity: 1;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.video img:hover,
.video img:active,
.video img:focus {
  opacity: 0.8;
  transform: scale(1.02);
}

.video-title {
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
  font-size: 1.8em !important;
  margin-top: 15px !important;
  text-align: center !important;
}

.video-title-mobile {
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
  font-size: 2em !important;
  margin-top: 15px !important;
  text-align: center !important;
}

.contato-title {
  font-family: "SEGOEUIL", Helvetica, Arial;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .videos-desktop-layout {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 30px;
  }

  .videos-desktop-layout .video-item {
    max-width: 800px; /* Increased for tablet view */
  }
}

@media (max-width: 768px) {
  .video-container {
    margin-bottom: 30px;
    border-radius: 12px;
    min-height: 180px;
  }

  .video-container:hover {
    transform: translateY(-5px) scale(1.01);
  }

  .background-midia-mobile h1 {
    font-size: 2.8em !important;
    margin-bottom: 40px !important;
  }

  .videos-mobile-layout {
    gap: 30px;
    padding: 0 15px;
  }

  .videos-desktop-layout {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .video-container {
    border-radius: 10px;
    margin-bottom: 25px;
    min-height: 150px;
  }

  .background-midia-mobile h1 {
    font-size: 2.4em !important;
  }

  .videos-mobile-layout {
    gap: 25px;
    padding: 0 10px;
  }

  .videos-desktop-layout {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .video-container {
    min-height: 120px;
  }

  .videos-mobile-layout .video-item-mobile {
    max-width: 100%;
  }
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  ul a {
    font-size: 1.4em;
  }
}
@media (max-width: 768px) {
  #myNavbar {
    background-color: #222;
    width: 100%;
    padding-left: -15%;
    height: 100%;
  }
  #myNavbar ul {
    text-align: center;
  }
  #myNavbar ul li a {
    display: block;
  }

  .form-control {
    width: 23rem !important;
  }
  .btn-submit {
    width: 23rem !important;
  }

  .social-icons {
    width: 28px !important; /* Increased from 20px */
    height: 28px !important; /* Increased from 20px */
  }
}
@media only screen and (max-width: 650px) {
  .shows-outer,
  .show-mobile {
    width: 100%;
    min-width: 100px;
  }
}
@media (max-width: 500px) {
  .date-mobile {
    font-size: 1.5em !important;
  }
  .venue-mobile {
    font-size: 1.5em !important;
  }
}

/* ============================================
   TOUR/AGENDA SECTION - DESKTOP & MOBILE
   ============================================ */

/* Improved background overlay for better text contrast */
.background-tour::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.75) 30%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.75) 70%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.background-tour {
  position: relative;
  padding: 80px 0;
}

/* Legacy styles for compatibility */
#agenda-title {
  float: right;
  font-family: "bebas_neueregular";
  font-size: 4em;
}
#agenda-title-mobile {
  float: right;
  font-family: "bebas_neueregular";
  font-size: 3.5em;
}

/* Consistent title styling matching VIDEOS and ABOUT sections */
#shows-outer-agenda {
  position: relative;
  z-index: 2;
  float: right;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-size: 3.5em !important;
  color: #ffffff !important;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 153, 0, 0.3) !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  margin-bottom: 60px !important;
  text-align: right;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  padding: 20px 30px 25px 30px !important;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 153, 0, 0.2);
}

#shows-outer-agenda::after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 30px;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.6);
  border-radius: 2px;
}

#shows-outer-agenda-mobile {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-size: 2.8em !important;
  color: #ffffff !important;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 153, 0, 0.3) !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  margin-bottom: 40px !important;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  padding: 18px 25px 23px 25px !important;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 153, 0, 0.2);
}

#shows-outer-agenda-mobile::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.6);
  border-radius: 2px;
}

/* Enhanced shows container */
.shows-outer {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 100px;
  padding: 0;
  margin: 0;
}

/* Refined tour date containers with rounded borders */
.show {
  position: relative;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(20, 20, 20, 0.85) 100%
  ) !important;
  border: 2px solid rgba(255, 153, 0, 0.4) !important;
  border-radius: 16px !important;
  clear: right;
  float: right;
  width: 160% !important;
  margin: 18px 0 !important;
  padding: 28px 32px !important;
  transition: all 0.2s ease !important;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 153, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.show::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 153, 0, 0.6) 20%,
    rgba(255, 153, 0, 0.8) 50%,
    rgba(255, 153, 0, 0.6) 80%,
    transparent 100%
  );
  border-radius: 16px 16px 0 0;
}

.show:hover {
  transform: translateY(-2px) translateX(-2px) !important;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(25, 25, 25, 0.9) 100%
  ) !important;
  border-color: rgba(255, 153, 0, 0.6) !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 153, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.show-mobile {
  position: relative;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(20, 20, 20, 0.85) 100%
  ) !important;
  border: 2px solid rgba(255, 153, 0, 0.4) !important;
  border-radius: 16px !important;
  width: 100% !important;
  margin: 15px 0 !important;
  padding: 24px !important;
  transition: all 0.2s ease !important;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 153, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.show-mobile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 153, 0, 0.6) 20%,
    rgba(255, 153, 0, 0.8) 50%,
    rgba(255, 153, 0, 0.6) 80%,
    transparent 100%
  );
  border-radius: 16px 16px 0 0;
}

.show-mobile:hover {
  transform: translateY(-2px) !important;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(25, 25, 25, 0.9) 100%
  ) !important;
  border-color: rgba(255, 153, 0, 0.6) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 153, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

/* Enhanced text styling with better contrast */
.date {
  color: #ffffff !important;
  float: left;
  font-size: 2.3em !important;
  text-align: left;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-weight: 600 !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 10px rgba(255, 255, 255, 0.2) !important;
  letter-spacing: 1.2px !important;
  line-height: 1.1;
  margin: 0;
  padding: 0;
}

.date-mobile {
  color: #ffffff !important;
  font-size: 2.5em !important;
  text-align: center;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-weight: 600 !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 10px rgba(255, 255, 255, 0.2) !important;
  letter-spacing: 1.2px !important;
  line-height: 1.1;
  margin: 0 0 12px 0 !important;
  padding: 0;
}

.venue {
  color: #ff9900 !important;
  float: right;
  font-size: 2.1em !important;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-weight: 500 !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 153, 0, 0.4) !important;
  letter-spacing: 0.8px !important;
  text-align: right;
  line-height: 1.1;
  margin: 0;
  padding: 0;
}

.venue-mobile {
  color: #ff9900 !important;
  font-size: 2.2em !important;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-weight: 500 !important;
  text-align: center;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 15px rgba(255, 153, 0, 0.4) !important;
  letter-spacing: 0.8px !important;
  line-height: 1.1;
  margin: 0;
  padding: 0;
}

.clear-both {
  clear: both;
  height: 0;
  overflow: hidden;
}

/* Ticket Purchase Button Styles */
.ticket-btn {
  position: relative;
  z-index: 5;
  display: inline-block !important;
  clear: both !important;
  float: right !important;
  margin-top: 12px !important;
  margin-left: 0 !important;
  padding: 10px 24px !important;
  background: linear-gradient(
    135deg,
    rgba(255, 160, 0, 1) 0%,
    rgba(255, 195, 0, 0.95) 50%,
    rgba(255, 160, 0, 1) 100%
  ) !important;
  color: #000000 !important;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-size: 1.5em !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border: 2px solid rgba(255, 140, 0, 1) !important;
  border-radius: 6px !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
  letter-spacing: 0.5px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 6px 16px rgba(255, 160, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  vertical-align: middle;
}

.ticket-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 170, 0, 1) 0%,
    rgba(255, 210, 0, 1) 50%,
    rgba(255, 170, 0, 1) 100%
  ) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(255, 160, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(255, 130, 0, 1) !important;
}

.ticket-btn:active {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(255, 160, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

.ticket-btn-mobile {
  position: relative;
  z-index: 5;
  display: block !important;
  width: fit-content !important;
  margin: 14px auto 0 auto !important;
  padding: 10px 28px !important;
  background: linear-gradient(
    135deg,
    rgba(255, 160, 0, 1) 0%,
    rgba(255, 195, 0, 0.95) 50%,
    rgba(255, 160, 0, 1) 100%
  ) !important;
  color: #000000 !important;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-size: 1.3em !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border: 2px solid rgba(255, 140, 0, 1) !important;
  border-radius: 6px !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
  letter-spacing: 0.5px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 6px 16px rgba(255, 160, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.ticket-btn-mobile:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 170, 0, 1) 0%,
    rgba(255, 210, 0, 1) 50%,
    rgba(255, 170, 0, 1) 100%
  ) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(255, 160, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(255, 130, 0, 1) !important;
}

.ticket-btn-mobile:active {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(255, 160, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

/* Quando o evento estiver sendo editado no admin */
.ticket-btn--disabled,
.ticket-btn-mobile--disabled {
  pointer-events: none !important;
  opacity: 0.55 !important;
  filter: grayscale(0.1);
  cursor: not-allowed !important;
}

.agenda-admin-item-edit--disabled {
  pointer-events: none;
  opacity: 0.65;
  cursor: not-allowed;
}

/* Responsive improvements for agenda section */
@media (max-width: 992px) {
  .background-tour {
    padding: 70px 0;
  }

  .background-tour::before {
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.78) 50%,
      rgba(0, 0, 0, 0.88) 100%
    );
  }
}

@media (max-width: 768px) {
  .background-tour {
    padding: 60px 0;
  }

  .show-mobile {
    margin: 12px 0 !important;
    padding: 22px !important;
  }

  #shows-outer-agenda-mobile {
    font-size: 2.6em !important;
    margin-bottom: 35px !important;
  }

  .date-mobile {
    font-size: 2.3em !important;
    margin-bottom: 10px !important;
  }

  .venue-mobile {
    font-size: 2em !important;
  }
}

@media (max-width: 576px) {
  .background-tour {
    padding: 50px 0;
  }

  #shows-outer-agenda-mobile {
    font-size: 2.4em !important;
    margin-bottom: 30px !important;
  }

  .date-mobile {
    font-size: 2.1em !important;
  }

  .venue-mobile {
    font-size: 1.9em !important;
  }

  .show-mobile {
    padding: 20px !important;
    margin: 10px 0 !important;
    border-radius: 12px !important;
  }

  .show-mobile::before {
    border-radius: 12px 12px 0 0;
  }
}

/* ============================================
   AGENDA MOBILE — centrado, safe area simétrica (iPhone), sem overflow
   ============================================ */
.agenda-mobile-wrap {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  /* Mesmo inset dos dois lados evita conteúdo “puxado” para um lado no iPhone */
  --agenda-safe-inline: max(
    15px,
    env(safe-area-inset-left, 0px),
    env(safe-area-inset-right, 0px)
  );
  padding-left: var(--agenda-safe-inline);
  padding-right: var(--agenda-safe-inline);
}

.agenda-mobile-wrap.container-fluid {
  /* Evita conflito com .container-fluid + largura estranha */
  width: 100% !important;
  max-width: 100% !important;
}

.agenda-mobile-wrap .agenda-mobile-row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-content: center;
}

.agenda-mobile-wrap .agenda-mobile-row > [class*="col-"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
  float: none !important;
  margin-left: auto;
  margin-right: auto;
}

.shows-outer--mobile {
  width: 100%;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  float: none !important;
}

#agenda-mobile-list {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  float: none !important;
}

#shows-outer-agenda-mobile {
  float: none !important;
  clear: both !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
  display: block;
}

.show-mobile {
  box-sizing: border-box !important;
  max-width: 100%;
  width: 100% !important;
  float: none !important;
  clear: both !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

.show-mobile-head {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  justify-content: center !important;
  margin-left: auto;
  margin-right: auto;
}

.date-mobile {
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: clamp(1.25rem, 5.2vw, 2.5em) !important;
  padding-left: 4px;
  padding-right: 4px;
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.venue-mobile {
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  white-space: normal !important;
  font-size: clamp(1rem, 4.2vw, 2.2em) !important;
  line-height: 1.2 !important;
  padding-left: 4px;
  padding-right: 4px;
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.ticket-btn-mobile {
  box-sizing: border-box !important;
  max-width: min(100%, 22rem);
  width: auto !important;
  min-width: 0;
  white-space: normal !important;
  word-break: break-word;
  line-height: 1.2 !important;
  padding: 9px 18px !important;
  font-size: clamp(0.8rem, 3.6vw, 1.25em) !important;
  letter-spacing: 0.03em !important;
  margin-left: auto !important;
  margin-right: auto !important;
  touch-action: manipulation;
}

.agenda-mobile-wrap .agenda-novo-tag--mobile {
  font-size: clamp(0.65rem, 2.8vw, 0.85em);
  padding: 3px 8px;
}

@media (max-width: 480px) {
  .agenda-mobile-wrap.background-tour {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  #shows-outer-agenda-mobile {
    font-size: clamp(1.5rem, 8vw, 2.4em) !important;
    padding-top: 14px !important;
    padding-bottom: 18px !important;
    margin-bottom: 24px !important;
    letter-spacing: 1px !important;
  }

  .show-mobile {
    padding: 16px 14px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .show-mobile-head {
    gap: 0.35rem 0.6rem;
    margin-bottom: 10px;
  }

  .ticket-btn-mobile {
    padding: 8px 14px !important;
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .show-mobile {
    padding: 14px 12px !important;
    border-radius: 10px !important;
  }

  .ticket-btn-mobile {
    font-size: clamp(0.72rem, 3.5vw, 1.05em) !important;
    padding: 7px 12px !important;
  }
}

/* ============================================
   SLIDESHOW - DESKTOP & MOBILE
   ============================================ */

/* Custom slideshow styles */
.custom-slideshow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: unset;
  max-height: unset;
}

.custom-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.custom-slideshow-list li {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
}

.custom-slideshow-list li img,
.custom-slideshow-img-mobile {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Show the first slide by default (for no-js fallback) */
.custom-slideshow-list li:first-child {
  display: block;
  position: relative;
  opacity: 1;
  z-index: 2;
}

/* Slideshow sections */
#custom-slideshow-desktop,
#custom-slideshow-mobile {
  background: linear-gradient(
    to bottom,
    #181818 0%,
    #222 40%,
    black 100%
  );
  margin-bottom: 0;
  padding: 0;
  margin-top: 50px; /* Push slideshow below navbar */
  position: relative;
  z-index: 1;
  /* Make slideshow fill almost the whole viewport except navbar/footer */
  min-height: calc(
    100vh - 120px
  ); /* Adjust 120px to match your navbar+footer height */
  height: calc(100vh - 120px);
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

#custom-slideshow-mobile {
  background: none !important;
}

/* Custom slideshow styles */
.custom-slideshow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: unset;
  max-height: unset;
}

.custom-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.custom-slideshow-list li {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
}

.custom-slideshow-list li img,
.custom-slideshow-img-mobile {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Show the first slide by default (for no-js fallback) */
.custom-slideshow-list li:first-child {
  display: block;
  position: relative;
  opacity: 1;
  z-index: 2;
}

/* ============================================
   CONTACT FORMS - DESKTOP & MOBILE
   ============================================ */

#form-success {
  display: none;
  color: green;
  font-size: 2rem;
}
#form-success-mobile {
  display: none;
  color: green;
  font-size: 2rem;
}
.form-required-text {
  color: red;
  font-size: 2rem;
}
.form-required-text-mobile {
  color: red;
  font-size: 1.8rem;
}
.div-form {
  display: flex;
  justify-content: center;
  /* border: 3px solid #fff; */
  /* border-radius: 10px; */
  padding: 40px;
  transition: all 0.4s ease;
  width: 35%;
  margin: 0 auto;
}
.div-form-mobile {
  display: flex;
  justify-content: center;
  /* border: 3px solid #fff; */
  /* border-radius: 10px; */
  padding: 40px;
  transition: all 0.4s ease;
  width: 90%;
  margin: 0 auto;
}

.form-control {
  margin-bottom: 1.5rem;
}

.btn-submit {
  width: 40rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 2rem;
  border-radius: 0.25rem;
  background-color: #6c757d;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  outline: none;
  border: 0px;
  box-shadow: none;
  color: #fff;
  margin-top: 1.5rem;
}

.btn-submit:hover,
.btn-submit:focus,
.btn-submit:active {
  background-color: #495056;
  outline: none !important;
  border: none !important;
  box-shadow: none;
}

.footer {
  width: 100%;
  background: linear-gradient(
    135deg,
    #4a5258 0%,
    #5a6268 25%,
    #6c757d 50%,
    #5a6268 75%,
    #495057 100%
  );
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
}

.footer-center {
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 3rem;
  font-weight: bolder;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.footer-images {
  position: relative;
  bottom: 2px;
  width: 30px;
  height: 30px;
  margin: 0 1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-images:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.7));
}

.footer-whatsapp {
  position: relative;
  bottom: 2px;
  width: 30px;
  height: 30px;
  margin-left: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 8px rgba(37, 211, 102, 0.4))
    drop-shadow(0 0 12px rgba(37, 211, 102, 0.5));
  box-shadow: 0 0 16px 4px rgba(37, 211, 102, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 211, 102, 0.12) 0%,
    transparent 70%
  );
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  padding: 2px;
}

.footer-whatsapp:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8))
    drop-shadow(0 0 20px rgba(37, 211, 102, 1));
  animation: whatsapp-pulse 1.5s infinite, whatsapp-glow 2s infinite;
}

/* Sticky manager contact above mobile social navbar */
.sticky-manager-contact {
  position: fixed;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(
    135deg,
    #4a5258 0%,
    #5a6268 25%,
    #6c757d 50%,
    #5a6268 75%,
    #495057 100%
  );
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.35), 0 2px 12px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  display: flex;
  align-items: center;
  padding: 12px 10px;
  flex-wrap: nowrap;
  min-height: 50px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.sticky-manager-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
}

.sticky-manager-contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
}

/* Compact center content */
.sticky-manager-contact .footer-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem !important;
  white-space: nowrap;
  overflow: hidden;
  min-width: 0;
  padding-right: 34px;
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 255, 255, 0.1);
  font-weight: 600;
}

/* Text styling */
.sticky-manager-contact .footer-center p {
  margin: 0 0.4rem !important;
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7), 0 0 8px rgba(255, 255, 255, 0.1);
  font-weight: 600;
  letter-spacing: 0.3px;
}

@media (max-width: 430px) {
  .sticky-manager-contact .footer-center {
    font-size: 1.25rem !important;
    padding-right: 30px;
  }

  .sticky-manager-contact .footer-center p {
    margin: 0 0.25rem !important;
    letter-spacing: 0.1px;
  }

  .sticky-manager-contact .footer-center img {
    width: 17px !important;
    height: 17px !important;
    margin: 0 0.25rem !important;
  }

  .sticky-manager-contact .footer-right {
    right: 8px;
  }
}

.sticky-manager-contact .footer-center img {
  width: 20px !important;
  height: 20px !important;
  margin: 0 0.4rem !important;
  position: relative;
  top: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.sticky-manager-contact .footer-center img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.7))
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.sticky-manager-contact .footer-center > div {
  margin-right: 1rem !important;
}

/* Position WhatsApp as absolute to avoid flex issues */
.sticky-manager-contact .footer-right {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
}

.sticky-manager-contact .footer-whatsapp {
  position: relative;
  top: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 8px rgba(37, 211, 102, 0.4))
    drop-shadow(0 0 12px rgba(37, 211, 102, 0.5));
  box-shadow: 0 0 16px 4px rgba(37, 211, 102, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 211, 102, 0.12) 0%,
    transparent 70%
  );
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  padding: 2px;
}

.sticky-manager-contact .footer-whatsapp:hover {
  transform: scale(1.25);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8))
    drop-shadow(0 0 20px rgba(37, 211, 102, 1));
  animation: whatsapp-pulse 1.5s infinite, whatsapp-glow 2s infinite;
}

/* Enhanced mobile touch states */
@media (max-width: 768px) {
  .sticky-manager-contact .footer-whatsapp:active {
    transform: scale(1.3);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.8))
      drop-shadow(0 0 25px rgba(37, 211, 102, 1));
    animation: whatsapp-pulse 1s infinite, whatsapp-glow 1.5s infinite;
  }
}

/* Hide sticky version on desktop */
@media (min-width: 992px) {
  .sticky-manager-contact {
    display: none !important;
  }
}

/* Ensure mobile sticky positioning works properly */
@media (max-width: 991px) {
  .sticky-manager-contact {
    display: flex !important;
    position: fixed !important;
    bottom: 50px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    width: 100% !important;
  }

  .navbar-fixed-bottom {
    z-index: 1001 !important;
    height: 50px !important;
    min-height: 50px !important;
    display: flex !important;
    align-items: center !important;
    background: linear-gradient(
      135deg,
      #4a5258 0%,
      #5a6268 25%,
      #6c757d 50%,
      #5a6268 75%,
      #495057 100%
    ) !important;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    border-top: 2px solid rgba(255, 255, 255, 0.15) !important;
  }

  /* Fix mobile navbar container alignment */
  .navbar-fixed-bottom .container-fluid {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    padding: 0 !important;
  }

  /* Fix mobile navbar pills alignment */
  .navbar-fixed-bottom .nav.nav-pills {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    height: 100% !important;
  }

  /* Fix individual list items */
  .navbar-fixed-bottom .nav.nav-pills li {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    margin: 0 !important;
  }

  /* Fix anchor tags */
  .navbar-fixed-bottom .nav.nav-pills li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 12px !important;
    height: auto !important;
    transition: transform 0.2s ease !important;
  }

  .navbar-fixed-bottom .nav.nav-pills li a:hover {
    transform: translateY(-2px) !important;
  }
}

/* SCROLL OFFSET FOR FIXED NAVBAR */
#home,
#home-mobile,
#banda,
#midia,
#agenda,
#newsletter,
#contato,
#contato-mobile {
  scroll-margin-top: 60px; /* Slightly more than navbar height for better spacing */
}

/* Newsletter — faixa no estilo do site (escuro + laranja #ff9900) + badge (Google Sheets via Apps Script) */
.newsletter-section {
  position: relative;
  background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
  padding: 52px 15px 60px;
  border-top: 1px solid rgba(255, 153, 0, 0.28);
  border-bottom: 1px solid rgba(255, 153, 0, 0.2);
}

.newsletter-row {
  margin-left: 0;
  margin-right: 0;
}

/* Newsletter: largura ampla mas contida; proporção campo/botão mantida */
.newsletter-band {
  position: relative;
  margin: 18px auto 14px;
  padding: 10px 10px 26px;
  width: 100%;
  max-width: min(72rem, 100%);
  background: none;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.newsletter-band__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  /* Ajuste fino: desloca ligeiramente o bloco para a esquerda,
     mantendo o conjunto badge + formulário mais no centro. */
  transform: translateX(-18px);
  gap: 18px clamp(22px, 3vw, 36px);
  width: 100%;
  text-align: left;
}

.newsletter-band__badge-col {
  flex: 0 0 auto;
  margin: 0;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Mais abaixo na faixa, mantendo a imagem centrada na coluna do badge */
  transform: translateY(18px);
}

.newsletter-band__badge-img {
  display: block;
  width: 182px;
  height: 182px; /* Mantém a altura mesmo se a imagem falhar ao carregar */
  max-width: min(182px, 32vw);
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.newsletter-band__main {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.newsletter-band__cta {
  margin: 0 0 10px;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(1.72rem, 3.9vw, 2.1rem);
  font-weight: 800;
  line-height: 1.4;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.75),
    0 0 18px rgba(255, 153, 0, 0.22);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.newsletter-band .newsletter-form {
  position: relative;
  max-width: none;
  margin: 0;
}

.newsletter-band__stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.newsletter-band__city-row {
  width: 100%;
}

.newsletter-band .newsletter-field-row {
  display: grid;
  /* ~82% campo / ~18% botão (≈4–5×), com teto no botão como no banner de referência */
  grid-template-columns: minmax(0, 1fr) minmax(5.75rem, min(20%, 9.5rem));
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
}

.newsletter-band .newsletter-input {
  min-width: 0;
  width: 100%;
  padding: 9px 12px;
  border: 2px solid rgba(255, 153, 0, 0.45);
  border-radius: 6px 0 0 6px;
  background: rgba(10, 10, 10, 0.95);
  color: #ffffff;
  font-size: 15px;
  box-sizing: border-box;
}

.newsletter-band .newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-band .newsletter-input:focus {
  outline: none;
  border-color: rgba(255, 180, 80, 0.85);
  box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.18);
  z-index: 1;
}

/* Campo cidade (texto livre): cantos completos, largura total */
.newsletter-band .newsletter-input--city {
  border-radius: 6px;
}

.newsletter-band .newsletter-submit {
  width: 100%;
  min-width: 0;
  padding: 9px 10px;
  border-radius: 0 6px 6px 0;
  border: 2px solid rgba(224, 130, 0, 0.95);
  border-left: none;
  background: linear-gradient(135deg, #ff9900 0%, #ffc14d 50%, #ff9900 100%);
  color: #111111;
  font-family: "bebas_neueregular", Helvetica, Arial, sans-serif;
  font-size: clamp(0.88rem, 1vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.newsletter-band .newsletter-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.45);
}

.newsletter-form {
  max-width: 36rem;
  margin: 0 auto;
}

.newsletter-field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
}

.newsletter-input {
  flex: 1 1 220px;
  min-width: 0;
  padding: 13px 16px;
  border: 2px solid rgba(255, 153, 0, 0.45);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.95);
  color: #ffffff;
  font-size: 16px;
  box-sizing: border-box;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-input:focus {
  outline: none;
  border-color: rgba(255, 180, 80, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
}

.newsletter-submit {
  flex: 0 0 auto;
  padding: 13px 26px;
  border-radius: 8px;
  border: 2px solid rgba(224, 130, 0, 0.95);
  background: linear-gradient(135deg, #ff9900 0%, #ffc14d 50%, #ff9900 100%);
  color: #111111;
  font-family: "bebas_neueregular", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.newsletter-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.45);
}

.newsletter-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 767px) {
  .newsletter-band {
    padding: 8px 4px;
    margin-top: 14px;
    max-width: 100%;
  }

  .newsletter-band__inner {
    gap: 14px 18px;
    transform: none;
  }

  .newsletter-band__badge-col {
    transform: translateY(12px);
  }

  .newsletter-band__badge-img {
    width: 112px;
    height: 112px;
    max-width: min(112px, 30vw);
  }

  .newsletter-band__cta {
    font-size: clamp(1.28rem, 4vw, 1.55rem);
  }

  /* Em ecrãs estreitos: formulário em coluna; imagem + bloco mantêm-se em linha */
  .newsletter-band .newsletter-field-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
    width: 100%;
  }

  /* Mesma largura que o campo cidade: anula flex do .newsletter-input genérico */
  .newsletter-band .newsletter-input {
    border-radius: 6px;
    width: 100%;
    max-width: 100%;
    flex: none;
    align-self: stretch;
    box-sizing: border-box;
  }

  .newsletter-band__city-row {
    align-self: stretch;
  }

  .newsletter-band .newsletter-submit {
    width: 100%;
    border-radius: 6px;
    border-left: 2px solid rgba(224, 130, 0, 0.95);
    padding: 10px 18px;
    font-size: 0.98rem;
  }
}

@media (max-width: 360px) {
  .newsletter-band__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .newsletter-band__main {
    text-align: center;
    width: 100%;
  }

  .newsletter-band__badge-col {
    transform: translateY(10px);
  }

  .newsletter-band__badge-img {
    width: 128px;
    height: 128px;
    max-width: 128px;
  }
}

@media (max-width: 480px) {
  .newsletter-section {
    padding: 40px 12px 48px;
  }

  .newsletter-field-row {
    flex-direction: column;
  }

  .newsletter-submit {
    width: 100%;
  }
}

/* New classes to replace inline styles and <br> elements */
.hidden-element {
  display: none;
  visibility: hidden;
}

.contact-section-bg {
  background-color: black;
}

.videos-desktop-layout {
  display: flex;
  justify-content: space-evenly;
}

.videos-mobile-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.videos-mobile-title {
  margin-bottom: 4rem;
}

.footer-desktop-sticky {
  position: sticky;
  bottom: 0;
}

.footer-spacing-desktop {
  margin-right: 3rem;
}

.footer-spacing-mobile {
  margin-right: 1rem;
}

.footer-phone-spacing {
  margin-right: 1.5rem;
}

.form-success-bold {
  font-weight: bold;
}

.form-hidden-field {
  display: none;
}

.embrashow-logo-spacing {
  display: block;
  margin-top: 2rem;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Enhanced Mobile Navbar Styling */
@media (max-width: 991px) {
  /* Mobile navbar collapse menu */
  .navbar-inverse .navbar-collapse {
    background: linear-gradient(
      135deg,
      #2c3136 0%,
      #3c4248 25%,
      #4a5258 50%,
      #3c4248 75%,
      #2c3136 100%
    ) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
    border-top: 2px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
  }

  .navbar-inverse .navbar-collapse::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 50%,
      transparent 100%
    );
  }

  .navbar-inverse .navbar-collapse::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.2) 50%,
      transparent 100%
    );
  }

  /* Mobile navbar links */
  .navbar-inverse .navbar-nav > li > a {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 255, 255, 0.1) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    position: relative;
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-inverse .navbar-nav > li:last-child > a {
    border-bottom: none;
  }

  .navbar-inverse .navbar-nav > li > a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 153, 0, 0.6);
  }

  .navbar-inverse .navbar-nav > li > a:hover,
  .navbar-inverse .navbar-nav > li > a:focus {
    color: #ff9900 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
      0 0 25px rgba(255, 153, 0, 0.3) !important;
    background: linear-gradient(
      135deg,
      rgba(255, 153, 0, 0.1) 0%,
      rgba(255, 153, 0, 0.05) 100%
    ) !important;
    transform: translateX(5px);
  }
  .navbar-inverse .navbar-nav > li > a:hover::before,
  .navbar-inverse .navbar-nav > li > a:focus::before {
    width: 100%;
  }

  /* Mobile navbar toggle button enhancement */
  .navbar-toggle {
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    background: linear-gradient(
      135deg,
      rgba(255, 153, 0, 0.1) 0%,
      rgba(255, 153, 0, 0.05) 100%
    ) !important;
    transition: all 0.3s ease !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    color: #ff9900 !important;
    font-family: "bebas_neueregular", Helvetica, Arial !important;
    font-size: 1.6em !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
      0 0 25px rgba(255, 153, 0, 0.3) !important;
    width: 275px !important;
    height: 45px !important;
    background-image: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .navbar-toggle:hover,
  .navbar-toggle:focus {
    background: linear-gradient(
      135deg,
      rgba(255, 153, 0, 0.2) 0%,
      rgba(255, 153, 0, 0.1) 100%
    ) !important;
    border-color: rgba(255, 153, 0, 0.4) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 153, 0, 0.3) !important;
    color: #ff9900 !important;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 153, 0, 0.8),
      0 0 35px rgba(255, 153, 0, 0.5), 0 0 50px rgba(255, 153, 0, 0.2) !important;
    animation: brand-glow 2s infinite alternate;
  }

  /* Mobile menu animation */
  .navbar-collapse.collapsing,
  .navbar-collapse.in {
    animation: mobileMenuSlide 0.3s ease-out;
  }

  @keyframes mobileMenuSlide {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Enhanced mobile touch states */
  .navbar-inverse .navbar-nav > li > a:active {
    background: linear-gradient(
      135deg,
      rgba(255, 153, 0, 0.2) 0%,
      rgba(255, 153, 0, 0.1) 100%
    ) !important;
    transform: translateX(8px) scale(0.98);
  }

  /* Mobile navbar header brand styling */
  .navbar-header .navbar-brand {
    color: #ff9900 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
      0 0 25px rgba(255, 153, 0, 0.3) !important;
    font-size: 1.3em !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    padding: 15px 15px !important;
    font-family: "bebas_neueregular", Helvetica, Arial !important;
  }

  .navbar-header .navbar-brand:hover,
  .navbar-header .navbar-brand:focus {
    color: #ff9900 !important;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 153, 0, 0.8),
      0 0 35px rgba(255, 153, 0, 0.5), 0 0 50px rgba(255, 153, 0, 0.2) !important;
    animation: brand-glow 2s infinite alternate;
  }
}

/* Enhanced About the Band Section Styling */

/* Desktop About Section */
#background-release {
  background: linear-gradient(
    135deg,
    #0a0a0a 0%,
    #1a1a1a 25%,
    #000000 50%,
    #1a1a1a 75%,
    #0a0a0a 100%
  );
  padding: 60px 0;
  position: relative;
}

#background-release::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 153, 0, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

#background-release h1 {
  font-size: 3.5em !important;
  margin-bottom: 40px !important;
  text-align: center;
  position: relative;
  color: #ffffff !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 153, 0, 0.3) !important;
}

#background-release h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
  box-shadow: 0 0 15px rgba(255, 153, 0, 0.6);
}

#release-img {
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 153, 0, 0.1);
  margin: 40px auto !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#release-img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 60px rgba(255, 153, 0, 0.2);
}

#release-text {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  margin-top: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

#release-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 153, 0, 0.3) 50%,
    transparent 100%
  );
}

#release-text p {
  font-size: 1.3em !important;
  line-height: 1.8 !important;
  margin-bottom: 25px !important;
  color: #f5f5f5 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
  text-align: left;
}

#release-text p:first-child {
  font-size: 1.4em !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  position: relative;
}

#release-text p:first-child::before {
  content: ""
    ";
  font-size: 4em;
  color: rgba(255, 153, 0, 0.3);
  position: absolute;
  left: -20px;
  top: -15px;
  font-family: serif;
}

#release-text-quote {
  background: linear-gradient(
    135deg,
    rgba(255, 153, 0, 0.1) 0%,
    rgba(255, 153, 0,  0.05) 100%

  );
  border-left: 4px solid #ff9900;
  padding: 25px !important;
  margin: 30px 0 0 0 !important;
  border-radius: 10px;
  font-style: italic !important;
  font-size: 1.2em !important;
  color: #ffcc66 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7) !important;
  position: relative;
  text-indent: 0 !important;
}

#release-text-quote::before {
  content: "
    "";
  font-size: 3em;
  color: rgba(255, 153, 0, 0.4);
  position: absolute;
  left: 10px;
  top: -5px;
  font-family: serif;
}

/* Mobile About Section */
#background-mobile {
  background: linear-gradient(
    135deg,
    #0a0a0a 0%,
    #1a1a1a 25%,
    #000000 50%,
    #1a1a1a 75%,
    #0a0a0a 100%
  );
  padding: 30px 0;
  position: relative;
}

#background-mobile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 153, 0, 0.02) 0%,
    transparent 70%
  );
  pointer-events: none;
}

#header-release-mobile {
  font-size: 2.5em !important;
  margin-bottom: 25px !important;
  text-align: center;
  position: relative;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.3) !important;
}

#header-release-mobile::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.6);
}

#release-text-xs {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin: 25px 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  text-align: left;
  color: white;
  font-family: "SEGOEUIL", Helvetica, Arial;
  font-size: 1.5em;
}

#release-text-xs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 153, 0, 0.2) 50%,
    transparent 100%
  );
}

#release-text-xs p {
  /* Removed text-indent */
}

#release-text-xs-quote {
  font-style: italic;
  margin-top: 2rem; /* Replace <br> */
  background: linear-gradient(
    135deg,
    rgba(255, 153, 0, 0.08) 0%,
    rgba(255, 153, 0, 0.03) 100%
  );
  border-left: 3px solid #ff9900;
  padding: 15px !important;
  border-radius: 6px;
  color: #ffcc66 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7) !important;
}

/* Mobile release image styling */
#background-mobile .img-responsive {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 153, 0, 0.08);
  margin: 25px auto !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#background-mobile .img-responsive:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 35px rgba(255, 153, 0, 0.12);
}

/* ============================================
   ENHANCED CONTACT SECTION STYLING
   ============================================ */

/* Contact Section Background */
.contact-section-bg {
  background: linear-gradient(
    135deg,
    #0a0a0a 0%,
    #1a1a1a 25%,
    #000000 50%,
    #1a1a1a 75%,
    #0a0a0a 100%
  ) !important;
  padding: 80px 0 !important;
  position: relative !important;
}

.contact-section-bg::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 153, 0, 0.03) 0%,
    transparent 70%
  ) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* Enhanced Contact Titles */
#cont-text h1,
#cont-text-xs h1 {
  font-size: 3.5em !important;
  margin-bottom: 40px !important;
  text-align: center !important;
  position: relative !important;
  color: #ffffff !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 153, 0, 0.3) !important;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  z-index: 2 !important;
}

#cont-text-xs h1 {
  font-size: 2.8em !important;
  margin-bottom: 30px !important;
}

#cont-text h1::after,
#cont-text-xs h1::after {
  content: "" !important;
  position: absolute !important;
  bottom: -15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 120px !important;
  height: 4px !important;
  background: linear-gradient(
    90deg,
    #ff9900 0%,
    #ffb84d 50%,
    #ff9900 100%
  ) !important;
  box-shadow: 0 0 15px rgba(255, 153, 0, 0.6) !important;
  border-radius: 2px !important;
}

#cont-text-xs h1::after {
  width: 100px !important;
  height: 3px !important;
  bottom: -12px !important;
}

/* Enhanced Form Containers */
.div-form,
.div-form-mobile {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 100%
  ) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  padding: 40px !important;
  margin: 30px auto !important;
  max-width: 800px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
  z-index: 2 !important;
}

.div-form::before,
.div-form-mobile::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 153, 0, 0.4) 20%,
    rgba(255, 153, 0, 0.6) 50%,
    rgba(255, 153, 0, 0.4) 80%,
    transparent 100%
  ) !important;
  border-radius: 20px 20px 0 0 !important;
}

/* Enhanced Form Controls */
.contact-section-bg .form-control {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  ) !important;
  border: 2px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  margin-bottom: 20px !important;
  padding: 15px 20px !important;
  font-size: 1.1em !important;
  transition: all 0.3s ease !important;
  backdrop-filter: blur(5px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.contact-section-bg .form-control:focus {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 100%
  ) !important;
  border-color: rgba(255, 153, 0, 0.6) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(255, 153, 0, 0.3), 0 4px 20px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-2px) !important;
  outline: none !important;
}

.contact-section-bg .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 500 !important;
}

/* Enhanced Submit Button */
.contact-section-bg .btn-submit {
  background: linear-gradient(
    135deg,
    #ff9900 0%,
    #ffb84d 50%,
    #ff9900 100%
  ) !important;
  border: none !important;
  color: #ffffff !important;
  padding: 15px 40px !important;
  font-size: 1.2em !important;
  font-weight: 700 !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.2), 0 0 10px rgba(255, 153, 0, 0.1) !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  margin-top: 20px !important;
}

.contact-section-bg .btn-submit::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  ) !important;
  transition: left 0.5s ease !important;
}

.contact-section-bg .btn-submit:hover {
  background: linear-gradient(
    135deg,
    #ffb84d 0%,
    #ff9900 50%,
    #ffb84d 100%
  ) !important;
  transform: translateY(-3px) scale(1.01) !important;
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.3), 0 0 15px rgba(255, 153, 0, 0.2) !important;
}

.contact-section-bg .btn-submit:hover::before {
  left: 100% !important;
}

.contact-section-bg .btn-submit:active {
  transform: translateY(-1px) scale(1.005) !important;
}

/* Enhanced Form Text Elements */
.contact-section-bg .form-required-text,
.contact-section-bg .form-required-text-mobile {
  color: #ff9900 !important;
  font-size: 1em !important;
  margin-bottom: 25px !important;
  text-align: center !important;
  font-weight: 600 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
  z-index: 2 !important;
  position: relative !important;
}

.contact-section-bg .form-success-bold {
  color: #4caf50 !important;
  font-weight: 700 !important;
  font-size: 1.4em !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.contact-section-bg #form-success,
.contact-section-bg #form-success-mobile {
  display: none !important;
  color: #4caf50 !important;
  text-align: center !important;
  padding: 30px !important;
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.1) 0%,
    rgba(76, 175, 80, 0.05) 100%
  ) !important;
  border: 2px solid rgba(76, 175, 80, 0.3) !important;
  border-radius: 15px !important;
  margin: 20px 0 !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2) !important;
}

.contact-section-bg #form-success p,
.contact-section-bg #form-success-mobile p {
  margin: 8px 0 !important;
  font-size: 1.1em !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

/* Enhanced Embrashow Logo */
.contact-section-bg .embrashow-logo-spacing {
  display: block !important;
  margin: 40px auto 30px auto !important;
  text-align: center !important;
  transition: all 0.3s ease !important;
  z-index: 2 !important;
  position: relative !important;
  max-width: 350px !important; /* Increased from 250px */
}

.contact-section-bg #logo-embrashow,
.contact-section-bg #logo-embrashow-mobile {
  border-radius: 12px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 153, 0, 0.08) !important;
  transition: all 0.3s ease !important;
  opacity: 0.85 !important;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  ) !important;
  backdrop-filter: blur(5px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.contact-section-bg #logo-embrashow:hover,
.contact-section-bg #logo-embrashow-mobile:hover {
  opacity: 1 !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 153, 0, 0.15) !important;
  border-color: rgba(255, 153, 0, 0.2) !important;
}

/* Link área Produção / contratante (abaixo do logo Embrashow) */
.contact-section-bg .link-producao-wrap {
  display: block;
  text-align: center !important;
  margin: 0.5rem auto 0 auto !important;
  position: relative;
  z-index: 2;
}

.contact-section-bg .link-producao {
  font-family: "bebas_neueregular", Helvetica, Arial, sans-serif;
  font-size: 1.35em;
  letter-spacing: 0.06em;
  color: #ff9900 !important;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

/* Use como botão mas mantendo o mesmo estilo do link */
.contact-section-bg .link-producao-btn {
  border: none !important;
  background: transparent !important;
  padding: 10px 15px !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
  color: #ffffff !important;
  text-decoration: none !important;
  text-underline-offset: 0 !important;
  text-shadow: -1px -1px 0 rgba(255, 153, 0, 1),
    1px -1px 0 rgba(255, 153, 0, 1),
    -1px 1px 0 rgba(255, 153, 0, 1),
    1px 1px 0 rgba(255, 153, 0, 1),
    0 0 10px rgba(255, 153, 0, 0.18) !important;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.contact-section-bg .link-producao-btn::before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.6);
}

.contact-section-bg .link-producao-btn:hover,
.contact-section-bg .link-producao-btn:focus {
  text-decoration: none;
  background-color: transparent;
  color: #ff9900 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
    0 0 25px rgba(255, 153, 0, 0.3) !important;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 0, 0.1) 0%,
    rgba(255, 153, 0, 0.05) 100%
  ) !important;
  transform: translateY(-2px);
}

.contact-section-bg .link-producao-btn:hover::before,
.contact-section-bg .link-producao-btn:focus::before {
  width: 80%;
}

.contact-section-bg .link-producao:hover,
.contact-section-bg .link-producao:focus {
  color: #ff9900 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
    0 0 25px rgba(255, 153, 0, 0.3) !important;
}

/* Contact Mobile Responsive Overrides */
@media (max-width: 768px) {
  .contact-section-bg {
    padding: 60px 0 40px 0 !important;
    margin-bottom: 80px !important; /* Account for sticky footer */
  }

  .contact-section-bg .div-form-mobile {
    padding: 30px 20px !important;
    margin: 20px auto !important;
    border-radius: 15px !important;
    max-width: 90% !important;
  }

  .contact-section-bg .form-control {
    padding: 12px 15px !important;
    font-size: 1em !important;
    margin-bottom: 15px !important;
  }

  .contact-section-bg .btn-submit {
    padding: 12px 30px !important;
    font-size: 1.1em !important;
  }

  .contact-section-bg #cont-text-xs h1 {
    font-size: 2.5em !important;
  }

  /* Enhanced Mobile Logo Optimizations */
  .contact-section-bg .embrashow-logo-spacing {
    margin: 35px auto 0 auto !important;
    max-width: 250px !important; /* Increased from 160px */
    padding-bottom: 12px !important;
  }

  .contact-section-bg .link-producao-wrap {
    margin-top: 0.15rem !important;
    padding-bottom: 40px !important; /* sticky footer clearance */
  }

  .contact-section-bg .link-producao {
    font-size: 1.2em !important;
  }

  .contact-section-bg .embrashow-logo-spacing:hover {
    transform: translateY(-2px) scale(1.02) !important;
  }

  .contact-section-bg #logo-embrashow-mobile {
    border-radius: 8px !important;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2), 0 0 8px rgba(255, 153, 0, 0.04) !important;
    opacity: 0.9 !important;
  }

  .contact-section-bg #logo-embrashow-mobile:hover {
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25), 0 0 12px rgba(255, 153, 0, 0.08) !important;
    opacity: 1 !important;
  }
}

/* ============================================
   CUSTOM NAVBAR - REPLACES BOOTSTRAP NAVBAR
   ============================================ */

/* Custom Navbar Base */
.custom-navbar {
  position: relative;
  min-height: 50px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  box-sizing: border-box;
  background: linear-gradient(
    135deg,
    #2c3136 0%,
    #3c4248 25%,
    #4a5258 50%,
    #3c4248 75%,
    #2c3136 100%
  ) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px);
}

.custom-navbar::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
}

.custom-navbar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
}

.custom-navbar-fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  margin-bottom: 0;
}

.custom-navbar-fixed-bottom {
  text-align: center;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  margin-top: 0;
  margin-bottom: 0;
}

.custom-container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

/* Custom Navigation Lists */
.custom-nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.custom-nav > li {
  position: relative;
  display: block;
  box-sizing: border-box;
}

.custom-nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  box-sizing: border-box;
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 255, 255, 0.1) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
}

.custom-nav > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff9900 0%, #ffb84d 50%, #ff9900 100%);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.6);
}

.custom-nav > li > a:hover,
.custom-nav > li > a:focus {
  text-decoration: none;
  background-color: transparent;
  color: #ff9900 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
    0 0 25px rgba(255, 153, 0, 0.3) !important;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 0, 0.1) 0%,
    rgba(255, 153, 0, 0.05) 100%
  ) !important;
  transform: translateY(-2px);
}

.custom-nav > li > a:hover::before,
.custom-nav > li > a:focus::before {
  width: 80%;
}

/* Brand/Logo Link Special Styling */
.custom-nav > li > a#brand {
  color: #ff9900 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
    0 0 25px rgba(255, 153, 0, 0.3) !important;
  font-size: 2.2em !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
}

.custom-nav > li > a#brand:hover {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 153, 0, 0.8),
    0 0 35px rgba(255, 153, 0, 0.5), 0 0 50px rgba(255, 153, 0, 0.2) !important;
  animation: brand-glow 2s infinite alternate;
}

/* Custom Navbar Navigation */
.custom-navbar-nav {
  margin: 7.5px -15px;
}

.custom-navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

/* Custom Navbar Right */
.custom-navbar-right {
  float: right !important;
  margin-right: -15px;
}

/* Custom Navbar Pills */
.custom-nav-pills > li {
  float: left;
}

.custom-nav-pills > li > a {
  border-radius: 4px;
}

/* Custom Navbar Toggle */
.custom-navbar-toggle {
  position: relative;
  float: right;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 0, 0.1) 0%,
    rgba(255, 153, 0, 0.05) 100%
  ) !important;
  transition: all 0.3s ease !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  color: #ff9900 !important;
  font-family: "bebas_neueregular", Helvetica, Arial !important;
  font-size: 1.6em !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 153, 0, 0.6),
    0 0 25px rgba(255, 153, 0, 0.3) !important;
  width: 275px !important;
  height: 45px !important;
  background-image: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.custom-navbar-toggle:hover,
.custom-navbar-toggle:focus {
  background: linear-gradient(
    135deg,
    rgba(255, 153, 0, 0.2) 0%,
    rgba(255, 153, 0, 0.1) 100%
  ) !important;
  border-color: rgba(255, 153, 0, 0.4) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 153, 0, 0.3) !important;
  color: #ff9900 !important;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 153, 0, 0.8),
    0 0 35px rgba(255, 153, 0, 0.5), 0 0 50px rgba(255, 153, 0, 0.2) !important;
  animation: brand-glow 2s infinite alternate;
}

/* Custom Navbar Collapse */
.custom-navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  border-top: 1px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.custom-navbar-collapse.custom-navbar-collapse-open {
  overflow-y: auto;
}

/* Desktop Layout */
@media (min-width: 768px) {
  .custom-navbar {
    /* border-radius: 4px; */
  }

  .custom-navbar-nav {
    float: left;
    margin: 0;
  }

  /* Left menu: keep all items on one line so Agenda/Contato align with A Banda/Vídeos */
  .custom-navbar-collapse .custom-navbar-nav:not(.custom-navbar-right) {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }

  .custom-navbar-collapse .custom-navbar-nav:not(.custom-navbar-right) > li {
    float: none;
    flex-shrink: 0;
  }

  .custom-navbar-nav > li {
    float: left;
  }

  .custom-navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  /* Flex: menu à esquerda, ícones sociais sempre colados à direita (PT e EN com textos mais longos) */
  .custom-navbar-collapse {
    width: auto;
    border-top: 0;
    box-shadow: none;
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }

  .custom-navbar-collapse > .custom-navbar-nav:not(.custom-navbar-right) {
    float: none !important;
    flex: 0 1 auto;
    min-width: 0;
    justify-content: flex-start;
  }

  .custom-navbar-collapse > .custom-navbar-nav.custom-navbar-right {
    float: none !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    flex: 0 0 auto;
  }

  .custom-navbar-right {
    margin-right: 0;
  }
}

/* Mobile Layout */
@media (max-width: 767px) {
  .custom-navbar-toggle {
    display: block;
    margin-left: auto;
    margin-right: auto;
    float: none;
    text-align: center;
  }

  .custom-navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(
      135deg,
      #2c3136 0%,
      #3c4248 25%,
      #4a5258 50%,
      #3c4248 75%,
      #2c3136 100%
    ) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
    border-top: 2px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
  }

  .custom-navbar-collapse.custom-navbar-collapse-open {
    display: block !important;
    animation: slideDown 0.3s ease-out;
  }

  /* Optionally, hide the menu if not open */
  .custom-navbar-collapse:not(.custom-navbar-collapse-open) {
    display: none !important;
  }

  .custom-navbar-nav {
    float: none !important;
    margin: 7.5px -15px;
    display: inline-block;
    text-align: center;
  }

  .custom-navbar-collapse .custom-navbar-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0;
    margin: 0 auto;
  }

  .custom-navbar-nav > li {
    float: none;
    display: block;
    width: 100%;
  }

  .custom-navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
  }

  .custom-navbar-nav > li:last-child > a {
    border-bottom: none;
  }

  /* Mobile Menu Animation */
  @keyframes slideDown {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Clearfix */
.custom-navbar:before,
.custom-navbar:after,
.custom-container-fluid:before,
.custom-container-fluid:after,
.custom-nav:before,
.custom-nav:after,
.custom-navbar-collapse:before,
.custom-navbar-collapse:after {
  display: table;
  content: " ";
}

.custom-navbar:after,
.custom-container-fluid:after,
.custom-nav:after,
.custom-navbar-collapse:after {
  clear: both;
}
.custom-navbar-collapse:after {
  clear: both;
}
.custom-navbar-collapse:before,
.custom-navbar-collapse:after {
  display: table;
  content: " ";
}

.custom-navbar:after,
.custom-container-fluid:after,
.custom-nav:after,
.custom-navbar-collapse:after {
  clear: both;
}

/* GERENCIAR AGENDA - Adicionar shows manualmente */
.agenda-admin-section {
  position: relative;
  z-index: 2;
  padding: 60px 15px 80px;
}
.agenda-admin-inner {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(20, 20, 20, 0.9) 100%);
  border: 2px solid rgba(255, 153, 0, 0.4);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 153, 0, 0.1);
}
.agenda-admin-title {
  font-family: "bebas_neueregular", Helvetica, Arial;
  color: #ff9900;
  font-size: 2.8em;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.agenda-admin-desc {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  font-size: 1.05em;
}
.agenda-admin-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-end;
}
.agenda-admin-field {
  display: flex;
  flex-direction: column;
  min-width: 200px;
  flex: 1;
  position: relative;
  padding-bottom: 1.2em; /* reserva espaço fixo do preview sem empurrar outros campos */
}
.agenda-admin-field label {
  color: #ff9900;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.95em;
}
.agenda-admin-field input {
  padding: 10px 14px;
  border: 1px solid rgba(255, 153, 0, 0.4);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 1em;
  height: 44px; /* garante alinhamento entre date/text */
}

#agenda-admin-local:disabled,
#agenda-admin-link:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* LOCAL e LINK em maiúsculas */
#agenda-admin-local,
#agenda-admin-link {
  text-transform: uppercase;
}

/* Calendário (input date) mais moderno */
#agenda-admin-data {
  background: linear-gradient(
    135deg,
    rgba(255, 153, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(20, 20, 20, 0.75) 100%
  );
  border: 2px solid rgba(255, 153, 0, 0.55);
  box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.08), 0 10px 25px rgba(0, 0, 0, 0.45);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

#agenda-admin-data::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.85;
  cursor: pointer;
}

#agenda-admin-data:focus {
  border-color: #ff9900;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.22), 0 14px 35px rgba(0, 0, 0, 0.55);
  transform: translateY(-1px);
}

#agenda-admin-data:hover {
  border-color: rgba(255, 153, 0, 0.75);
}

@keyframes agendaAdminShake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(0);
  }
}

#agenda-admin-data.agenda-admin-data--shake {
  animation: agendaAdminShake 0.5s ease-in-out;
}
.agenda-admin-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.agenda-admin-data-preview {
  position: absolute;
  left: 0;
  bottom: -6px;
  display: block;
  color: #ff9900;
  font-size: 0.95em;
  line-height: 1.2em;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  padding: 0;
  margin-bottom: 0;
  width: max-content;
  background: transparent;
  border: none;
  border-radius: 0;
}
.agenda-admin-field input:focus {
  outline: none;
  border-color: #ff9900;
  box-shadow: 0 0 0 2px rgba(255, 153, 0, 0.2);
}
.agenda-admin-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff9900 0%, #e68a00 100%);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.agenda-admin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.5);
}

/* Coluna Adicionar + REMOVER alinhada às caixas de texto */
.agenda-admin-actions {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 160px;
  flex: 0 0 auto;
  position: relative;
  padding-bottom: 1.2em; /* alinha com reserva do preview na coluna Data */
}
.agenda-admin-actions-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95em;
  line-height: 1.2;
  visibility: hidden;
  user-select: none;
}
.agenda-admin-buttons-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.agenda-admin-actions .agenda-admin-btn,
.agenda-admin-actions .agenda-admin-btn-remove {
  width: 100%;
  flex: 0 0 auto;
  min-width: 0;
  height: 44px;
}
.agenda-admin-btn-remove {
  padding: 12px 24px;
  background: transparent;
  color: #ff6b6b;
  border: 2px solid rgba(255, 107, 107, 0.75);
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.agenda-admin-btn-remove:hover {
  background: rgba(255, 107, 107, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.25);
}
.agenda-admin-btn-remove--hidden {
  display: none !important;
}

@media (max-width: 640px) {
  .agenda-admin-buttons-col {
    flex-direction: column;
    gap: 0.5rem;
  }
  .agenda-admin-actions .agenda-admin-btn,
  .agenda-admin-actions .agenda-admin-btn-remove {
    width: 100%;
    flex: 0 0 auto;
  }
}

/* ============================================
   MODAL CONFIRMAÇÃO (REMOVER)
   ============================================ */
.agenda-admin-confirm-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5000;
}
.agenda-admin-confirm-modal--open {
  display: flex;
}
.agenda-admin-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.agenda-admin-confirm-box {
  position: relative;
  width: min(520px, calc(100% - 30px));
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(20, 20, 20, 0.92) 100%
  );
  border: 2px solid rgba(255, 153, 0, 0.45);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(255, 153, 0, 0.15);
}
.agenda-admin-confirm-title {
  margin: 0 0 0.75rem;
  font-family: "bebas_neueregular", Helvetica, Arial;
  color: #ff9900;
  font-size: 2.2em;
}
.agenda-admin-confirm-message {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05em;
}
.agenda-admin-confirm-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
.agenda-admin-confirm-btn {
  min-width: 160px;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.agenda-admin-confirm-btn--cancel {
  background: rgba(255, 107, 107, 0.12);
  border: 2px solid rgba(255, 107, 107, 0.75);
  color: #ff6b6b;
}
.agenda-admin-confirm-btn--cancel:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 107, 107, 0.18);
  background: rgba(255, 107, 107, 0.18);
}
.agenda-admin-confirm-btn--ok {
  background: linear-gradient(135deg, #ff9900 0%, #e68a00 100%);
  color: #000;
}
.agenda-admin-confirm-btn--ok:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 153, 0, 0.25);
}

.agenda-admin-list-wrap {
  border-top: 1px solid rgba(255, 153, 0, 0.25);
  padding-top: 1.5rem;
}
.agenda-admin-list-title {
  font-family: "bebas_neueregular", Helvetica, Arial;
  color: #fff;
  font-size: 1.8em;
  margin-bottom: 1rem;
}
.agenda-admin-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.agenda-admin-list-empty {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  padding: 0.5rem 0;
}
.agenda-admin-list-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}
.agenda-admin-list-item--editing {
  background: rgba(0, 200, 255, 0.10);
  box-shadow: inset 0 0 0 3px rgba(0, 200, 255, 0.85);
  border-radius: 14px;
  padding: 14px 14px !important; /* dá respiro no box sem afetar o resto */
  transition: background 0.9s ease, box-shadow 0.9s ease, transform 0.9s ease;
  animation: agendaAdminSlowHighlightIn 1.2s ease-out;
}
.agenda-admin-list-item--editing .agenda-admin-item-edit {
  background: rgba(0, 200, 255, 0.18);
  border-color: rgba(0, 220, 255, 0.95);
}

@keyframes agendaAdminSlowHighlightIn {
  0% {
    opacity: 0.55;
    transform: translateY(8px);
    background: rgba(0, 200, 255, 0.02);
    box-shadow: inset 0 0 0 1px rgba(0, 200, 255, 0.2);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    background: rgba(0, 200, 255, 0.10);
    box-shadow: inset 0 0 0 3px rgba(0, 200, 255, 0.85);
  }
}

.agenda-admin-list-item--editing-fadeout {
  background: transparent !important;
  box-shadow: none !important;
  transition: background 4s ease, box-shadow 4s ease;
}

.agenda-admin-list-item--just-added {
  background: rgba(26, 143, 58, 0.14) !important;
  box-shadow: inset 0 0 0 3px rgba(26, 143, 58, 0.95) !important;
  border-radius: 14px;
  padding: 14px 14px !important; /* respiro no box */
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.agenda-admin-list-item:last-child {
  border-bottom: none;
}
.agenda-admin-item-date {
  color: #ff9900;
  font-weight: 600;
  flex-shrink: 0;
}
.agenda-admin-item-venue {
  flex: 1;
  min-width: 150px;
}
.agenda-admin-item-link {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, #ff9900 0%, #e68a00 100%);
  color: #000;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.agenda-admin-item-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(255, 153, 0, 0.5);
}

.agenda-admin-item-edit {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid rgba(255, 153, 0, 0.6);
  color: #ff9900;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
}
.agenda-admin-item-edit:hover {
  background: rgba(255, 153, 0, 0.12);
}

.agenda-admin-item-remove {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid rgba(255, 107, 107, 0.65);
  color: #ff6b6b;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
}
.agenda-admin-item-remove:hover {
  background: rgba(255, 107, 107, 0.12);
}

/* Tag "NOVO" — eventos criados nos últimos 21 dias (novoUntil da API) */
.agenda-novo-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: "bebas_neueregular", Helvetica, Arial, sans-serif;
  font-size: 0.85em;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff !important;
  background: linear-gradient(135deg, #1a8f3a 0%, #0d6b2a 100%) !important;
  border: 1px solid rgba(120, 255, 160, 0.45);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  line-height: 1.2;
  vertical-align: middle;
  flex-shrink: 0;
}
.show .date-novo-wrap {
  float: left;
  display: flex;
  flex-direction: row;
  align-items: center; /* centraliza verticalmente o NOVO junto da DATA */
  justify-content: flex-start;
  margin-top: 2px;
  gap: 10px;
}
.show .date-novo-wrap .date {
  float: none !important;
  text-align: center !important;
}
.agenda-novo-tag--desktop {
  float: none;
  margin: 0;
}
.show-mobile-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1rem;
  width: 100%;
  margin-bottom: 12px;
}
.show-mobile-head .date-mobile {
  margin-bottom: 0 !important;
}
.agenda-novo-tag--mobile {
  margin: 0;
}
.agenda-novo-tag--admin {
  margin: 0 0 0 1.1rem;
}

.agenda-admin-item-name {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 160px;
}
