main {
  width: 100%;
}

:root {
  --verde-principal: #6B8E23;
  --verde-escuro: #4a6318;
  --branco-transparente: rgba(255, 255, 255, 0.9);
}

@keyframes slideInUpMac {
  from { transform: translate(-50%, 120%); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}

@keyframes slideOutDownMac {
  from { transform: translate(-50%, 0); opacity: 1; }
  to { transform: translate(-50%, 100%) scale(0.9); opacity: 0; }
}

@keyframes modalOpenMac {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes modalCollapseMac {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.5); opacity: 0; }
}

@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeOutOverlay { from { opacity: 1; } to { opacity: 0; } }

#fake-background {
  padding: 12px;
  position: fixed;
  display: flex;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.whatssapp-contact-button {
  display: flex;
  position: fixed;
  bottom: 20px;  
  right: 20px;    
  z-index: 1000; 
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatssapp-contact-button:hover {
  transform: scale(1.1);
}

.whatssapp-contact-button > img {
  width: 80px;
}

.cookies-notification.show {
  display: block;
  animation: slideInUpMac 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.cookies-notification.hide {
  animation: slideOutDownMac 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.cookie-modal-overlay.show {
  display: flex;
  animation: fadeInOverlay 0.2s ease-out forwards;
}

.cookie-modal-overlay.show .cookie-modal {
  animation: modalOpenMac 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.cookie-modal-overlay.hide {
  animation: fadeOutOverlay 0.2s ease-in forwards;
}

.cookie-modal-overlay.hide .cookie-modal {
  animation: modalCollapseMac 0.2s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.cookies-notification {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  background: var(--branco-transparente);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

.cookies-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

#cookies-logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}

.cookies-icon-wrapper {
  color: var(--verde-principal);
  font-size: 1.5rem;
}

#cookies-logo-text {
  font-size: 1.1rem;
  margin: 0;
  color: #333;
  font-weight: 700;
  line-height: 1;
}

.cookies-logo-slogan {
  font-size: 0.7rem;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
  color: #666;
}

.cookies-text p {
  font-size: 0.9rem;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

.cookies-text a {
  color: var(--verde-principal);
  text-decoration: underline;
  font-weight: 600;
}

.cookies-buttons {
  display: flex;
  gap: 10px;
  min-width: 250px;
}

.btn-cookies-opt, .btn-cookies-accept {
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  border: none;
}

.btn-cookies-opt {
  background: transparent;
  border: 1px solid var(--verde-principal);
  color: var(--verde-principal);
}

.btn-cookies-opt:hover {
  background: rgba(107, 142, 35, 0.1);
}

.btn-cookies-accept {
  background: var(--verde-principal);
  color: white;
}

.btn-cookies-accept:hover {
  background: var(--verde-escuro);
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  .cookies-content {
    flex-direction: column;
    text-align: center;
  }
  
  #cookies-logo-container {
    justify-content: center;
  }
  
  .cookies-buttons {
    width: 100%;
    flex-direction: column;
  }
}

/* Cookies Notification */

.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.cookie-modal {
  background: white;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.cookie-modal-header h2 { font-size: 1.2rem; color: #333; flex-grow: 1; }
.cookie-modal-header i { color: var(--verde-principal); font-size: 1.5rem; }

#close-cookie-modal {
  background: none; border: none; font-size: 1.8rem; cursor: pointer; color: #999;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f9f9f9;
}

.cookie-option-info h3 { font-size: 1rem; margin: 0; color: #444; }
.cookie-option-info p { font-size: 0.8rem; margin: 5px 0 0; color: #777; max-width: 300px; }

.switch { position: relative; display: inline-block; width: 44px; height: 22px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc; transition: .4s; border-radius: 34px;
}
.slider:before {
  position: absolute; content: ""; height: 16px; width: 16px; left: 3px; bottom: 3px;
  background-color: white; transition: .4s; border-radius: 50%;
}
input:checked + .slider { background-color: var(--verde-principal); }
input:focus + .slider { box-shadow: 0 0 1px var(--verde-principal); }
input:checked + .slider:before { transform: translateX(22px); }
input:disabled + .slider { background-color: #e0e0e0; cursor: not-allowed; }

.cookie-modal-footer {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.btn-cookie-save, .btn-cookie-all {
  flex: 1;
  padding: 12px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.btn-cookie-save { background: #f0f0f0; color: #555; }
.btn-cookie-save:hover { background: #e5e5e5; }

.btn-cookie-all { background: var(--verde-principal); color: white; }
.btn-cookie-all:hover { background: var(--verde-escuro); }

div#blur {
  z-index: 0;
  position: absolute;
  background-image: linear-gradient(180deg, #11270bd2, #588b2c73);
  backdrop-filter: blur(2px) brightness(0.8);
  backdrop-filter: bri;
  width: 100%;
  height: 100%;
  margin-top: -20%;
}

@keyframes jump {
  0% { transform: translateY(0); }
  30% { transform: translateY(-15px); }
  50% { transform: translateY(0); }
  70% { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}

span.jumping-icon {
  display: none;
  position: absolute;
  background-color: transparent;
  outline: 2px solid lightgray;
  width: 20px;
  height: 40px;
  margin-top: 100%;
  border-radius: 48px;
  justify-content: center;
  animation: jump 2s infinite;
}

span.jumping-icon span.dot {
  margin-top: 8px;
  z-index: 2;
  background-color: lightgray;
  padding: 2px;
  height: 12px;
  border-radius: 48px;
}

@keyframes red-blink {
  0% {
    color: var(--logoColor);
  }

  50% {
    color: red;
    font-weight: 900;
  } 

  100% {
    color: var(--logoColor);
  }
}

.red-blink {
  animation: red-blink 0.6s infinite;
}


main > section#hero-section {
  padding-top: 20%;
  display: flex;
  flex-direction: column;
  background-image: url('../images/background1.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100dvh;
  align-items: center;
  justify-content: center;
  position: relative;
}

main > section#hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

main > section#hero-section > div.pop-oup {
  margin-bottom: 32px;
  gap: 12px;
  display: flex;
  padding: 24px 24px;
  align-items: center;
  border-radius: 48px;
  border: 1px solid lightgray;
  background-color: rgba(211, 211, 211, 0.082);
  backdrop-filter: blur(4px) brightness(1.2);
}

main > section#hero-section > div.pop-oup i {
  color: #7bb846;
  font-size: 1em;
}

main > section#hero-section > div.pop-oup h1 {
  color: white;
  font-size: 0.7em;
}

main > section#hero-section > h1.hero-title {
  z-index: 1;
  color: white;
  font-size: 2.8em;
  line-height: 60px;
  text-align: center;
}

main > section#hero-section > h1.hero-title span {
  color: var(--semiLight);
}

main > section#hero-section > p.description {
  color: rgba(255, 255, 255, 0.904);
  text-align: center;
  margin-block: 24px;
  font-size: 1.1em;
  z-index: 1;
  font-weight: 500;
  width: 90%;
}

main > section#hero-section > div.buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  width: 100%;
  padding: 16px;
  z-index: 1;
}

main > section#hero-section > div.buttons > button {
  width: 90%;
  margin: auto;
  font-family: var(--logoFont);
  font-size: 1.2em;
  padding: 16px 24px;
  border-radius: 48px;
}

main > section#hero-section > div.buttons > button.see-products {
  color: white;
  background-color: var(--semiLight);
  border: none;
  transition: 0.3s ease;
}

main > section#hero-section > div.buttons > button.see-products:hover {
  transform: scale(1.1);
  background-color: #588b2c81;
  outline: 1px solid var(--semiLight);
}

main > section#hero-section > div.buttons > button.about-us {
  color: white;
  border: 1px solid lightgray;
  background-color: rgba(211, 211, 211, 0.144);
  backdrop-filter: blur(4px) brightness(1.2);
  transition: 0.3s ease;
}

main > section#hero-section > div.buttons > button.about-us:hover {
  color: black;
  background-color: white;
  border: 1px solid white;
  transform: scale(1.1);
}

main > section#choise {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
}

main > section#choise > div.c {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 12px;
  transition: 0.3s ease;
  padding: 32px 24px;
  border-radius: 12px;
}

