:root {
  --soft-sage-green: #A8C3B0;
  --warm-sand: #E8DCC6;
  --deep-forest-green: #3E5C4E;
  --off-white: #FAF9F7;
  --warm-taupe: #C2A994;
}

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

body {
  background-color: var(--off-white);
  color: #333;
  line-height: 1.6;
  font-family: "Lato", sans-serif;
  /* font-weight: 100; */
}

header {
  width: 100%;
  background-color: var(--deep-forest-green);
  padding: 15px;
  color: var(--off-white);
}

header h1 a {
  text-decoration: none;
  color: var(--off-white);
}

header .frase_topo {
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
  padding: 5px 0 15px;
  border-bottom: 2px solid var(--off-white);
}

header .subtitulo {
  font-size: 0.8em;
  font-weight: normal;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background-color: var(--warm-sand);
  position: relative;
  z-index: 1000;
}

.nav-menu ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--deep-forest-green);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--warm-taupe);
}

.btn-hamburger,
.btn-close {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--deep-forest-green);
  cursor: pointer;
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
  min-height: 100vh;
}

.intro-container,
.content-wrapper {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
}

.intro-container {
  justify-content: center;
}

.content-wrapper {
  justify-content: center;
  gap: 40px;
}

.intro-texto,
.texto {
  flex: 1 1 500px;
  max-width: 600px;
  text-align: left;
}

.intro-img,
.imagem {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
}

.intro-img img,
.imagem img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.apresentacao {
  padding: 38px 20px;
  background-color: var(--off-white);
  display: flex;
  justify-content: center;
}

.sobre,
.mitologia,
.psique,
.terapia,
.supervisao,
.posts-section {
  padding: 40px 20px;
  background-color: #fdf9f4;
}

