/* Removed all unnecessary comments and optimized CSS for better performance */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8fafc;
  overflow-x: hidden;
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-start;
}

.navbar-left img {
  height: 40px;
  width: auto;
}

.navbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.navbar-right img {
  height: 40px;
  width: auto;
}

.navbar-brand-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
}

.hamburger {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
  padding: 1rem;
  z-index: 10001;
}

.hamburger svg {
  stroke: #f97316;
  width: 28px;
  height: 28px;
}

.hamburger .icon-close {
  display: none;
}

.nav-toggle {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-toggle li {
  display: inline-block;
}

.nav-toggle a {
  padding: 0.5rem 1rem;
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s;
  white-space: nowrap;
}

.nav-toggle a:hover {
  color: #f97316;
  background: #f8fafc;
  border-radius: 0.5rem;
}

/* Increased specificity to override .nav-toggle a color */
.nav-toggle a.navbar-cta-btn {
  background: #f97316;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  transition: all 0.3s;
}

.nav-toggle a.navbar-cta-btn:hover {
  background: #ea580c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("imagens/background.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: 80px;
  contain: layout style;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-left {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  max-width: 300px;
  margin-bottom: 2rem;
  height: auto;
  aspect-ratio: 3 / 1;
}

.hero-left h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-left p {
  font-size: 1.125rem;
  opacity: 0.9;
}

.hero-form {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-form h2 {
  color: #1e293b;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-form input,
.hero-form textarea {
  padding: 0.875rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
}

.hero-form textarea {
  resize: vertical;
  min-height: 100px;
}

.hero-form input:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.hero-form button {
  padding: 1rem;
  background: #f97316;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-form button:hover {
  background: #ea580c;
}

.sobre {
  padding: 5rem 0;
  background: white;
}

.sobre h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 3rem;
  position: relative;
}

.sobre h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f97316;
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.sobre-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  aspect-ratio: 3 / 2;
}

.sobre-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-item i {
  color: #f97316;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  color: #1e293b;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.info-item p {
  color: #64748b;
  font-size: 1rem;
}

.video-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.video-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 3rem;
  position: relative;
}

.video-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f97316;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  background: #000000;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
}

.play-button {
  width: 80px;
  height: 80px;
  background: #000000;
  border: 3px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.play-button:hover {
  transform: scale(1.1);
  background: #ff0000;
  border-color: #ff0000;
}

.play-button svg {
  color: #ffffff;
  width: 40px;
  height: 40px;
}

#video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.localizacao {
  padding: 5rem 0;
  background: white;
}

.localizacao h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 3rem;
  position: relative;
}

.localizacao h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f97316;
}

.localizacao-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.localizacao-info h3 {
  font-size: 1.75rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.localizacao-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.localizacao-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #475569;
  font-size: 1.125rem;
}

.localizacao-info li i {
  color: #f97316;
  flex-shrink: 0;
}

.localizacao-map {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.load-map-btn {
  padding: 1.25rem 2.5rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.load-map-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  background: rgba(249, 115, 22, 0.9);
  border-color: rgba(249, 115, 22, 0.5);
}

.load-map-btn i {
  color: white;
  width: 24px;
  height: 24px;
}

#map-container {
  width: 100%;
  height: 100%;
}

#map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lazer {
  padding: 5rem 0;
  background: #f8fafc;
}

.lazer h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 3rem;
  position: relative;
}

.lazer h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f97316;
}

.lazer-slider {
  max-width: 1000px;
  margin: 0 auto;
}

.slider-main {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
  contain: layout style paint;
}

.slider-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.slider-arrow:hover {
  background: rgba(249, 115, 22, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
  left: 1rem;
}

.slider-arrow-right {
  right: 1rem;
}

.slider-arrow i {
  width: 28px;
  height: 28px;
}

.slider-thumbnails {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  padding: 0.5rem;
}

.slider-thumbnail {
  position: relative;
  height: 100px;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  border: 3px solid transparent;
}

.slider-thumbnail:hover {
  transform: scale(1.05);
  border-color: #f97316;
}

.slider-thumbnail.active {
  border-color: #f97316;
  box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.slider-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plantas {
  padding: 5rem 0;
  background: white;
}

.plantas h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 3rem;
  position: relative;
}

.plantas h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f97316;
}

.plantas-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.plantas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.planta-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
}

