/* ===========================
   DESIGN SYSTEM - CSS VARIABLES
   =========================== */

:root {
  /* Colors - HSL Format */
  --background: #0f1419;
  --foreground: #f0fffe;

  --card: #141a22;
  --card-foreground: #f0fffe;

  --primary: #00d4ff;
  --primary-dark: #0099cc;
  --primary-light: #33e0ff;

  --secondary: #00cc88;
  --secondary-dark: #009966;
  --secondary-light: #33dd99;

  --accent: #cc00ff;
  --accent-dark: #9900cc;
  --accent-light: #dd33ff;

  --muted: #334455;
  --muted-foreground: #99aabb;

  --border: #223344;
  --input: #1a2230;

  /* Shadows */
  --shadow-glow-primary: 0 0 30px rgba(0, 212, 255, 0.4);
  --shadow-glow-secondary: 0 0 30px rgba(0, 204, 136, 0.4);
  --shadow-card: 0 10px 40px rgba(15, 20, 25, 0.6);

  /* Border Radius */
  --radius: 0.75rem;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   GLOBAL STYLES
   =========================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===========================
   TYPOGRAPHY
   =========================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--muted-foreground);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--primary-light);
}

/* ===========================
   GRADIENT TEXT
   =========================== */

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow-pulse 2s ease-in-out infinite;
}

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

.text-secondary {
  color: var(--secondary);
}

.text-accent {
  color: var(--accent);
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--background);
  box-shadow: var(--shadow-glow-primary);
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

.btn-hero:hover {
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.8);
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid rgba(0, 212, 255, 0.5);
  background: transparent;
  color: var(--primary);
  font-size: 1.125rem;
  padding: 1rem 2rem;
}

.btn-outline:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary);
}

.btn-glow {
  background: var(--card);
  border: 2px solid rgba(0, 212, 255, 0.3);
  color: var(--foreground);
  padding: 0.75rem 1.5rem;
}

.btn-glow:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow-primary);
}

.btn-full {
  width: 100%;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 20, 25, 0.95),
    rgba(15, 20, 25, 0.9),
    rgba(15, 20, 25, 1)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  animation: slide-up 0.8s ease-out;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  animation: slide-up 0.8s ease-out;
}

.logo {
  height: 120px;
  width: auto;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: slide-up 0.8s ease-out 0.1s both;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  animation: slide-up 0.8s ease-out 0.2s both;
}

.highlight-text {
  display: block;
  margin-top: 0.5rem;
  color: var(--primary);
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  animation: slide-up 0.8s ease-out 0.3s both;
}

.benefit-card {
  background: rgba(20, 26, 34, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: var(--shadow-glow-primary);
}

.benefit-card-secondary:hover {
  box-shadow: var(--shadow-glow-secondary);
}

.benefit-card-accent:hover {
  box-shadow: 0 0 30px rgba(204, 0, 255, 0.4);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
}

.benefit-card-secondary .benefit-icon {
  background: rgba(0, 204, 136, 0.1);
  color: var(--secondary);
}

.benefit-card-accent .benefit-icon {
  background: rgba(204, 0, 255, 0.1);
  color: var(--accent);
}

.benefit-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.benefit-card-secondary h3 {
  color: var(--secondary);
}

.benefit-card-accent h3 {
  color: var(--accent);
}

.benefit-card p {
  font-size: 0.95rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
  animation: slide-up 0.8s ease-out 0.4s both;
}

.trust-badge {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin-top: 2rem;
  animation: slide-up 0.8s ease-out 0.5s both;
}

.decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: pulse 4s ease-in-out infinite;
}

.decoration-1 {
  width: 300px;
  height: 300px;
  background: rgba(0, 212, 255, 0.2);
  top: 80px;
  left: 40px;
}

.decoration-2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 204, 136, 0.2);
  bottom: 80px;
  right: 40px;
  animation-delay: 1s;
}

/* ===========================
   FEATURES SECTION
   =========================== */

.features-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(
    to bottom,
    var(--background),
    rgba(0, 204, 136, 0.05),
    var(--background)
  );
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: slide-up 0.8s ease-out;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: rgba(20, 26, 34, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: var(--transition-smooth);
  animation: slide-up 0.8s ease-out;
}

.feature-card:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  box-shadow: var(--shadow-glow-primary);
}

.feature-icon-secondary {
  background: rgba(0, 204, 136, 0.1);
  color: var(--secondary);
}

.feature-card:hover .feature-icon-secondary {
  box-shadow: var(--shadow-glow-secondary);
}

.feature-icon-accent {
  background: rgba(204, 0, 255, 0.1);
  color: var(--accent);
}

.feature-card:hover .feature-icon-accent {
  box-shadow: 0 0 30px rgba(204, 0, 255, 0.4);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* PIX Section */
.pix-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 4rem 0;
  animation: slide-up 0.8s ease-out 0.2s both;
}

.pix-content {
  animation: slide-up 0.8s ease-out;
}

.pix-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 204, 136, 0.2);
  border: 1px solid rgba(0, 204, 136, 0.3);
  border-radius: 2rem;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.pix-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.pix-content p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.pix-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pix-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pix-feature-dot {
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.pix-feature p {
  color: var(--foreground);
}

.pix-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 204, 136, 0.2);
  background: rgba(20, 26, 34, 0.3);
  backdrop-filter: blur(10px);
  padding: 2rem;
  animation: slide-up 0.8s ease-out 0.2s both;
}

.pix-image img {
  width: 100%;
  height: auto;
  display: block;
}

.pix-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 20, 25, 0.8), transparent);
  pointer-events: none;
}