main > section#choise > div.c span {
  display: flex;
  text-align: center;
  align-items: center;
  background-color: var(--semiLight);
  padding: 14px;
  border-radius: 8px;
  transition: 0.3s ease;
  box-shadow: 1px 2px 6px 1px rgba(211, 211, 211, 0.658);
}

div.c:hover span { transform: scale(1.1); }
div.c:hover { background-color: rgba(184, 135, 11, 0.055); }

main > section#choise > div.c > span > i {
  font-weight: 300;
  font-size: 1.6em; 
  color: white;
}

main > section#choise > div.c > h2 {
  font-family: var(--textFont);
  font-size: 1.4em;
  font-weight: 700;
}

.product {
  max-width: 330px;
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  transition: all 0.5s ease;
  cursor: pointer;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.caps {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin-block: 12px;
}

.caps span {
  background-color: var(--logoColor);
  border-radius: 24px;
  color: white;
  padding-inline: 6px;
}

.product-badge-featured {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: #11270B;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.product-badge-discount {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: #ef4444;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.product.featured { border: 2px solid #598B2C; }

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #FAF8F3, #F5F5DC);
}

.product-image img {
  background-color: white;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.7s ease;
}

.product:hover .product-image img { transform: scale(1.1); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product:hover .product-overlay { opacity: 1; }

.product-add-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(50px);
  background: #598B2C;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.product:hover .product-add-btn { transform: translateX(-50%) translateY(0); }
.product-add-btn:hover { background: #11270B; }

.body { padding: 24px; }

.product-name {
  font-size: 18px;
  font-weight: 700;
  color: #11270B;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.product-card:hover .product-name { color: #598B2C; }

.product-description {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 16px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer & Price */
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { display: flex; flex-direction: column; }
.product-old-price { font-size: 14px; color: #9ca3af; text-decoration: line-through; }
.product-current-price { font-size: 24px; font-weight: 700; color: #11270B; }
.product-badge-type {
  background: rgba(89, 139, 44, 0.1);
  color: #598B2C;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .product-content { padding: 16px; }
}

/* ================= PRODUCT SECTIONS (Highlight & Main) ================= */
main > section#highlighted-products {
  padding: 32px;
  background: #fff;
}

main > section#highlighted-products > div.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

main > section#highlighted-products > div.header > div.emph {
  font-family: var(--logoFont);
  width: 150px;
  gap: 8px;
  color: var(--semiLight);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eef2e8;
  border-radius: 48px;
  padding: 6px 24px;
  margin-bottom: 12px;
}

main > section#highlighted-products > div.header > div.emph h4 {
  font-size: 1em;
  font-weight: 500;
}

main > section#highlighted-products > div.header h2 {
  font-family: var(--textFont);
  font-size: 2em;
  font-weight: 700;
  color: var(--logoColor);
  margin-bottom: 8px;
}

main > section#highlighted-products div.header > p {
  font-family: var(--textFont);
  font-size: 1rem;
  color: rgb(46, 46, 46)
}

main > section#highlighted-products > div.products {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 24px;
}

section#highlighted-products > div.products > div.product > div.body div.variations > span {
  background-color: var(--semiLight);
  color: white;
  padding: 6px 12px;
  border-radius: 24px;
}

