@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}
.section-header .section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #065f46 0%, #10b981 50%, #34d399 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
  /* Floating Elements */
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(16, 185, 129, 0.15) 1px, transparent 0);
  background-size: 20px 20px;
}
.hero .hero-content {
  text-align: center;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.hero .hero-content .recycle-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  animation: rotate 8s linear infinite;
  display: inline-block;
}
.hero .hero-content .recycle-icon img {
  width: 100px;
  height: 100px;
}
.hero .hero-content .h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero .hero-content .highlight {
  color: #6ee7b7;
}
.hero .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero .hero-content .search-box {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  margin: 0 auto;
  max-width: 500px;
}
.hero .hero-content .search-box .search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero .hero-content .search-box .search-form .search-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1rem;
  min-width: 250px;
}
.hero .hero-content .search-box .search-form .search-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.hero .hero-content .search-box .search-form .search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.hero .hero-content .search-box .search-form .search-input:focus {
  outline: none;
}
.hero .hero-content .search-box .search-form .btn-primary {
  background: #6ee7b7;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  color: #065f46;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero .hero-content .search-box .search-form .btn-primary:hover {
  background: #34d399;
  transform: scale(1.05);
}
.hero .floating-element {
  position: absolute;
  opacity: 0.3;
  font-size: 3rem;
}
.hero .floating-element img {
  width: 80px;
  height: 80px;
}
.hero .floating-1 {
  top: 5rem;
  left: 2rem;
}
.hero .floating-2 {
  bottom: 5rem;
  right: 2rem;
  font-size: 2.5rem;
}
.hero .floating-3 {
  top: 50%;
  right: 5rem;
  opacity: 0.2;
  font-size: 3rem;
}

.stats {
  background: white;
  padding: 5rem 0;
}
.stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stats .stats-grid .stat-item {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideIn 0.8s ease-out forwards;
}
.stats .stats-grid .stat-item:nth-child(2) {
  animation-delay: 0.2s;
}
.stats .stats-grid .stat-item:nth-child(3) {
  animation-delay: 0.4s;
}
.stats .stats-grid .stat-item:nth-child(4) {
  animation-delay: 0.6s;
}
.stats .stats-grid .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 0.5rem;
}
.stats .stats-grid .stat-item .stat-text {
  color: #6b7280;
}