.sobre .container,
.mitologia .container,
.psique .container,
.terapia .container,
.supervisao .container,
.posts-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.intro-texto h1,
.sobre h1,
.mitologia h1,
.psique h1,
.terapia h1,
.supervisao h1,
.posts-section h1,
.contato-container h1 {
  color: var(--deep-forest-green);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.intro-texto h1 {
  font-size: 2.2rem;
  margin-bottom: 36px;
}

.sobre h1,
.mitologia h1,
.psique h1,
.terapia h1,
.supervisao h1,
.posts-section h1 {
  font-size: 2.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contato-container h1 {
  font-size: 2.5rem;
  margin-top: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== SISTEMA DE MENSAGENS DISCRETO ===== */
.form-message {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border-left: 4px solid;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    font-size: 0.9rem;
}

.form-message.show {
    opacity: 1;
    transform: translateX(0);
}

.form-message.fade-out {
    opacity: 0;
    transform: translateX(100%);
}

.form-message.success {
    background-color: var(--off-white);
    border-left-color: var(--soft-sage-green);
    color: var(--deep-forest-green);
}

.form-message.error {
    background-color: #fdf2f2;
    border-left-color: #dc2626;
    color: #7f1d1d;
}

.message-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.message-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.message-text {
    font-weight: 500;
    line-height: 1.3;
}

/* ===== ESTADO DE LOADING DO BOTÃO ===== */
.btn-enviar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-enviar.loading {
    background-color: var(--warm-taupe);
    color: var(--deep-forest-green);
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--off-white);
    border-radius: 50%;
    border-top: 2px solid var(--deep-forest-green);
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .form-message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .form-message.show {
        transform: translateY(0);
    }
    
    .form-message.fade-out {
        transform: translateY(-100%);
    }
}

.intro-texto p,
.sobre p,
.mitologia p,
.psique p,
.terapia p,
.supervisao p {
  line-height: 1.8;
  color: #3a3a3a;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  font-weight: 400;
  text-align: justify;
}

.intro-texto p {
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 28px;
  color: #2f2f2f;
  letter-spacing: 0.3px;
  max-width: 65ch;
}

.sobre p,
.mitologia p,
.psique p,
.terapia p,
.supervisao p {
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto 24px auto;
}

.intro-texto strong,
.sobre p strong,
.mitologia p strong,
.psique p strong,
.terapia p strong,
.supervisao p strong {
  color: var(--warm-taupe);
  font-weight: 600;
}

.sobre .container,
.psique .container,
.supervisao .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  text-align: left;
  flex-direction: column;
}

.mitologia .container,
.terapia .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.terapia .texto {
  text-align: center;
}

.terapia blockquote {
  font-size: 1rem;
  color: #3a3a3a;
  border-left: 4px solid var(--warm-taupe);
  padding: 16px 24px;
  margin: 32px auto;
  background-color: #f1eae1;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  max-width: 750px;
  font-weight: 400;
  text-align: left;
  overflow: hidden;
  white-space: normal;
  text-overflow: unset;
}

.terapia .autor {
  display: inline-block;
  margin-left: 12px;
  font-weight: 500;
  color: var(--deep-forest-green);
  white-space: nowrap;
}

.btn-contato,
.btn-leia-mais {
  display: inline-block;
  background-color: var(--deep-forest-green);
  color: var(--off-white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-contato {
  padding: 12px 28px;
  font-size: 1rem;
  transform: scale(1.05);
}

.btn-leia-mais {
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
  flex-shrink: 0;
}

.btn-contato:hover {
  background-color: var(--warm-taupe);
  color: #fff;
  transform: scale(1.05);
}

.btn-leia-mais:hover {
  background-color: var(--soft-sage-green);
  color: var(--deep-forest-green);
  transform: translateY(-2px);
}

.supervisao .btn-contato {
  margin: 24px 0 0 0;
}

.contato-container form {
  background-color: #eadcc6;
  padding: 30px 40px;
  max-width: 450px;
  margin: 40px auto;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

label {
  display: block;
  margin-bottom: 6px;
  color: #3a4d40;
  font-weight: 600;
  font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid #a9a9a9;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #3a4d40;
  outline: none;
  box-shadow: 0 0 8px #3a4d40aa;
}

::placeholder {
  color: #7a7a7a;
}

textarea {
  min-height: 120px;
}

button {
  display: block;
  width: 100%;
  background-color: #3a4d40;
  color: white;
  font-weight: 600;
  border: none;
  padding: 12px 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
  background-color: #2f3e33;
  transform: scale(1.05);
}

.tabs-container {
  margin-bottom: 40px;
}

.tabs-navigation {
  display: flex;
  background-color: var(--off-white);
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 4px 20px rgba(62, 92, 78, 0.1);
  margin: 0 auto 40px auto;
  border: 1px solid var(--warm-sand);
  max-width: 800px;
  justify-content: center;
}

.tab-button {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--deep-forest-green);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  position: relative;
  margin: 0;
}

.tab-button i {
  font-size: 18px;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.tab-button span {
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1;
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.tab-button:hover {
  background-color: var(--warm-sand);
  color: var(--deep-forest-green);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(62, 92, 78, 0.1);
}

.tab-button.active {
  background-color: var(--soft-sage-green);
  color: var(--deep-forest-green);
  box-shadow: 0 4px 15px rgba(62, 92, 78, 0.15);
}

.tab-button.active i {
  transform: scale(1.1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.posts-grid-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  width: fit-content;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 20px;
  justify-items: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.post-card {
  background: var(--off-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 280px;
  height: 420px;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-color: var(--soft-sage-green);
}

.post-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  color: var(--deep-forest-green);
}

.post-title {
  color: var(--deep-forest-green);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-shrink: 0;
}

.post-excerpt {
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 12px;
  color: #6a6a6a;
  font-weight: 400;
  padding-top: 10px;
  border-top: 1px solid rgba(194, 169, 148, 0.2);
  flex-shrink: 0;
}

.post-author,
.post-date {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 400;
}

.post-meta i {
  font-size: 11px;
}

.no-posts {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 40px;
  color: var(--warm-taupe);
  background: var(--off-white);
  border-radius: 20px;
  border: 2px solid var(--soft-sage-green);
  box-shadow: 0 8px 25px rgba(62, 92, 78, 0.1);
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  justify-self: center;
}

.no-posts-icon {
  margin-bottom: 20px;
}

.no-posts-icon i {
  font-size: 60px;
  color: var(--soft-sage-green);
  opacity: 0.7;
}

.no-posts h3 {
  color: var(--deep-forest-green);
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}

.no-posts p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 350px;
  margin: 0 auto;
  color: var(--warm-taupe);
}

@media (min-width: 769px) {
  .nav-container {
    justify-content: center;
  }

  .nav-menu {
    position: static;
    display: flex;
    justify-content: center;
    background-color: var(--warm-sand);
    padding: 12px 24px;
    width: 100%;
  }

  .nav-menu ul {
    justify-content: center;
    gap: 16px;
  }

  .nav-menu li a {
    background-color: var(--soft-sage-green);
    color: var(--deep-forest-green);
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .nav-menu li a.active {
    background-color: var(--deep-forest-green);
    color: var(--off-white);
    font-weight: bold;
    font-size: 1rem;
    border-radius: 999px;
    padding: 8px 20px;
    transform: none;
    box-shadow: none;
  }

  .nav-menu li a:hover {
    background-color: var(--deep-forest-green);
    color: var(--off-white);
    transform: scale(1.05);
  }
}

@media (min-width: 1200px) {
  .posts-grid {
    grid-template-columns: repeat(4, 280px);
  }
}

@media (min-width: 1100px) and (max-width: 1199px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
  }
  
  .post-card,
  .no-posts {
    height: 400px;
    max-width: 300px;
  }
}

@media (min-width: 900px) and (max-width: 1099px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 600px;
  }
  
  .post-card,
  .no-posts {
    height: 380px;
    max-width: 280px;
  }
  
  .post-title {
    font-size: 15px;
  }
  
  .post-excerpt {
    font-size: 13px;
    font-weight: 400;
  }
  
  .tab-button span {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 90%;
  }

  header {
    font-size: 0.95rem;
  }

  header h1 {
    font-size: 1.4rem;
    margin-top: 14px;
  }

  header h1 .subtitulo {
    font-size: 1rem;
    font-weight: 400;
  }

  .frase_topo {
    text-align: center;
  }

  .nav-container {
    padding: 40px 16px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--warm-sand);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu.active ~ .btn-hamburger {
    display: none;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 32px;
  }

  .nav-menu a {
    font-size: 1.2rem;
  }

  .btn-hamburger {
    display: block;
    position: absolute;
    right: 0px;
    top: 25%;
    transform: translateY(-50%);
    z-index: 999;
  }

  .btn-close {
    display: block;
    position: absolute;
    top: 24px;
  }

  .intro-container,
  .content-wrapper,
  .sobre .content-wrapper,
  .psique .content-wrapper,
  .supervisao .content-wrapper,
  .mitologia .container,
  .terapia .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .intro-texto,
  .intro-img,
  .texto,
  .imagem {
    max-width: 100%;
    flex: none;
    min-height: auto;
    height: auto;
    align-self: flex-start;
  }

  .intro-texto h1 {
    font-size: 1.6rem;
    margin: 0 0 15px 0;
    height: auto;
  }

  .intro-texto p {
    font-size: 1.05rem;
    margin: 0;
    height: auto;
    line-height: 1.5;
  }

  .terapia blockquote {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }

  form {
    padding: 25px 20px;
    margin: 20px;
  }

  button {
    font-size: 1rem;
    padding: 10px 0;
  }

  .page-container {
    padding: 20px 15px;
  }
  
  .tabs-navigation {
    flex-direction: column;
    gap: 4px;
    padding: 6px;
    max-width: 100%;
  }
  
  .tab-button {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    padding: 12px 20px;
    margin: 0;
  }
  
  .tab-button i {
    font-size: 16px;
  }
  
  .tab-button span {
    font-size: 14px;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    padding: 20px 15px;
  }
  
  .post-card {
    height: 400px;
    max-width: 100%;
  }
  
  .post-image {
    height: 140px;
  }
  
  .post-title {
    font-size: 16px;
  }
  
  .post-excerpt {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
  }
  
  .post-meta {
    font-size: 12px;
  }
  
  .btn-leia-mais {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .no-posts {
    padding: 40px 25px;
    max-width: 100%;
    height: 300px;
  }
  
  .no-posts-icon i {
    font-size: 50px;
  }
  
  .no-posts h3 {
    font-size: 20px;
  }
  
  .no-posts p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .post-card {
    height: 380px;
  }
  
  .post-content {
    padding: 16px;
  }
  
  .post-title {
    font-size: 15px;
  }
  
  .post-excerpt {
    font-size: 13px;
    font-weight: 400;
  }
  
  .posts-grid {
    padding: 20px 10px;
    max-width: 320px;
  }
  
  .no-posts {
    padding: 30px 20px;
    height: 280px;
  }
  
  .no-posts-icon i {
    font-size: 40px;
  }
  
  .no-posts h3 {
    font-size: 18px;
  }
  
  .tab-button span {
    font-size: 12px;
  }
}

.newsletter-section {
  background: linear-gradient(135deg, var(--deep-forest-green) 0%, var(--soft-sage-green) 100%);
  margin: 60px 0 40px 0;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(62, 92, 78, 0.2);
  position: relative;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.newsletter-container {
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter-content {
  flex: 1;
  color: var(--off-white);
}

.newsletter-icon {
  background: rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.newsletter-icon i {
  font-size: 24px;
  color: var(--off-white);
}

.newsletter-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--off-white);
  line-height: 1.2;
}

.newsletter-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
  max-width: 400px;
}

.newsletter-form {
  flex: 1;
  max-width: 450px;
}

.newsletter-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-group {
  position: relative;
}

.newsletter-form input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--off-white);
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--warm-sand);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(232, 220, 198, 0.2);
}

.newsletter-form input.error {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2);
}

.input-error {
  display: block;
  color: #ff4757;
  font-size: 0.85rem;
  margin-top: 6px;
  margin-left: 4px;
  font-weight: 600;
  min-height: 18px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.newsletter-btn {
  background: var(--warm-sand);
  color: var(--deep-forest-green);
  border: none;
  padding: 16px 30px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}

.newsletter-btn:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.newsletter-btn:disabled {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.newsletter-message {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  display: none;
  animation: slideIn 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.newsletter-message.success {
  background: rgba(39, 174, 96, 0.9);
  color: #ffffff;
  border: 2px solid rgba(39, 174, 96, 1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.newsletter-message.error {
  background: rgba(231, 76, 60, 0.9);
  color: #ffffff;
  border: 2px solid rgba(231, 76, 60, 1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 768px) {
  .newsletter-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
    gap: 30px;
  }
  
  .newsletter-content {
    order: 1;
  }
  
  .newsletter-form {
    order: 2;
    max-width: 100%;
  }
  
  .newsletter-content h3 {
    font-size: 1.8rem;
  }
  
  .newsletter-content p {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .newsletter-icon {
    margin: 0 auto 20px auto;
  }
}

@media (max-width: 480px) {
  .newsletter-container {
    padding: 30px 20px;
  }
  
  .newsletter-content h3 {
    font-size: 1.6rem;
  }
  
  .newsletter-form input {
    padding: 14px 16px;
    font-size: 16px;
  }
  
  .newsletter-btn {
    padding: 14px 24px;
    font-size: 1rem;
  }
  
  .newsletter-message {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
}