section#main-products-container {
  padding: 64px 20px;
  background: #fafafa;
}

section#main-products-container div.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

main > section#main-products-container > div.header > div.sell-emph {
  font-family: var(--logoFont);
  width: 210px;
  gap: 10px;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #cccccc7c;
  border-radius: 48px;
  padding: 6px 24px;
  margin-bottom: 12px;
}

main > section#main-products-container > div.header > div.sell-emph h4 {
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 500;
}

section#main-products-container div.header h2 {
  font-family: var(--logoFont);
  font-size: 2rem;
  font-weight: 700;
  color: var(--logoColor);
}

main > section#main-products-container div.header > p {
  font-family: var(--textFont);
  font-size: 1rem;
  color: #444444;
}

div.main-products {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 24px;
}

div.all-products-c {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 30dvh;
}

div.all-products-c > a {
  text-decoration: none;
  text-align: center;
  font-size: 1.1em;
  font-weight: 600;
  font-family: var(--textFont);
  background-color: var(--logoColor);
  color: white;
  border-radius: 48px;
  border: none;
  padding: 18px 12px;
  width: 280px;
  margin: auto;
  transition: 0.3s ease;
}

div.all-products-c > a:hover {
  transform: scale(1.05);
  box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.356);
  background-color: var(--semiLight);
}
z
section#choise {
  padding: 64px 20px;
  background: #fff;
}

section#choise > h2.title {
  font-family: var(--logoFont);
  color: var(--logoColor);
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 48px;
}

section#choise > h2.title .key-word { color: var(--semiLight); }

section#choise > div.qualities-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

section#choise > div.qualities-container > div.quality {
  background: #fafafa;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

section#choise > div.qualities-container > div.quality:hover { transform: translateY(-4px); }

section#choise > div.qualities-container > div.quality > h2.title {
  font-size: 1.25rem;
  color: var(--semiLight);
  margin-bottom: 12px;
}

section#choise > div.qualities-container > div.quality > p.quality-text {
  font-family: var(--textFont);
  color: var(--logoColor);
  font-weight: 400;
  line-height: 1.6;
}

form#ask {
  color: white;
  gap: 12px;
  background-image: linear-gradient(130deg, #11270B, #598A2C);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 36px;
}