.planta-card:hover {
  transform: translateY(-10px);
}

.planta-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  aspect-ratio: 3 / 4;
}

.planta-expand-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.planta-expand-btn:hover {
  background: #f97316;
  transform: scale(1.1);
}

.planta-expand-btn:hover i {
  color: white;
}

.planta-expand-btn i {
  color: #f97316;
  width: 28px;
  height: 28px;
  transition: color 0.3s;
}

.planta-expand-btn.active i {
  transform: rotate(45deg);
}

.planta-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
  color: white;
}

.planta-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.planta-info p {
  font-size: 1.125rem;
  opacity: 0.9;
}

.planta-expanded {
  margin-top: 2rem;
  animation: slideDown 0.4s ease-out;
  will-change: transform, opacity;
}

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

.planta-expanded-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.planta-corte-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
  height: 350px;
}

.planta-corte-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.planta-tour-container {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #000;
  height: 350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.tour-btn {
  padding: 1.25rem 2.5rem;
  background: #f97316;
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.tour-btn:hover {
  background: #ea580c;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
}

.tour-btn i {
  width: 24px;
  height: 24px;
}

#tour-container-145,
#tour-container-178 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#tour-container-145 iframe,
#tour-container-178 iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.planta-slider-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.planta-slider-main {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
  height: 500px;
  width: 100%;
}

.planta-slider-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: white;
}

.planta-slider-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
}

.planta-slider-btn {
  padding: 1.25rem 2rem;
  background: #334155;
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.planta-slider-btn:hover {
  background: #475569;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.planta-slider-btn.active {
  background: #f97316;
  color: white;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.contato {
  padding: 5rem 0;
  background: #f8fafc;
}

.contato h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 3rem;
  position: relative;
}

.contato h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f97316;
}

.contact-form-main {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-main input,
.contact-form-main textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form-main textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form-main button {
  width: 100%;
  padding: 1rem;
  background: #f97316;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form-main button:hover {
  background: #ea580c;
}

.footer {
  background: #1e293b;
  color: white;
  padding: 2rem 0;
  margin-top: auto;
  width: 100%;
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.social-links {
  display: flex;
  gap: 1rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #94a3b8;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
  transition: all 0.3s ease;
  stroke: #94a3b8;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Removed !important from social link hover states */
.social-link.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-link.facebook:hover svg {
  stroke: white;
}

.social-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e4405f;
}

.social-link.instagram:hover svg {
  stroke: white;
}

.social-link.youtube:hover {
  background: #ff0000;
  border-color: #ff0000;
}

.social-link.youtube:hover svg {
  stroke: white;
}

/* Consolidated all mobile styles into single media query */
@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .navbar.open .nav-toggle {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    padding: 2rem;
    z-index: 999;
    overflow-y: auto;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .navbar.open .nav-toggle li {
    display: block;
    width: 100%;
  }

  .navbar.open .nav-toggle a {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
  }

  .navbar.open .hamburger .icon-open {
    display: none;
  }

  .navbar.open .hamburger .icon-close {
    display: block;
  }

  .navbar-container {
    grid-template-columns: auto 1fr;
  }

  .navbar-brand-text {
    font-size: 1rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-left h1 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 100px 0 50px;
  }

  .hero-logo {
    max-width: 200px;
  }

  .sobre-content,
  .localizacao-content,
  .plantas-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

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

  .slider-main {
    height: 400px;
  }

  .slider-thumbnails {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .slider-thumbnail {
    height: 80px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-arrow i {
    width: 20px;
    height: 20px;
  }

  .planta-expanded-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .planta-corte-container,
  .planta-tour-container {
    height: 250px;
  }

  .planta-slider-main {
    height: 300px;
  }

  .planta-slider-controls {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .planta-slider-btn {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .planta-expand-btn {
    width: 40px;
    height: 40px;
  }

  .planta-expand-btn i {
    width: 20px;
    height: 20px;
  }

  .load-map-btn {
    border: 3px solid white;
  }
}

@media (max-width: 991px) {
  .footer {
    width: 100%;
    padding: 2rem 0;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }

  .footer-content p {
    order: 1;
    margin: 0;
  }

  .social-links {
    position: static;
    transform: none;
    order: 2;
    justify-content: center;
  }
}

/* Added spinner animation for form submission loading state */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
