/* junina.css - Estilos EXCLUSIVOS para a página Festa Junina da ASMG 2026 */

:root {
  --junina-primary: #e84c3d;
  --junina-secondary: #f4c542;
  --junina-tertiary: #2ecc71;
  --junina-light-bg: #fdf6e3;
  --junina-white: #ffffff;
  --junina-text-dark: #333333;
  --junina-text-muted: #6c757d;
  --junina-border-radius: 12px;
  --junina-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --junina-transition: all 0.3s ease;
  --junina-dark-blue: #002b80;
  --whatsapp-color: #25D366;
  --instagram-color: #E4405F;
}

/* BODY */
body.festa-junina {
  background-color: var(--junina-white);
  color: var(--junina-text-dark);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* BANNER PRINCIPAL */
.hero-banner-section {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1504609813442-a8924e83f76e?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 76, 61, 0.85), rgba(0, 43, 128, 0.75));
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--junina-white);
  z-index: 2;
  width: 90%;
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-text {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* CARDS HISTÓRICOS */
.history-card {
  background: var(--junina-white);
  padding: 30px 20px;
  border-radius: var(--junina-border-radius);
  text-align: center;
  box-shadow: var(--junina-box-shadow);
  transition: var(--junina-transition);
  height: 100%;
}

.history-card:hover {
  transform: translateY(-5px);
}

.history-card i {
  font-size: 2.5rem;
  color: var(--junina-secondary);
  margin-bottom: 15px;
}

.history-card h4 {
  font-size: 1.3rem;
  color: #002b80;
  margin-bottom: 15px;
}

/* BANNER INFORMAÇÕES */
.info-banner-section {
  background: url('https://images.unsplash.com/photo-1688948872301-966ef3da3faf?q=80&w=1170&auto=format&fit=crop') center/cover no-repeat;
  position: relative;
  margin: 40px 0;
}

.info-banner-overlay {
  background: rgba(170, 19, 5, 0.9);
  padding: 50px 0;
}

.info-banner-content {
  text-align: center;
  color: var(--junina-white);
}

.info-banner-content i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.info-banner-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* CARDS DE COMIDAS */
.item-card {
  background: var(--junina-white);
  border-radius: var(--junina-border-radius);
  overflow: hidden;
  box-shadow: var(--junina-box-shadow);
  transition: var(--junina-transition);
  height: 100%;
}

.item-card:hover {
  transform: translateY(-5px);
}

.item-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.item-info {
  padding: 20px;
  text-align: center;
}

.item-info h4 {
  color: #002b80;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 700;
  border-left: 4px solid var(--junina-primary);
  padding-left: 12px;
  text-align: left;
}

/* TEXTO VENDIDOS SEPARADAMENTE */
.vendidos-separadamente {
  font-size: 1.2rem;
  color: var(--junina-primary);
  font-weight: 600;
  display: inline-block;
  padding: 10px 25px;
  background: rgba(232, 76, 61, 0.1);
  border-radius: 50px;
}

/* SEÇÃO INGRESSO */
.ticket-section {
  background: linear-gradient(135deg, var(--junina-dark-blue), #0a1a3a);
}

.ticket-section .section-title {
  color: var(--junina-white);
}

.ticket-section .section-title::after {
  background: var(--junina-secondary);
}

.ticket-text {
  font-size: 1.2rem;
  color: var(--junina-white);
  margin-bottom: 30px;
}

.ticket-info-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--junina-border-radius);
  padding: 25px 20px;
  text-align: center;
  color: var(--junina-white);
  transition: var(--junina-transition);
}

.ticket-info-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.ticket-info-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--junina-secondary);
}

.ticket-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--junina-secondary);
  margin-bottom: 5px;
}

.ticket-details {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 15px 30px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

.ticket-details p {
  color: var(--junina-white);
  margin-bottom: 0;
}

.ticket-period {
  color: var(--junina-white);
  font-size: 1rem;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  display: inline-block;
}

.btn-ticket {
  background: var(--junina-white);
  color: var(--junina-dark-blue);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: var(--junina-transition);
}

.btn-ticket:hover {
  transform: scale(1.05);
  background: var(--junina-secondary);
  color: var(--junina-dark-blue);
}

/* Seção PIX - ESTILOS ATUALIZADOS */
.pix-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.pix-card {
  background: var(--junina-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 600px;
  margin: 0 auto;
}

.pix-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.pix-title {
  color: var(--junina-dark-blue);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.pix-value {
  background: linear-gradient(135deg, var(--junina-primary), #d43f31);
  color: var(--junina-white);
  padding: 1rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.pix-value h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 800;
}

.pix-value p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}

.pix-key-container {
  background: var(--junina-light-bg);
  border: 2px solid var(--junina-secondary);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.pix-key-label {
  font-size: 0.85rem;
  color: var(--junina-text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pix-key-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.pix-key-code {
  background: var(--junina-white);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
  font-weight: bold;
  color: var(--junina-dark-blue);
  flex: 1;
  word-break: break-all;
  border: 1px solid #dee2e6;
}

.btn-copy-pix {
  background: var(--junina-secondary);
  color: var(--junina-dark-blue);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-copy-pix:hover {
  background: #e6b422;
  transform: scale(1.02);
}

.btn-copy-pix i {
  margin-right: 0.5rem;
}

.pix-instructions {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dee2e6;
}

.pix-instructions p {
  color: var(--junina-text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.pix-instructions i {
  color: var(--junina-primary);
  margin-right: 0.3rem;
}

/* FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: var(--junina-border-radius);
  overflow: hidden;
  box-shadow: var(--junina-box-shadow);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: var(--junina-white);
  border: none;
  text-align: left;
  font-weight: 600;
  color: #002b80;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question:hover {
  background: var(--junina-light-bg);
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 20px;
  background: var(--junina-white);
  border-top: 1px solid #eee;
  color: var(--junina-text-muted);
}

/* ÍCONES DE CONTATO COLORIDOS */
.contacto-whatsapp {
  color: var(--whatsapp-color) !important;
  margin-right: 8px;
}

.contacto-instagram {
  color: var(--instagram-color) !important;
  margin-right: 8px;
}

/* TÍTULOS GLOBAIS */
.section-padding {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #002b80;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--junina-secondary);
}

.bg-light {
  background: var(--junina-light-bg);
}

/* Notificação de cópia */
.notificacao-copiar {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #28a745;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  animation: slideUp 0.3s ease;
}

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

/* RESPONSIVO */
@media (max-width: 768px) {
  .hero-banner-section { height: 300px; }
  .banner-title { font-size: 1.5rem; }
  .section-title { font-size: 1.6rem; }
  .btn-ticket { padding: 12px 30px; font-size: 1rem; }
  .ticket-details { flex-direction: column; gap: 10px; border-radius: 20px; }
  .pix-card { margin: 0 1rem; padding: 1.5rem; }
  .pix-key-display { flex-direction: column; }
  .btn-copy-pix { width: 100%; }
}

@media (max-width: 576px) {
  .hero-banner-section { height: 250px; }
  .section-title { font-size: 1.4rem; }
  .ticket-value { font-size: 1.5rem; }
}