form#ask > h1 {
  font-weight: 700;
  text-align: center;
  font-size: 1.8em;
}

form#ask > p {
  text-align: center;
  font-size: 1em;
  margin-bottom: 24px;
}

form#ask > div.ic {
  gap: 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

form#ask > div.ic > input {
  width: 100%;
  background-color: white;
  font-family: var(--logoFont);
  border-radius: 48px;
  padding: 18px;
  border: none;
}

form#ask > div.ic > input:focus {
  outline: 4px solid rgba(255, 255, 255, 0.445);
  transition: none;
}

@keyframes greenBlinkPro {
  0%, 50%, 100% {
    background-color: white; 
    border-color: transparent;
  }
  25%, 75% {
    background-color: var(--semiLight); 
    border-color: var(--logoColor);
    transform: scale(1.02);
  }
}

.alredOn {
  animation: greenBlinkPro 0.8s linear;
}

form#ask > div.ic > button {
  font-size: 1em;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: white;
  font-family: var(--logoFont);
  border-radius: 48px;
  padding: 18px;
  border: none;
}

form#ask > div.ic > button:hover { transform: scale(1.1); }

div.accepted-flags {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

div.accepted-flags img { width: 30px; height: 30px; }

@media screen and (max-width: 350px) {
  main > section#hero-section > div.pop-oup { padding: 12px 6px; margin-top: 16px; }
  main > section#hero-section > div.buttons > button { font-size: 1em; padding: 12px 8px; }
  main > section#hero-section > h1.hero-title { font-size: 2em; line-height: 48px; }
  main > section#hero-section > h1.hero-title span { color: var(--semiLight); }
  main > section#hero-section > p.description { margin-block: 16px; font-size: 0.8em; width: 90%; }
  .caps { font-size: 0.7em; gap: 4px; margin-block: 12px; }
  .caps span { padding-inline: 6px; }
}


@media screen and (min-width: 612px) {
  div#blur { height: 120%; margin-top: -20%; }
  
  span.jumping-icon {
    display: flex;
    margin-top: 100%;
  }

  main > section#hero-section { padding-top: 0%; width: 100%; height: 100dvh; }
  
  main > section#hero-section > div.pop-oup {
    margin-top: -64px;
    margin-bottom: 64px;
    padding: 16px 16px;
  }
  
  main > section#hero-section > div.pop-oup h1 { font-size: 1em; }
  main > section#hero-section > h1.hero-title { font-size: 4em; }
  main > section#hero-section > p.description { font-size: 1.2em; width: 70%; }
  
  main > section#hero-section > div.buttons { flex-direction: row; gap: 24px; }
  main > section#hero-section > div.buttons > button { width: 30%; margin: 0; }


  main > section#highlighted-products > div.products { gap: 32px; }
  .caps { justify-content: start; }
  .caps span { padding-inline: 8px; }

  div.main-products {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }

  form#ask {
    padding: 36px 0px;
    background-image: linear-gradient(130deg, #2e4e12, #2e4e12);
  }
  
  form#ask > h1 { width: 80%; font-family: var(--textFont); font-weight: 800; font-size: 2.4em; }
  form#ask > p { width: 60%; }
  
  form#ask > div.ic {
    width: 60%;
    flex-direction: row;
  }
  
  form#ask > div.ic > button { width: 40%; }
}

@media screen and (min-width: 1024px) {
  div#blur { height: 100%; margin-top: 0%; }
  span.jumping-icon { margin-top: 50%; }

  main > section#hero-section { background-size: top bottom; }
  main > section#hero-section > div.pop-oup { margin-top: 0%; }
  
  @media screen and (max-height: 700px) {
    main > section#hero-section > div.pop-oup { margin-bottom: 24px; margin-top: 6%; }
  }

  main > section#hero-section > h1.hero-title { line-height: 80px; }
  main > section#hero-section > p.description { font-size: 1.3em; width: 60%; }

  div.main-products { align-items: normal; }

  form#ask { padding: 36px 0px; }
}

@media screen and (min-width: 1440px) {
  span.jumping-icon { margin-top: 46%; }

  main > section#hero-section > div.pop-oup { padding: 24px 24px; }
  main > section#hero-section > div.pop-oup > h1 { font-size: 1.3em; }
  main > section#hero-section > h1.hero-title { font-size: 5em; }
  
  main > section#hero-section > div.buttons { gap: 32px; }

  form#ask { padding: 64px 0px; }
  form#ask > h1 { font-size: 2.8em; }
  form#ask > p { font-size: 1.1em; }
  form#ask > div.ic { width: 50%; }
}