/* Alinhar botões à direita no header */
.button-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  flex: 1;
}

@import url("https://fonts.googleapis.com/css2?family=Rowdies:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Koulen&family=Lugrasimo&display=swap");

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

body {
  background-color: #e5e5e5;
  margin: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Rowdies", sans-serif;
}

header {
  display: flex;
  justify-content: space-between; /* esquerda: logo+título | direita: botões */
  align-items: center;
  padding: 10px 20px; /* padding lateral direto no header */
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .text-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #000000;
  font-size: 1.2rem;
  font-family: "Rowdies", sans-serif;
  font-weight: 700;
}

header div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.sign-in-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #53aa51;
  color: white;
  font-family: "Inter", sans-serif;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  cursor: pointer;
  line-height: 1;
  text-decoration: none; 
}

.continue-button a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  line-height: 1;
  text-decoration: none; 
}

.incognito-button,
.subscribe-button {
  font-family: "Inter", sans-serif;
  display: inline-flex;
  background-color: #ffffff;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2b2d3185;
  border: 1px solid #d1d5db;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
}

.logo {
  width: 3rem;
  height: 3rem;
  margin-right: 10px;
}
main {
  font-family: "Inter", sans-serif;
  font-weight: bold;
}

.sign-in-button:hover {
  background-color: #469246;
}
.incognito-button:hover,
.subscribe-button:hover {
  background-color: #f9fafb;
  border-color: #d1d1c7;
}
.sign-in-button:focus,
.incognito-button:focus,
.subscribe-button:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 480px) {
  header {
    flex-wrap: wrap;
    gap: 8px;
  }
  .button-container {
    width: 100%;
    justify-content: flex-start;
  }
}

.banner {
  position: relative;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.55) 55%,
      rgba(0, 0, 0, 0.85) 80%,
      rgba(0, 0, 0, 0.95) 100%
    ),
    url("../img/main-image.png") center/cover no-repeat;
  color: #fff;
  min-height: 320px;
  display: flex;
}

.banner-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 5rem;
  pointer-events: none;
}
.logo-banner {
  max-width: 15rem;
  height: auto;
  opacity: 0.9;
  animation: subtle-float 3.2s ease-in-out infinite alternate;
}

.banner-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  align-items: center;
}
.banner-content {
  max-width: 720px;
}
.banner-title {
  justify-content: center;
  display: flex;
  align-items: center;
  font-family: "Rowdies", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: 0.2px;
  margin: 0 0 8px;
}
.banner-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #e5e7eb;
  margin: 0 0 24px;
}
.banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}
.btn:hover { transform: translateY(-1px); }
.btn-signup {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.5rem;
  padding: 1.3rem 1rem;
  border-radius: 0;
  font-size: 1.5rem;
  background-color: #00000000;
  border-style: solid;
  border-width: 2px;
  border-color: #a28f54;
  color: #a28f54;
}
.btn-signup:hover {
  filter: brightness(0.95);
}

.btn-explore {
  background-color: #ffc341;
  color: #111827;
}
.btn-explore:hover {
  background-color: #a89e0c;
}

.btn-create {
  background-color: #6ac447;
  color: #fff;
}
.btn-create:hover {
  background-color: #449b47;
}

@media (max-width: 768px) {
  .banner {
    justify-content: center;
    background-position: center right;
  }
  .banner-title {
    font-size: 40px;
    font-size: clamp(28px, 6vw, 56px);
  .banner-subtitle {
    font-size: 18px;
  }
}
}

.layout-footer {
  position: relative;
    font-size: clamp(14px, 3.2vw, 24px);
  color: #ffffff;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.text-wrapper-13 {
  font-family: "Rowdies", sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: #d1d5db;
  opacity: 0.9;
  text-align: center;
}
.make-your-own-blog {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}
.newsletter-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.rectangle-footer {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
#email-input {
  width: 100%;
  height: 40px;
  background: #d9d9d9;
  border: none;
  border-radius: 6px;
  padding: 0 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #111827;
}
#email-input::placeholder {
  color: #6b7280;
}