.recycle-section {
  padding: 5rem 0;
  background-image: 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='%2310b981' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.recycle-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.recycle-section .cards-grid .card {
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.recycle-section .cards-grid .card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
}
.recycle-section .cards-grid .card .card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6ee7b7, #059669);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}
.recycle-section .cards-grid .card .card-icon img {
  width: 40px;
  height: 40px;
}
.recycle-section .cards-grid .card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.recycle-section .cards-grid .card .card-text {
  color: #6b7280;
  margin-bottom: 1rem;
}
.recycle-section .cards-grid .card .card-badge {
  font-size: 0.875rem;
  color: #059669;
  font-weight: 500;
}

.steps-section {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  padding: 5rem 0;
}
.steps-section .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.steps-section .steps-grid .step {
  text-align: center;
  position: relative;
}
.steps-section .steps-grid .step .step-number {
  background: linear-gradient(135deg, #10b981, #059669);
  width: 64px;
  height: 64px;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.steps-section .steps-grid .step .step-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.steps-section .steps-grid .step .step-text {
  color: #6b7280;
  line-height: 1.6;
}

.finder-section {
  background: white;
  padding: 5rem 0;
}
.finder-section .finder-box {
  background: linear-gradient(135deg, #059669, #10b981);
  border-radius: 1.5rem;
  margin: 0 auto;
  padding: 3rem;
  color: white;
  text-align: center;
  max-width: 800px;
}
.finder-section .finder-box .finder-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.finder-section .finder-box .finder-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.finder-section .finder-box .finder-form {
  display: flex;
  gap: 1rem;
  max-width: 400px;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}
.finder-section .finder-box .finder-form .finder-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  border: none;
  font-size: 1rem;
}
.finder-section .finder-box .finder-form .finder-input:focus {
  outline: none;
}
.finder-section .finder-box .finder-form .btn-secondary {
  background: #f3f4f6;
  font-weight: bold;
  color: #059669;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.finder-section .finder-box .finder-form .btn-secondary:hover {
  background: #f3f4f6;
  transform: scale(1.05);
}
.finder-section .finder-box .results {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
  display: none;
}
.finder-section .finder-box .results .results-title {
  font-weight: 600;
  color: #6ee7b7;
  margin-bottom: 1rem;
}
.finder-section .finder-box .results .results-title h3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.finder-section .finder-box .results .results-title img {
  width: 20px;
  height: 20px;
}
.finder-section .finder-box .results .result-item {
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
}
.finder-section .finder-box .results .result-item .result-dot {
  background: #6ee7b7;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.finder-section .finder-box .results .result-item .result-name {
  font-weight: 500;
}
.finder-section .finder-box .results .result-item .result-info {
  font-size: 0.875rem;
  opacity: 0.8;
}
.finder-section .finder-box .show {
  display: block;
  animation: fadeIn 0.6s ease-in;
}

.registration-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  position: relative;
}
.registration-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2310b981' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
}
.registration-section .registration-box {
  background: white;
  border-radius: 2rem;
  border: 1px solid rgba(16, 185, 129, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 4rem 3rem;
  margin: 0 auto;
  text-align: center;
  max-width: 600px;
  position: relative;
  z-index: 2;
}
.registration-section .registration-box .registration-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}
.registration-section .registration-box .registration-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 3rem;
}
.registration-section .registration-box .btn-register {
  background: linear-gradient(135deg, #10b981, #059669);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  padding: 1.25rem 3rem;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.registration-section .registration-box .btn-register:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}
.registration-section .registration-box .btn-register:active {
  transform: translateY(-2px) scale(1.02);
}

.modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 20px;
}
.modal .modal-content {
  background: white;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  padding: 3rem;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease-out;
}
.modal .modal-content .close-btn {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  border-radius: 50%;
  color: #6b7280;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal .modal-content .close-btn:hover {
  background: #f3f4f6;
  color: #1f2937;
}
.modal .modal-content .modal-header {
  text-align: center;
  margin-bottom: 2rem;
}
.modal .modal-content .modal-header .modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.modal .modal-content .modal-header .modal-subtitle {
  color: #6b7280;
  font-size: 1rem;
}
.modal .modal-content #registrationForm .form-group {
  margin-bottom: 1.5rem;
}
.modal .modal-content #registrationForm .form-group .form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.modal .modal-content #registrationForm .form-group .form-input {
  background: #f9fafb;
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #d1d5db;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.modal .modal-content #registrationForm .form-group .form-input:focus {
  background: white;
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.modal .modal-content #registrationForm .form-group .form-select {
  background: #f9fafb;
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #d1d5db;
  border-radius: 0.75rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal .modal-content #registrationForm .form-group .form-select:focus {
  background: white;
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.modal .modal-content #registrationForm .form-group .invalid {
  border-color: #ef4444;
}
.modal .modal-content #registrationForm .btn-submit {
  background: linear-gradient(135deg, #10b981, #059669);
  padding: 1rem 2rem;
  margin-top: 1rem;
  width: 100%;
  font-weight: 600;
  font-size: 1.125rem;
  color: white;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal .modal-content #registrationForm .btn-submit:hover {
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}
.modal .modal-content #registrationForm .btn-submit:disabled {
  background: linear-gradient(135deg, #9ca3af, #6b7280);
  cursor: not-allowed;
  color: #d1d5db;
  opacity: 0.6;
}

.cta-section {
  background: linear-gradient(135deg, #1f2937, #065f46);
  padding: 5rem 0;
  text-align: center;
  color: white;
}
.cta-section .cta-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.cta-section .cta-text {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  max-width: 600px;
}
.cta-section .cta-buttons .btn-cta {
  background: transparent;
  padding: 1rem 2.5rem;
  border: 2px solid #6ee7b7;
  border-radius: 0.75rem;
  color: #6ee7b7;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-section .cta-buttons .btn-cta:hover {
  background: #6ee7b7;
  color: white;
  transform: scale(1.05);
}
.cta-section .container-tips {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
.cta-section .container-tips .container-list-tips {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 45px;
  text-align: left;
}
.cta-section .container-tips .container-list-tips h3 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cta-section .container-tips .container-list-tips h3 span {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 5px;
}
.cta-section .container-tips .container-list-tips h3 span img {
  width: 20px;
  height: 20px;
}
.cta-section .container-tips .container-list-tips .list-tips {
  margin-top: 15px;
  line-height: 45px;
}

.footer {
  background: #1f2937;
  text-align: center;
  color: white;
  padding: 3rem 0;
}
.footer .footer-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.footer .footer-icon img {
  width: 100px;
  height: 100px;
}
.footer .footer-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer .footer-text {
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
}
.footer .footer-copy {
  margin: 100px 0 0 15px;
  color: #9ca3af;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}
.footer .footer-copy a {
  text-decoration: none;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero .search-form {
    flex-direction: column;
  }
  .hero .search-form .search-input {
    min-width: auto;
  }
  .hero .floating-element {
    display: none;
  }
  .recycle-section .section-title {
    font-size: 2rem;
  }
  .finder-section .finder-form {
    flex-direction: column;
  }
  .cta-section .cta-title {
    font-size: 2rem;
  }
  .cta-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}/*# sourceMappingURL=style.css.map */