/* ============================================
   RESTAURANTE E CHALÉS TOPO DA SERRA
   Stylesheet - Delivery Website
   ============================================ */

:root {
  --primary: #E8421A;
  --primary-dark: #C0340F;
  --primary-light: #FF6B3D;
  --secondary: #FF9A3C;
  --dark: #1A1A1A;
  --dark-2: #2D2D2D;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --white: #FFFFFF;
  --success: #22C55E;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

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

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
  background: var(--white);
  border-bottom: 1px solid #F0F0F0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.logo-text h1 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.logo-text span {
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

nav ul li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}

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

.btn-whatsapp {
  background: #25D366;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 13px !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s !important;
}

.btn-whatsapp:hover {
  background: #1daf56 !important;
  transform: translateY(-1px);
  color: var(--white) !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--dark);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, #1A0A02 0%, #3D1200 50%, #5C1E00 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8421A' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,66,26,0.2);
  border: 1px solid rgba(232,66,26,0.4);
  color: var(--secondary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h2 {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h2 span {
  color: var(--secondary);
}

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(232,66,26,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,66,26,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary);
  display: block;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-plate {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(232,66,26,0.15) 0%, transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 160px;
  animation: float 3s ease-in-out infinite;
}

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

.delivery-badge {
  position: absolute;
  bottom: 30px;
  left: -10px;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.delivery-badge .icon {
  width: 40px;
  height: 40px;
  background: #FFF0EC;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.delivery-badge .info p {
  font-size: 11px;
  color: var(--gray);
  margin: 0;
}

.delivery-badge .info strong {
  font-size: 13px;
  color: var(--dark);
}

.time-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  background: var(--primary);
  color: var(--white);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.time-badge .time {
  font-size: 22px;
  font-weight: 800;
  display: block;
}

.time-badge .label {
  font-size: 10px;
  opacity: 0.85;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: 80px 0;
  background: var(--gray-light);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-badge {
  display: inline-block;
  background: #FFF0EC;
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #FFF0EC, #FFE4D9);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.feature-card p {
  font-size: 14px;
  color: var(--gray);
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu {
  padding: 90px 0;
  background: var(--white);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid #E5E7EB;
  background: transparent;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-tab.active,
.menu-tab:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #F0F0F0;
  transition: transform 0.3s, box-shadow 0.3s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.menu-card-img {
  height: 180px;
  background: linear-gradient(135deg, #FFF0EC, #FFE4D9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  position: relative;
}

.menu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

.menu-card-body {
  padding: 20px;
}

.menu-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.menu-card-body p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.5;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.price span {
  font-size: 12px;
  color: var(--gray);
  font-weight: 400;
}

.btn-add {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.2s;
}

.btn-add:hover {
  background: var(--primary-dark);
  transform: scale(1.04);
}

/* ============================================
   HOW TO ORDER
   ============================================ */
.how-to-order {
  padding: 90px 0;
  background: linear-gradient(135deg, #1A0A02 0%, #3D1200 100%);
  position: relative;
  overflow: hidden;
}

.how-to-order::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,66,26,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.how-to-order .section-header h2 {
  color: var(--white);
}

.how-to-order .section-header p {
  color: rgba(255,255,255,0.65);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  border: 4px solid #3D1200;
  box-shadow: 0 0 0 4px rgba(232,66,26,0.3);
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */
.contact-cta {
  padding: 90px 0;
  background: var(--gray-light);
}

.cta-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '🍽️';
  position: absolute;
  font-size: 200px;
  opacity: 0.06;
  right: -30px;
  top: -40px;
}

.cta-card h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-card p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}

.contact-info {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-card .icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.contact-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 14px;
  color: var(--gray);
}

.contact-card a {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-icon {
  width: 50px;
  height: 50px;
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand .tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--secondary);
}

.footer-data {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
}

.footer-data strong {
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-data .data-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

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

.status-online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-hero {
  background: linear-gradient(135deg, #1A0A02 0%, #3D1200 100%);
  padding: 60px 0;
  text-align: center;
}

.policy-hero h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.policy-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
}

.policy-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 60px 20px;
}

.policy-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #F0F0F0;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.8;
}

.policy-content ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.policy-content ul li {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.7;
}

.policy-content strong {
  color: var(--dark);
}

.policy-info-box {
  background: #FFF8F6;
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.policy-info-box p {
  margin: 0;
  color: var(--dark);
  font-size: 14px;
}

/* ============================================
   ADDITIONAL UTILITIES
   ============================================ */
.hero-small {
  min-height: 40vh !important;
  display: flex;
  align-items: center;
  padding: 120px 0 60px !important;
}

.hero-small .hero-content {
  text-align: center;
  margin: 0 auto;
}

.hero-small h2 {
  font-size: 42px;
}

.hero-small p {
  margin-left: auto;
  margin-right: auto;
}

.delivery-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.delivery-table th {
  background: var(--primary);
  color: var(--white);
  padding: 18px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.delivery-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--gray-light);
  font-size: 15px;
  color: var(--dark-2);
}

.delivery-table tr:last-child td {
  border-bottom: none;
}

.delivery-table tr:hover td {
  background: #FFF8F6;
}

@media (max-width: 768px) {
  .delivery-table {
    overflow-x: auto;
  }
  
  .delivery-table table {
    min-width: 600px;
  }
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid #F0F0F0;
  padding: 20px;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav ul li a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  display: block;
  padding: 4px 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .steps-grid::before {
    display: none;
  }

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

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

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

  .mobile-nav.open {
    display: block;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h2 {
    font-size: 36px;
  }

  .hero-image {
    display: none;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

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

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

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .cta-card {
    padding: 40px 24px;
  }

  .cta-card h2 {
    font-size: 26px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .policy-hero h1 {
    font-size: 28px;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-0 { margin-bottom: 0 !important; }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: bounceIn 1s 2s both;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37,211,102,0.55);
}

@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}