.button-subscribe {
  width: 100%;
  height: 40px;
  background: #53aa51;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  cursor: pointer;
}
.button-subscribe:hover {
  background: #469246;
}

.social-links {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
}
.social-links a,
.social-links button {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 8px;
  color: #ffffff !important;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}
.social-links a:hover,
.social-links button:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .footer-content {
    padding: 28px 16px 36px;
  }
  .social-links {
    top: 16px;
    right: 16px;
    gap: 10px;
  }
}

.social-links svg {
  width: 18px;
  height: 18px;
  display: block;
}

.social-links svg [fill="none"] {
  fill: none !important;
}
.social-links svg [fill]:not([fill="none"]) {
  fill: currentColor !important;
}
.social-links svg [stroke] {
  stroke: currentColor !important;
}
.social-links svg path,
.social-links svg circle,
.social-links svg rect,
.social-links svg polygon,
.social-links svg line,
.social-links svg polyline {
  stroke-width: inherit;
}

.social-links img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) invert(1) contrast(1.1);
}

.layout-footer svg {
  width: 18px;
  height: 18px;
  color: #ffffff !important;
}
.layout-footer svg [fill="none"] {
  fill: none !important;
}
.layout-footer svg [fill]:not([fill="none"]) {
  fill: currentColor !important;
}
.layout-footer svg [stroke] {
  stroke: currentColor !important;
}
.layout-footer img[src$=".svg"] {
  filter: brightness(0) invert(1) contrast(1.1) !important;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}

#auth-modal:target {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;

}
#pro-modal:target {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal {
  width: 520px;
  max-width: 92%;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  padding: 20px;
  position: relative;
}
.close-modal {
  position: absolute;
  top: 8px;
  right: 10px;
  color: #111827;
  text-decoration: none;
  font-size: 20px;
}
.modal-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-logo {
  width: 28px;
  height: 28px;
}
.modal-brand {
  font-family: "Rowdies", sans-serif;
  font-weight: 700;
  color: #2b2d31;
}
.auth-title {
  font-family: "Koulen", fantasy;
  justify-content: center;
  font-weight: bold;
  flex-direction: row;
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: 1.6rem;
  margin: 0 2rem 0;
  color: #000000;
}
.modal-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #4e4e4e;
  margin-bottom: 10px;
}
.social-auth {
  display: flex;
  gap: 50px;
  margin: 12px 3rem 6px 12px;
  padding: 12px;
  list-style: none;
}
.social-auth li {
  list-style: none;
}
.social-auth a {
  width: 70px;
  height: 36px;
  display: flex;
  align-items: center;
  background: #53aa51;
  border-radius: 6px;
  text-decoration: none;
  justify-content: center;
  display: inline-flex;
  box-shadow: 0.4rem 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.social-auth img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) invert(1); 
}
.social-auth span {
  flex: 1;
  height: 36px;
  border: none;
  border-radius: 6px;
  padding: 12px 12px;
  color: #ffffff;
  font-weight: 700; 

}
.social-btn.fb,
.social-btn.google,
.social-btn.apple {
  background: #469246;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-input {
  height: 38px;
  background: #e5e7eb;
  border: none;
  border-radius: 4px;
  padding: 0 12px;
  font-family: "Inter", sans-serif;
}
.modal-submit {
  height: 38px;
  background: #53aa51;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-weight: 700;
}
.modal-terms,
.modal-note {
  font-size: 11px;
  color: #6b7280;
}
.auth {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.78);
  display: none;
}
#auth-modal:target {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.auth {
  z-index: 2000;
}
.auth-modal {
  width: 495px;
  max-width: 71%;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  padding: 20px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  color: #040405;
  text-decoration: none;
  border-radius: 10px;
  padding: 0.4rem 0.9rem;
  border-color: transparent;
  background-color: transparent;
  font-size: 20px;
}
.modal-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.auth-form label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #111827;
}
.auth-form {
  padding: 0.2rem 0.2rem 2rem 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #ffffff;
  border-radius: 4px;
}

