/*
Theme Name: Show Productions
Theme URI: https://showproductions.com.br
Author: Show Productions
Author URI: https://showproductions.com.br
Description: Tema personalizado para produtora de shows com gestão de artistas via WordPress Admin
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: show-productions
*/

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

/* Container */
.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .header-content {
    padding: 0 2rem;
  }
}

.site-logo {
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.site-logo:hover {
  color: #d1d1d1;
}

/* Navigation */
.main-navigation {
  display: none;
}

@media (min-width: 768px) {
  .main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #fff;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-menu a:hover {
  color: #d1d1d1;
}

.cta-button {
  background: #fff;
  color: #000;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: bold;
  transition: all 0.15s ease;
  display: inline-block;
}

.cta-button:hover {
  background: #e5e5e5;
  transform: scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: block;
  background: transparent;
  color: #fff;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.15s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Mobile Navigation */
.mobile-navigation {
  display: none;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-navigation.active {
  display: block;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1rem;
  list-style: none;
  margin: 0;
}

.mobile-nav-menu a {
  color: #fff;
  font-weight: 500;
  transition: color 0.15s ease;
}

.mobile-nav-menu a:hover {
  color: #d1d1d1;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-slide.active {
  opacity: 1;
}

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

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(0,0,0,0.8));
}

.carousel-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.carousel-text {
  text-align: center;
  color: #fff;
  padding: 0 1rem;
}

.carousel-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  animation: fadeIn 1.2s ease-out;
}

@media (min-width: 768px) {
  .carousel-title {
    font-size: 4.5rem;
  }
}

@media (min-width: 1024px) {
  .carousel-title {
    font-size: 6rem;
  }
}

.carousel-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .carousel-subtitle {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .carousel-subtitle {
    font-size: 2rem;
  }
}

.carousel-cta {
  background: #fff;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 1.125rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.carousel-cta:hover {
  background: #e5e5e5;
  transform: scale(1.05);
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 0.75rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.carousel-nav.prev {
  left: 1rem;
}

.carousel-nav.next {
  right: 1rem;
}

@media (min-width: 768px) {
  .carousel-nav.prev {
    left: 2rem;
  }
  .carousel-nav.next {
    right: 2rem;
  }
}

.carousel-nav svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #fff;
  width: 32px;
}

/* About Section */
.about-section {
  background: #fff;
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .about-section {
    padding: 8rem 0;
  }
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.section-divider {
  width: 96px;
  height: 4px;
  background: #000;
  margin: 0 auto 4rem;
}

.about-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-text {
  max-width: 600px;
}

.about-text p {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #000;
  color: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: scale(1.05);
}

.feature-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: #d1d1d1;
  font-size: 0.875rem;
}

.about-cta {
  background: #000;
  color: #fff;
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
}

.about-cta h3 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.about-cta p {
  color: #d1d1d1;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

/* Artists Section */
.artists-section {
  background: #000;
  color: #fff;
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .artists-section {
    padding: 8rem 0;
  }
}

.artists-section .section-title {
  color: #fff;
}

.artists-section .section-divider {
  background: #fff;
}

.artists-section .section-subtitle {
  text-align: center;
  color: #9ca3af;
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.artists-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .artists-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.artist-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.artist-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.artist-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.artist-card:hover .artist-image img {
  transform: scale(1.1);
}

.artist-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0.5), transparent);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.artist-card:hover .artist-image-overlay {
  opacity: 0.8;
}

.artist-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: #fff;
}

.artist-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
  transition: transform 0.3s ease;
}

.artist-card:hover .artist-name {
  transform: translateY(-4px);
}

.artist-genre {
  color: #d1d1d1;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.artist-hover-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.artist-card:hover .artist-hover-text {
  opacity: 1;
}

/* Contact Section */
.contact-section {
  background: #fff;
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 8rem 0;
  }
}

.contact-section .section-subtitle {
  text-align: center;
  color: #4b5563;
  font-size: 1.125rem;
  margin-bottom: 4rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  padding: 2rem;
  border-radius: 1rem;
  transition: transform 0.2s ease;
}

.contact-card:hover {
  transform: scale(1.05);
}

.contact-card.primary {
  background: #000;
  color: #fff;
}

.contact-card.secondary {
  background: #f3f4f6;
  color: #000;
}

.contact-card svg {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.contact-card p {
  margin-bottom: 1rem;
}

.contact-card.primary p {
  color: #d1d1d1;
}

.contact-card.secondary p {
  color: #4b5563;
}

.contact-value {
  font-size: 1.25rem;
  font-family: monospace;
  margin-bottom: 1rem;
}

.contact-button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: bold;
  text-align: center;
  display: block;
  transition: all 0.2s ease;
}

.contact-card.primary .contact-button {
  background: #fff;
  color: #000;
}

.contact-card.primary .contact-button:hover {
  background: #e5e5e5;
}

.contact-card.secondary .contact-button {
  background: #000;
  color: #fff;
}

.contact-card.secondary .contact-button:hover {
  background: #1f1f1f;
}

.contact-info-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-info-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 0.5rem;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  margin-top: 0.25rem;
  stroke: #000;
  stroke-width: 2;
  fill: none;
}

.contact-info-item h4 {
  font-weight: bold;
  color: #000;
  margin-bottom: 0.25rem;
}

.contact-info-item p {
  color: #4b5563;
}

.business-hours {
  margin-top: 3rem;
  text-align: center;
  background: #000;
  color: #fff;
  padding: 2rem;
  border-radius: 1rem;
}

.business-hours h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.business-hours p {
  color: #d1d1d1;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.business-hours .note {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* Footer */
.site-footer {
  background: #000;
  color: #fff;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #9ca3af;
  margin-bottom: 1rem;
}

.footer-brand .badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.875rem;
}

.footer-brand .badge svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.footer-links h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #9ca3af;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
  display: inline-flex;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.social-icons svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-8 {
  margin-top: 2rem;
}

/* Modal Styles */
.artist-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  padding: 1rem;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
}

.artist-modal.active {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 1rem;
  max-width: 80rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0.5rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.modal-close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.modal-header {
  position: relative;
  height: 16rem;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}

@media (min-width: 768px) {
  .modal-header {
    height: 24rem;
  }
}

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

.modal-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0.5), transparent);
}

.modal-header-info {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: #fff;
}

.modal-header-info h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .modal-header-info h2 {
    font-size: 3rem;
  }
}

.modal-header-info p {
  font-size: 1.25rem;
  color: #d1d1d1;
}

.modal-body {
  padding: 2rem;
}

@media (min-width: 768px) {
  .modal-body {
    padding: 3rem;
  }
}

.modal-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.highlight-badge {
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.modal-section {
  margin-bottom: 2.5rem;
}

.modal-section h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 1rem;
}

.modal-section p {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.75;
}

.show-images-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .show-images-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.show-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 0.5rem;
}

.show-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.show-image:hover img {
  transform: scale(1.1);
}

.modal-video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #000;
}

.modal-video iframe {
  width: 100%;
  height: 100%;
}

.modal-cta {
  background: #000;
  color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.modal-cta h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.modal-cta p {
  color: #d1d1d1;
  margin-bottom: 1.5rem;
}

.whatsapp-button {
  background: #fff;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 1.125rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-button:hover {
  background: #e5e5e5;
  transform: scale(1.05);
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}