/*
Theme Name: wticket
Theme URI: https://wticket.com.br
Author: wticket
Author URI: https://wticket.com.br
Description: Tema para automação de atendimento via WhatsApp com IA
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wticket
*/

/* ========================================
   Reset & Base
======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* WhatsApp-inspired green palette */
  --background: #ffffff;
  --foreground: #1a2b1f;
  --card: #ffffff;
  --card-foreground: #1a2b1f;
  --primary: #2da867;
  --primary-foreground: #ffffff;
  --secondary: #e8f5ec;
  --secondary-foreground: #1e6b44;
  --muted: #f4f5f4;
  --muted-foreground: #6b7c70;
  --accent: #1e8a52;
  --accent-foreground: #ffffff;
  --border: #d9e5dd;
  --radius: 0.75rem;
  
  /* Gradients & Shadows */
  --gradient-hero: linear-gradient(135deg, #2da867 0%, #1e8a52 100%);
  --gradient-card: linear-gradient(180deg, #f0f9f3 0%, #ffffff 100%);
  --shadow-soft: 0 4px 20px -4px rgba(45, 168, 103, 0.15);
  --shadow-card: 0 8px 30px -8px rgba(26, 43, 31, 0.1);
  --shadow-button: 0 4px 14px -3px rgba(45, 168, 103, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

.text-gradient {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   Layout
======================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

/* ========================================
   Buttons
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -3px rgba(45, 168, 103, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  background: var(--secondary);
  border-color: var(--primary);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-white {
  background: var(--primary-foreground);
  color: var(--primary);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-white-outline {
  background: transparent;
  color: var(--primary-foreground);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Header
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 2.5rem;
  width: 2.5rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav a {
  color: var(--muted-foreground);
  font-weight: 500;
}

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

.header-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .header-actions {
    display: flex;
  }
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

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

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

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

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu nav a {
  color: var(--muted-foreground);
  font-weight: 500;
  padding: 0.5rem 0;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* ========================================
   Hero Section
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.05;
}

.hero-circle-1 {
  position: absolute;
  top: 5rem;
  right: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(45, 168, 103, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse-soft 3s ease-in-out infinite;
}

.hero-circle-2 {
  position: absolute;
  bottom: 5rem;
  left: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(45, 168, 103, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  animation: fade-in 0.6s ease-out forwards;
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary-foreground);
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fade-in 0.6s ease-out 0.1s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  animation: fade-in 0.6s ease-out 0.2s forwards;
  opacity: 0;
}

@media (min-width: 1024px) {
  .hero-description {
    margin-left: 0;
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fade-in 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  justify-content: center;
  animation: fade-in 0.6s ease-out 0.4s forwards;
  opacity: 0;
}

@media (min-width: 1024px) {
  .hero-trust {
    justify-content: flex-start;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.trust-item span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Hero Illustration */
.hero-illustration {
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-illustration {
    display: flex;
  }
}

.phone-mockup {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.phone-card {
  background: var(--card);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  padding: 1rem;
  border: 1px solid var(--border);
  width: 20rem;
}

.phone-header {
  background: var(--primary);
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-header-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-foreground);
  border-radius: 50%;
  padding: 0.25rem;
}

.phone-header-avatar img {
  width: 100%;
  height: 100%;
}

.phone-header-info h4 {
  color: var(--primary-foreground);
  font-weight: 600;
  font-size: 1rem;
}

.phone-header-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-bubble {
  padding: 0.75rem;
  border-radius: 1rem;
  max-width: 80%;
  font-size: 0.875rem;
  color: var(--foreground);
}

.chat-bubble.bot {
  background: var(--secondary);
  border-top-left-radius: 0;
}

.chat-bubble.user {
  background: rgba(45, 168, 103, 0.1);
  border-top-right-radius: 0;
  margin-left: auto;
}

.chat-bubble .ticket-number {
  font-weight: 700;
  color: var(--primary);
}

.ticket-badge {
  margin-top: 1rem;
  background: rgba(232, 245, 236, 0.5);
  border-radius: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ticket-badge-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.ticket-badge-number {
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

.floating-icon {
  position: absolute;
  background: var(--card);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  padding: 0.75rem;
  border: 1px solid var(--border);
}

.floating-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.floating-icon.top-right {
  top: -1rem;
  right: -1rem;
  animation: pulse-soft 3s ease-in-out infinite;
}

.floating-icon.bottom-left {
  bottom: -1rem;
  left: -1rem;
}

/* ========================================
   Features Section
======================================== */
.features {
  padding: 5rem 0 8rem;
  background: rgba(232, 245, 236, 0.3);
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

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

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

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.features-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.feature-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(45, 168, 103, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(45, 168, 103, 0.1);
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--primary-foreground);
}

.feature-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ========================================
   How It Works Section
======================================== */
.how-it-works {
  padding: 5rem 0 8rem;
}

.steps-grid {
  display: grid;
  gap: 2rem;
  position: relative;
}

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

.steps-line {
  display: none;
  position: absolute;
  top: 6rem;
  left: 25%;
  right: 25%;
  height: 2px;
  background: linear-gradient(to right, rgba(45, 168, 103, 0.2), var(--primary), rgba(45, 168, 103, 0.2));
}

@media (min-width: 768px) {
  .steps-line {
    display: block;
  }
}

.step {
  text-align: center;
  position: relative;
}

.step-icon-wrapper {
  display: inline-block;
  position: relative;
  margin-bottom: 2rem;
}

.step-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--background);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease;
}

.step:hover .step-icon {
  box-shadow: var(--shadow-soft);
}

.step-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
}

.step-number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--shadow-button);
}

.step h3 {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 1rem;
}

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

.step p {
  color: var(--muted-foreground);
  line-height: 1.7;
  max-width: 24rem;
  margin: 0 auto;
}

/* ========================================
   Pricing Section
======================================== */
.pricing {
  padding: 5rem 0 8rem;
  background: rgba(232, 245, 236, 0.3);
}

.pricing-card {
  max-width: 32rem;
  margin: 0 auto;
  background: var(--card);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-bottom-left-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pricing-badge svg {
  width: 1rem;
  height: 1rem;
}

.pricing-badge span {
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-content {
  padding: 2rem 2.5rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
}

.pricing-header p {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.price-value {
  font-size: 4rem;
  font-weight: 800;
  color: var(--foreground);
}

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

.pricing-header .installments {
  color: var(--muted-foreground);
  margin-top: 0.5rem;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.features-list .check-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(45, 168, 103, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
}

.features-list .check-icon svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--primary);
}

.features-list span {
  color: var(--foreground);
}

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

.pricing-cta .btn {
  width: 100%;
}

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

/* ========================================
   FAQ Section
======================================== */
.faq {
  padding: 5rem 0 8rem;
}

.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card);
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 0 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  color: var(--foreground);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ========================================
   CTA Section
======================================== */
.cta {
  padding: 5rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.cta-circle-1 {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 16rem;
  height: 16rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-circle-2 {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta h2 {
  font-size: 1.875rem;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta h2 {
    font-size: 3rem;
  }
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .cta-description {
    font-size: 1.25rem;
  }
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-top: 2rem;
}

/* ========================================
   Footer
======================================== */
.footer {
  background: var(--foreground);
  padding: 4rem 0;
}

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

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

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo img {
  background: var(--primary-foreground);
  border-radius: 0.5rem;
  padding: 0.25rem;
}

.footer-brand .logo-text {
  color: var(--primary-foreground);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 24rem;
  margin-bottom: 1.5rem;
}

.footer h3 {
  color: var(--primary-foreground);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

/* ========================================
   Animations
======================================== */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse-soft {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* ========================================
   Utilities
======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