.auth-form input {
  height: 59px;
  background: #d9d9d9;
  color: #46464638;
  border: none;
  border-radius: 4px;
  padding: 0 12px;
  font-size: 0.95rem;
  color: #111827;
}
.continue-button {
  height: 36px;
  background: #53aa51;
  color: #fff;
  border: none;
  font-family: "Inter", sans-serif;
  box-shadow: 0.4rem 0.8rem 1rem rgba(0, 0, 0, 0.2);
  padding: 0 5rem;
  border-radius: 18px;
  font-weight: 700;
  cursor: pointer;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-modal {
  width: 70px;
  height: 75px;
  padding: 0 0 0 0;
  object-fit: contain;
}
.logo-divider {
  width: 1px;
  height: 28px;
  background: #111827;
  opacity: 0.5;
}
.wordmark {
  display: flex;
  align-items: baseline;
  gap: 2px;
  border: 2px solid #ffffff;
  border-radius: 2px;
  padding: 2px 6px;
}
.wordmark .text-kick {
 font-family: "Koulen", sans-serif;
  font-weight: bolder;
  font-style: normal;
  font-size: 1.4rem;
  color: #111;
}
.wordmark .text-club {
  font-family: "Lugrasimo", cursive;
  font-size: 1.5rem;
  font-weight: 800;
  color: #111;
}

.text-auth {
  justify-content: center;
  align-items: center;
  display: inline-flex;
  font-family: "Inter", sans-serif;
  font-size: 0.78123456789rem;
  color: #35343470;
  padding: 2px 22px auto;
  text-align: center;
}
.text-essential {
  font-family: "Lugrasimo", cursive;
  font-size: 1.5rem;
  font-weight: 400;
}

.layout-green {
  background-color: #53aa51;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.layout-news{
  background: #ffffff;
  display: flex;
  justify-content: center;
  padding: 24px 16px 48px;
  min-height: 450px;
}

.news {
  position: relative;
  color: #fff;
  min-height: 300px;
  display: flex;
}

.news-header {
  padding: 0 2.5rem 2.5rem;
  display: flex;
  justify-content: baseline;
  align-items: center;
}

.title-news {
  color:#000000;
  display: flex;
  flex-direction: column;
  justify-content: baseline;
  align-items: baseline;
}

.to-news {
  color: #5DBD5A;
  text-decoration: none;
  font-size: 30px;
  font-weight: lighter;
  font-family: "Inter", sans-serif;
}

.news-diviser {
  display: flex;
  align-items: center;
  margin: 10px ;
  width: 6rem;
  height: 0.9rem;
  background-color: #5DBD5A;
  box-sizing: border-box;
}

.help-section {
  color: white;
  display: flex;
  flex-direction: column; 
  align-items: flex-start; 
  text-align: left;
  gap: 6px;
  padding: 0; 
  text-shadow: none; 
  max-width: 800px; 
}

.help-section-content {
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
  padding: 0; 
  align-content: baseline;
  align-items: flex-start;
  flex-direction: column; 
  list-style: none;
  margin-top: 8px;
}

.help-section-content a {
  font-size: 23px;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  color: white;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap; 
  text-transform: none;
}

.help-section h2 {
  margin: 0; 
  white-space: nowrap; 
  line-height: 1.2;
  font-size: 1.8rem;
}

.help-section p {
  margin: 0;
  line-height: 1.5;
  white-space: normal; 
  word-break: normal;
  overflow-wrap: anywhere; 
}


.footer-content .help-section,
.footer-content .help-section-content {
  align-self: flex-start;
}
