/* CorteMaster - Dark Theme Styles */

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --secondary-color: #8b5cf6;
  --accent-color: #ec4899;
  --bg-dark: #0a0a0a;
  --bg-darker: #000000;
  --bg-card: #1a1a1a;
  --bg-card-hover: #252525;
  --text-primary: #ffffff;
  --text-secondary: #a3a3a3;
  --text-muted: #737373;
  --border-color: #2a2a2a;
  --shadow: rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  padding: 0.5rem 0;
}

.navbar-toggler {
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
  padding: 0.5rem 0.75rem !important;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.logo img {
  filter: brightness(1.1);
  max-height: 40px;
  width: auto;
}

.logo-img {
  max-width: 150px;
}

.free-time {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  font-size: 0.9rem;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .free-time {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    margin-left: 1rem;
  }
}

.free-time:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
  color: white !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 50%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 100px;
  }
}

/* Ajuste quando banner promocional está visível */
.hero.with-banner {
  padding-top: 140px;
}

@media (min-width: 768px) {
  .hero.with-banner {
    padding-top: 160px;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.hero-title h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 768px) {
  .hero-title h1 {
    font-size: 3.5rem;
    line-height: 1.2;
  }
}

.hero-title h1 i {
  color: var(--primary-color);
  -webkit-text-fill-color: var(--primary-color);
}

.hero-title p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .hero-title p {
    font-size: 1.2rem;
  }
}

.hero-download {
  margin: 2rem 0;
}

.hero-download img {
  transition: transform 0.3s ease;
  max-width: 100%;
  height: auto;
}

.hero-download img:hover {
  transform: scale(1.05);
}

.hero-download .col-12 {
  padding: 0;
}

.hero-assessment {
  margin-top: 2rem;
}

.hero-assessment p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.hero-assessment i {
  color: #fbbf24;
  margin-right: 0.3rem;
}

.users {
  margin-top: 1rem;
  gap: 0.5rem;
}

.user {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  color: var(--primary-color);
}

.plus {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border: 2px dashed var(--border-color);
}

.download p {
  margin-left: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.download span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.scroll-indicator-wrapper {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.scroll-indicator {
  width: 30px;
  height: 50px;
  border: 2px solid var(--border-color);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.scroll-wheel {
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(15px); opacity: 0.5; }
}

.arrow {
  position: absolute;
  bottom: 10px;
  color: var(--primary-color);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Resources Section */
.resources-section {
  padding: 4rem 0;
}

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

.box-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-primary);
}

.box-content {
  gap: 2rem;
}

.step-1, .step-2, .step-3 {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 3rem 2rem;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-1:hover, .step-2:hover, .step-3:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow);
  border-color: var(--primary-color);
}

.step-1 h3, .step-2 h3, .step-3 h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.step-1 h3 span, .step-2 h3 span, .step-3 h3 span {
  color: var(--primary-color);
}

/* Description Section */
.description-section {
  padding: 4rem 0;
  background: var(--bg-card);
}

.description-section h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.8;
}

.description-section b {
  color: var(--primary-color);
  font-weight: 700;
}

/* Features Section */
.features-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

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

.features-section h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.features-section h4 i {
  color: var(--primary-color);
  display: block;
  margin-bottom: 1rem;
}

.features-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background: var(--bg-card);
}

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

.testimonials-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-primary);
}

.testimonial-slider {
  overflow: hidden;
  margin-bottom: 4rem;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.testimonial-item {
  min-width: 350px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow);
  border-color: var(--primary-color);
}

.stars {
  margin-bottom: 1rem;
}

.stars i {
  color: #fbbf24;
  margin-right: 0.2rem;
}