/* Payment Section */
.payment-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 4rem 0;
  animation: slide-up 0.8s ease-out;
}

.payment-section .payment-image {
  order: -1;
  animation: slide-up 0.8s ease-out;
}

.payment-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: rgba(20, 26, 34, 0.3);
  backdrop-filter: blur(10px);
  padding: 2rem;
}

.payment-image img {
  width: 100%;
  height: auto;
  display: block;
}

.payment-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 20, 25, 0.8), transparent);
  pointer-events: none;
}

.payment-content {
  animation: slide-up 0.8s ease-out 0.2s both;
}

.payment-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 212, 255, 0.2);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 2rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.payment-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.payment-content p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.event-types {
  background: rgba(20, 26, 34, 0.5);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.event-types h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.event-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.event-type {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--foreground);
}

.event-type-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */

.testimonials-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(
    to bottom,
    var(--background),
    rgba(0, 212, 255, 0.05),
    var(--background)
  );
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: rgba(20, 26, 34, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: var(--transition-smooth);
  animation: slide-up 0.8s ease-out;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: var(--shadow-card);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.star {
  color: var(--secondary);
  font-size: 1.25rem;
}

.testimonial-text {
  color: var(--foreground);
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--background);
  font-weight: 700;
  flex-shrink: 0;
}

.author-info h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
  margin: 0;
}

.author-info .company {
  font-size: 0.8rem;
}

/* Trust Stats */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  animation: slide-up 0.8s ease-out 0.3s both;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

/* ===========================
   FORM SECTION
   =========================== */

.form-section {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(
    to bottom,
    var(--background),
    rgba(0, 204, 136, 0.05),
    var(--background)
  );
}

.form-card {
  max-width: 700px;
  margin: 0 auto 2rem;
  background: rgba(20, 26, 34, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  animation: slide-up 0.8s ease-out;
}

.form-toggle {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.toggle-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--muted-foreground);
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.toggle-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.toggle-btn-active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--background);
  border-color: transparent;
}

.smart-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-mode-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.95rem;
}

.form-input {
  padding: 0.75rem 1rem;
  background: rgba(26, 34, 48, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

.form-remember {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.checkbox-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
}

.forgot-password {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.forgot-password:hover {
  text-decoration: underline;
}

.form-terms {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  padding-top: 1rem;
}

.form-terms .link {
  color: var(--primary);
}

.form-terms .link:hover {
  text-decoration: underline;
}

.support-info {
  text-align: center;
  animation: slide-up 0.8s ease-out 0.2s both;
}

.support-info p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  background: rgba(20, 26, 34, 0.5);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  animation: slide-up 0.8s ease-out;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--muted-foreground);
  transition: var(--transition-smooth);
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-section p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: rgba(0, 212, 255, 0.2);
  box-shadow: var(--shadow-glow-primary);
}

.contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-label {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--foreground);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.footer-links a:hover {
  color: var(--primary);
}

/* ===========================
   TOAST NOTIFICATION
   =========================== */

.toast {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--background);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-glow-primary);
  z-index: 1000;
  transition: bottom 0.4s ease-out;
  font-weight: 600;
  max-width: 90%;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast-error {
  background-color: #ff6b6b; /* Vermelho suave para erro */
  color: var(--background); /* Cor escura para o texto */
  border: 1px solid #ff4d4d;
  box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.toast.show {
  bottom: 2rem;
}

/* ===========================
   ANIMATIONS
   =========================== */

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

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1) drop-shadow(0 0 10px currentColor);
  }
  50% {
    opacity: 0.8;
    filter: brightness(1.2) drop-shadow(0 0 20px currentColor);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .logo {
    height: 80px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pix-section,
  .payment-section {
    grid-template-columns: 1fr;
  }

  .payment-section .payment-image {
    order: 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-card {
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .decoration {
    width: 200px !important;
    height: 200px !important;
  }

  .decoration-1 {
    top: 40px;
    left: 20px;
  }

  .decoration-2 {
    bottom: 40px;
    right: 20px;
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .logo {
    height: 60px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .btn-hero,
  .btn-outline {
    padding: 0.75rem 1.5rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .form-toggle {
    flex-direction: column;
  }

  .event-types-grid {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }

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

  .social-links {
    justify-content: center;
  }
}

/* ===========================
   UTILITY CLASSES
   =========================== */

.font-bold {
  font-weight: 700;
}

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

.hidden {
  display: none !important;
}

/*etyles de erros para o formulario*/
/* MESSAGES STYLES */
.messages-section {
  padding: 20px 0;
  background: transparent;
}

.messages-container {
  max-width: 600px;
  margin: 0 auto;
}

.message {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid transparent;
  animation: slideInDown 0.3s ease-out;
}

.message-error {
  background: linear-gradient(135deg, #fee 0%, #fdd 100%);
  border-color: #f5c6cb;
  color: #721c24;
}

.message-success {
  background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
  border-color: #c3e6cb;
  color: #155724;
}

.message-warning {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-color: #ffeaa7;
  color: #856404;
}

.message-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.message-error .message-icon {
  background: #dc3545;
  color: white;
}

.message-success .message-icon {
  background: #28a745;
  color: white;
}

.message-warning .message-icon {
  background: #ffc107;
  color: #856404;
}

.message-content {
  flex: 1;
}

.message-close {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  opacity: 0.7;
  padding: 4px;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.message-close:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
}

@keyframes slideInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .message {
    padding: 14px 16px;
    font-size: 14px;
  }

  .message-icon {
    width: 20px;
    height: 20px;
  }
}