.stars span {
  margin-left: 0.5rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.testimonial-item p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author i {
  color: var(--primary-color);
}

.author-info strong {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
}

.author-info small {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.counter {
  margin-top: 4rem;
}

.counter h4 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.counter h4 .value {
  display: inline-block;
  animation: numberGrow 0.3s ease-out;
}

@keyframes numberGrow {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.counter p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

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

.pricing-container {
  display: flex;
  gap: 4rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 4rem;
  flex-wrap: wrap;
}

.pricing-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.pricing-left p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.pricing-left .highlight {
  color: var(--primary-color);
  font-weight: 700;
}

.store-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.pricing-right {
  flex: 1;
  text-align: center;
}

.pricing-right p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.price {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.price .currency {
  font-size: 2rem;
  vertical-align: top;
  color: var(--primary-color);
}

.price .amount {
  color: var(--primary-color);
}

.pricing-right small {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: var(--bg-dark);
}

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

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 15px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border: none !important;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.5rem !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color) !important;
  background: var(--bg-card) !important;
}

.accordion-button::after {
  display: none;
}

.accordion-button i {
  margin-left: auto;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.accordion-button:not(.collapsed) i {
  transform: rotate(45deg);
}

.accordion-body {
  background: var(--bg-card);
  color: var(--text-secondary);
  padding: 0 1.5rem 1.5rem 1.5rem !important;
  line-height: 1.8;
}

/* Footer */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer-top {
  margin-bottom: 2rem;
}

.footer-top .logo {
  margin-bottom: 1.5rem;
}

.footer-top p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.footer-top .store-buttons {
  margin-top: 1rem;
}

.site-footer hr {
  border-color: var(--border-color);
  margin: 2rem 0;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-section {
    padding: 2rem 0;
  }

  .box-title h2 {
    font-size: 1.75rem;
    padding: 0 1rem;
  }

  .box-content {
    padding: 0 1rem;
  }

  .step-1, .step-2, .step-3 {
    margin-bottom: 1.5rem;
    min-height: 200px;
    padding: 2rem 1.5rem;
  }

  .step-1 h3, .step-2 h3, .step-3 h3 {
    font-size: 1.4rem;
  }

  .description-section {
    padding: 3rem 1rem;
  }

  .description-section h3 {
    font-size: 1.2rem;
  }

  .features-section {
    padding: 4rem 1rem;
  }

  .features-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .features-section p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .testimonials-section {
    padding: 4rem 1rem;
  }

  .testimonials-section h2 {
    font-size: 1.75rem;
    padding: 0 1rem;
  }

  .testimonial-item {
    min-width: 280px;
    padding: 1.5rem;
  }

  .counter {
    padding: 0 1rem;
  }

  .counter h4 {
    font-size: 1.75rem;
  }

  .counter p {
    font-size: 0.9rem;
  }

  .pricing-section {
    padding: 4rem 1rem;
  }

  .pricing-container {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .pricing-left {
    text-align: center;
    margin-bottom: 2rem;
  }

  .pricing-left h2 {
    font-size: 2rem;
  }

  .pricing-left p {
    font-size: 1rem;
  }

  .price {
    font-size: 3rem;
  }

  .faq-section {
    padding: 4rem 1rem;
  }

  .faq-section h2 {
    font-size: 1.75rem;
  }

  .site-footer {
    padding: 3rem 1rem 2rem;
  }

  .footer-top {
    text-align: center;
  }

  .footer-top .store-buttons {
    justify-content: center !important;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .col-md-6 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title h1 {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .hero-title p {
    font-size: 0.95rem;
    padding-right: 0 !important;
  }

  .free-time {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .navbar-nav {
    margin-top: 1rem;
    text-align: center;
  }

  .navbar-nav .nav-item {
    margin: 0.25rem 0;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0 !important;
  }

  .btn-download-apk {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .store-badge-disabled {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .store-badge-disabled img {
    width: 100%;
    height: auto;
  }

  .hero-assessment {
    margin-top: 1.5rem;
  }

  .users {
    flex-wrap: wrap;
    justify-content: center;
  }

  .download {
    margin-left: 0 !important;
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
  }

  .modal-dialog {
    margin: 1rem;
  }

  .modal-content {
    border-radius: 15px !important;
  }

  .modal-header {
    padding: 1rem 1rem 0.5rem !important;
  }

  .modal-body {
    padding: 1rem !important;
  }

  .modal-body .alert {
    padding: 1rem !important;
    font-size: 0.9rem;
  }

  .modal-body .instructions {
    padding: 1rem;
  }

  .modal-body .instructions ol {
    padding-left: 1.2rem;
    font-size: 0.9rem;
  }

  .modal-footer {
    padding: 1rem !important;
    flex-direction: column;
    gap: 0.5rem;
  }

  .modal-footer .btn {
    width: 100%;
  }
}

/* APK Download Button */
.btn-download-apk {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white !important;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-download-apk:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.5);
  color: white !important;
}

.btn-download-apk i {
  font-size: 1.1rem;
}

.store-badge-disabled {
  position: relative;
  cursor: not-allowed;
}

.store-badge-disabled::after {
  content: 'Em breve';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Modal Styles */
.modal-content {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 20px !important;
  color: var(--text-primary) !important;
  max-width: 100%;
}

@media (max-width: 576px) {
  .modal-content {
    border-radius: 15px !important;
  }
}

.modal-header {
  border-bottom: 1px solid var(--border-color) !important;
}

.modal-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.modal-title {
  color: var(--text-primary) !important;
  font-weight: 700;
}

.modal-body {
  color: var(--text-secondary) !important;
}

.modal-body h6 {
  color: var(--text-primary) !important;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.modal-body .alert {
  background: var(--bg-dark) !important;
  border: 1px solid var(--border-color) !important;
  border-radius: 10px !important;
  color: var(--text-secondary) !important;
}

.modal-body .alert-info {
  border-left: 4px solid #0dcaf0 !important;
}

.modal-body .alert-success {
  border-left: 4px solid #198754 !important;
}

.modal-body .alert-warning {
  border-left: 4px solid #ffc107 !important;
}

.modal-body .alert h6 {
  color: var(--text-primary) !important;
}

.modal-body .instructions {
  background: var(--bg-dark);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.modal-body .instructions h6 {
  color: var(--text-primary) !important;
}

.modal-body .instructions ol {
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.modal-body .instructions ol li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.modal-body .instructions ol li strong {
  color: var(--primary-color);
}

.modal-footer {
  border-top: 1px solid var(--border-color) !important;
}

.modal-footer .btn-secondary {
  background: var(--bg-dark) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-secondary) !important;
}

.modal-footer .btn-secondary:hover {
  background: var(--bg-card-hover) !important;
  color: var(--text-primary) !important;
}

.modal-footer .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
  border: none !important;
  color: white !important;
  font-weight: 600;
}

.modal-footer .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-muted i {
  color: var(--primary-color);
}

.hero-download .text-muted {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: block;
}

.hero-download .text-muted i {
  color: var(--primary-color);
  margin-right: 0.3rem;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: var(--primary-color);
  color: white;
}

::-moz-selection {
  background: var(--primary-color);
  color: white;
}

/* Banner Promocional */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
  animation: slideDown 0.5s ease-out;
  margin-top: 70px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.promo-content {
  color: white;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.promo-content > div:first-child {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.promo-content i {
  font-size: 1.2rem;
  color: #fbbf24;
}

.promo-content strong {
  font-weight: 700;
}

.promo-city-message {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
  animation: fadeInUp 0.5s ease-out;
}

.promo-city-message i {
  color: #fbbf24;
  margin-right: 0.3rem;
}

.promo-city-message strong {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.highlight-promo {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 5px;
  font-weight: 700;
  margin: 0 0.3rem;
}

.countdown-text {
  margin-left: 0.5rem;
  opacity: 0.9;
}

.countdown-timer {
  font-family: 'Courier New', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 8px;
  margin-left: 0.5rem;
  display: inline-block;
  min-width: 70px;
  text-align: center;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.btn-promo {
  background: white;
  color: #6366f1;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-close-banner {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  margin-left: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.btn-close-banner:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .promo-banner {
    margin-top: 60px;
    padding: 0.8rem 0;
  }
  
  .promo-content {
    font-size: 0.85rem;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  
  .promo-content > div:first-child {
    justify-content: center;
  }
  
  .promo-city-message {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 0.3rem;
  }
  
  .countdown-timer {
    font-size: 1.1rem;
    padding: 0.2rem 0.6rem;
    margin-left: 0.3rem;
  }
  
  .btn-promo {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  
  .col-md-4 {
    text-align: center !important;
  }
}


/* Janela MSN Style */
.msn-window {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px solid #6366f1;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  opacity: 0;
  transform: translateY(100px) scale(0.8);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.msn-window.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.msn-header {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  padding: 0.6rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px 8px 0 0;
  cursor: move;
}

.msn-title {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.msn-title i {
  font-size: 1rem;
}

.msn-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  transition: background 0.2s ease;
}

.msn-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.msn-body {
  padding: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border-radius: 0 0 8px 8px;
}

.msn-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: bounceIn 0.5s ease-out;
}

.msn-icon i {
  color: white;
  font-size: 1.5rem;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.msn-message {
  flex: 1;
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.msn-message strong {
  color: #6366f1;
  font-weight: 700;
}

.msn-time {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 576px) {
  .msn-window {
    width: calc(100% - 40px);
    right: 20px;
    left: 20px;
    bottom: 20px;
  }
  
  .msn-body {
    padding: 1rem;
  }
  
  .msn-icon {
    width: 40px;
    height: 40px;
  }
  
  .msn-icon i {
    font-size: 1.2rem;
  }
  
  .msn-message {
    font-size: 0.85rem;
  }
}
