.destaques-section {
  padding: 50px 20px;
  text-align: center;
  background: #fff;
}

.destaques-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.destaque-item {
  text-decoration: none;
  color: #333;
  width: 120px;
  transition: transform 0.3s ease;
}

.destaque-item:hover {
  text-decoration: none;
  transform: translateY(-10px) scale(1.05);
}

.icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7a1e3d, #008080);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  color: #fff;
  font-size: 36px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.destaque-item:hover .icon-circle {
  background: linear-gradient(135deg, #008080, #7a1e3d);
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.destaque-item p {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.app-section {
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 60px 40px;
  background: #222;
  color: #fff;
}

.app-content {
  flex: 1;
  max-width: 500px;
}

.app-content h1 {
  font-size: 28px;
  margin-bottom: 30px;
  line-height: 1.3;
}

.app-content h1 span {
  color: #ff9900;
  text-shadow: 0 0 5px #ff9900;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
  margin-bottom: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.feature i {
  font-size: 26px;
  color: #ff9900;
  text-shadow: 0 0 15px #ff9900;
}

.feature:hover {
  transform: translateX(8px) scale(1.05);
}

.download-buttons {
  display: flex;
  gap: 50px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  background: #111;
  border: 2px solid #ff9900;
  transition: 0.3s ease;
  box-shadow: 0 0 8px #ff9900;
}

.store-btn:hover {
  text-decoration: none;
  background: #ff9900;
  color: #111;
}

.app-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.app-image img {
  max-width: 300px;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px #ff9900);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .app-section {
    flex-direction: column;
    text-align: center;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .download-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.footer {
  background: linear-gradient(
    135deg,
    #ff3c00 0%,
    #4e0900 20%,
    #0a0605 40%,
    #1d1411 70%,
    #000000 100%
  );
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: left;
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.footer-column h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #fff;
}

.footer-column p {
  margin: 5px 0;
  color: #ddd;
  line-height: 1.6;
}

.footer-column strong {
  color: #fff;
}

.footer-download .store-btn {
  font-size: 12px;
}

.footer-download {
  gap: 15px;
  padding: 5px;
  flex-direction: column;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.social-icons a {
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ff3c00;
}

.app-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.app-links img {
  width: 120px;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.app-links img:hover {
  transform: scale(1.05);
}

.pix-link {
  color: #ff3c00;
  font-weight: 600;
  text-decoration: none;
}

.pix-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding-top: 15px;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #ccc;
}

/* Pulse Animation for Social Icons */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
  .footer .section-heading,
  .footer .section-subheading,
  .footer .bank-info h4 {
    font-size: 1.2rem;
  }

  .footer .footer-links .social-buttons a {
    font-size: 1.5rem;
    margin: 10px;
  }
}
#contact {
  padding: 0;
}

.contribution-section {
  background: #fafafa;
}
.contribution-section .container {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
}

.contribution-left {
  width: 30%;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contribution-btn {
  margin-bottom: 50px;
  background-color: #ff7f32;
  color: white;
  padding: 20px 40px;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contribution-btn:hover {
  transform: scale(1.1);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.qr-code img {
  width: 90%;
  margin-top: 20px;
  animation: qrMove 5s linear infinite;
  transition: transform 0.3s ease;
}

@keyframes qrMove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.contribution-right {
  width: 60%;
}

.section-heading {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.card {
  background-color: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  padding: 20px;
  width: 40%;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #ff7f32;
}

.card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Media Query for responsiveness */
@media (max-width: 768px) {
  .contribution-section {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .contribution-left,
  .contribution-right {
    width: 100%;
    margin-bottom: 30px;
  }

  .cards {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .card {
    width: 80%;
    margin-bottom: 20px;
  }
}

/* Títulos com degradê */
.gradient-text {
  background: linear-gradient(45deg, #ff9900, #311a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

/* Card estilizado */
.service-card:hover {
  text-decoration: none;
}
.service-card {
  display: block;
  padding: 30px 20px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Ícones */
.icon-wrapper {
  font-size: 3rem;
  color: #ff7e00;
  margin-bottom: 15px;
  transition: transform 0.3s, color 0.3s;
}

.service-card:hover .icon-wrapper {
  transform: scale(1.2);
  color: #ff4500;
}

/* Responsividade */
@media (max-width: 768px) {
  .service-card {
    margin-bottom: 20px;
  }
}

.size {
  font-size: 50px;
  background: linear-gradient(45deg, #ff9900 0%, #ff9900 50%, #311a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}
.text-white {
  color: white;
}

.team-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.team-img img {
  border-radius: 50%;
  width: 100%;
  max-width: 200px;
  height: auto;
  border: 5px solid #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito de hover */
.team-img img:hover {
  transform: scale(1.1); /* Aumenta a imagem ao passar o mouse */
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2); /* Sombra mais forte */
  border-color: #f39c12; /* Muda a cor da borda para laranja */
}

.restrito {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f39c12;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  border: 4px solid transparent;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease,
    border-color 0.3s ease; /* Efeitos de transição */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra leve */
}

.restrito:hover {
  text-decoration: none;
  color: white;
  background-color: #e67e22;
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 4px solid #fff;
}

.restrito:focus {
  outline: none;
}

.restrito:active {
  transform: translateY(2px);
}

.agenda-semanal {
  background: linear-gradient(
    135deg,
    #ff3c00 0%,
    #4e0900 20%,
    #0a0605 40%,
    #1d1411 70%,
    #000000 100%
  );
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 80px 20px;
  text-align: center;
}

.agenda-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.agenda-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.agenda-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
}

.agenda-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.agenda-header {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.agenda-card p {
  margin: 6px 0;
  color: #ddd;
  font-size: 1.2rem;
}

.agenda-card strong {
  color: #fff;
  font-weight: 600;
}

.agenda-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 30px;
  flex-wrap: wrap;
}

.agenda-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.3s ease;
}

.agenda-logo:hover {
  transform: rotate(-5deg) scale(1.05);
}

.agenda-church {
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-size: 1.8rem;
}

.agenda-address {
  margin: 2px 0 10px;
  color: #ccc;
  font-size: 1.2rem;
}

.agenda-social {
  display: flex;
  align-items: center;
  color: #ffb52b;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1.25rem;
}

.agenda-social:hover {
  color: #be7c00;
  text-decoration: none;
}

.agenda-social i {
  margin-right: 6px;
  font-size: 2rem;
}

.btn-voltar {
  font-family: 'Roboto', sans-serif;
  display: flex;
  padding: 12px 32px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff3c00, #4e0900, #0a0605);
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  margin: auto;
  margin-bottom: 2rem;
}

.btn-voltar:hover {
  background: linear-gradient(135deg, #ff5c2a, #731010, #1a0d0a);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.celulas-section {
  padding: 70px 20px;
  display: flex;
  justify-content: center;
  background: #f5f5f5;
}

.celulas-wrapper {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.celulas-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 800;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.celulas-text {
  max-width: 750px;
  margin: 0 auto 40px auto;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.6;
}

.celulas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 30px;
}

/* CARD */
.celula-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.celula-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

/* IMAGE */
.celula-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

/* CONTENT */
.celula-info {
  padding: 20px;
}

.celula-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.celula-dia {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 15px;
}

/* WHATSAPP BUTTON */
.wpp-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.wpp-btn:hover {
  text-decoration: none;
  background: #1ebe5d;
  transform: translateY(-3px);
}

.wpp-btn i {
  font-size: 1.2rem;
}
.celulas-section {
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
  background: #222;
  color: #fff;
}

.celulas-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.celulas-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ff9900;
}

.celulas-subtitle {
  font-size: 2rem;
  opacity: 0.8;
  margin-bottom: 50px;
}

.celulas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 80px;
}

/* CARD */
.celula-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.35s ease;
  cursor: pointer;
}

.celula-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 153, 0, 0.3);
  border-color: #ff9900;
}

/* IMAGE FIXA */
.celula-img {
  height: 160px;
  background-image: url('https://darkseagreen-woodcock-280128.hostingersite.com/wp-content/uploads/2025/09/4KCstro.webp');
  background-size: cover;
  background-position: center;
}

/* CONTENT */
.celula-content {
  padding: 20px;
}

.celula-content h3 {
  font-size: 1.9rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.celula-dia {
  font-size: 1.5rem;
  opacity: 0.8;
  margin-bottom: 15px;
}

/* BUTTON WPP */
.btn-wpp {
  width: 80%;
  justify-content: center;
  align-items: center;
  display: flex;
  background: #ff9900;
  color: #000;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  margin: auto;
}

.btn-wpp i {
  margin-right: 6px;
  font-size: 2rem;
}

.btn-wpp:hover {
  text-decoration: none;
  background: #ffb84d;
  color: #000;
}

/* VER TODAS */
.btn-ver-todas {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 32px;
  color: #ff9900;
  border: 2px solid #ff9900;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-ver-todas:hover {
  text-decoration: none;
  background: #ff9900;
  color: #000;
}

.oracao-section {
  padding: 70px 20px;
  padding-top: 140px;
  display: flex;
  justify-content: center;
  background: radial-gradient(circle at top, #111111, #252525);
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', sans-serif;
  color: #f5f5f5;
}

.oracao-section .oracao-wrapper {
  width: 100%;
  max-width: 700px;
  background: rgba(56, 56, 56, 0.5);
  border-radius: 20px;
  padding: 40px 30px 35px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(18px);
  animation: fadeInUp 0.7s ease-out;
}

.oracao-section .oracao-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
  color: #ff9900;
}

.oracao-section .oracao-subtitle {
  text-align: center;
  font-size: 1.5rem;
  opacity: 0.8;
  margin-bottom: 28px;
}

/* Form */

.oracao-section .oracao-form {
  display: grid;
  gap: 18px;
}

.oracao-section .form-group {
  display: flex;
  flex-direction: column;
}

.oracao-section .form-group label {
  font-size: 1.4rem;
  margin-bottom: 6px;
  opacity: 0.9;
}

/* Input wrapper com ícone */

.oracao-section .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(20, 20, 20, 0.9);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 14px;
  transition: border 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease-out,
    background 0.25s ease;
}

.oracao-section .input-wrapper i {
  margin-right: 10px;
  font-size: 1.4rem;
  color: #ff9900;
}

.oracao-section .input-wrapper input,
.oracao-section .input-wrapper textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #f5f5f5;
  font-size: 1.35rem;
  padding: 12px 0;
  font-family: inherit;
}

.oracao-section .input-wrapper textarea {
  resize: vertical;
  min-height: 120px;
}

.oracao-section .textarea-wrapper {
  align-items: flex-start;
  padding-top: 10px;
}

/* Estados de foco */

.oracao-section .input-wrapper:focus-within {
  border-color: #ff9900;
  box-shadow: 0 0 0 1px rgba(255, 153, 0, 0.5), 0 12px 25px rgba(0, 0, 0, 0.8);
  transform: translateY(-1px);
  background: rgba(26, 26, 26, 0.95);
}

/* Placeholder */

input::placeholder,
textarea::placeholder {
  color: rgba(220, 220, 220, 0.45);
}

/* Botão */

.oracao-section .btn-oracao {
  margin-top: 10px;
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ff9900, #ff6b00);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  border: 4px solid snow;
}

.btn-oracao i {
  font-size: 2rem;
}

.btn-oracao:hover {
  border: 4px solid rgb(81, 255, 0);
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-oracao:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(255, 153, 0, 0.55);
}

/* Animação de entrada */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */

@media (max-width: 600px) {
  .oracao-wrapper {
    padding: 30px 20px 25px;
  }

  .oracao-title {
    font-size: 1.7rem;
  }

  .oracao-subtitle {
    font-size: 0.9rem;
  }
}

/* Container no topo direito */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Estilo base do toast */
.toast {
  font-size: 1.8rem;
  width: 100%;
  max-width: 500px;
  padding: 15px 18px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  background: rgba(255, 153, 0, 0.15);
  border-left: 4px solid #ff9900;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateX(20px);
  animation: toastIn 0.5s forwards;
}

/* Ícone do toast */
.toast i {
  font-size: 30px;
  color: #ff9900;
  margin-top: 2px;
}

/* Animação de entrada */
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animação de saída */
@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(20px);
  }
}

/* SECTION BASE */
.contact-section {
  padding: 20px !important;
  background: #0b0b0b;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

.contact-wrapper {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* TITLES */
.contact-title {
  font-size: 3rem;
  color: #ff9900;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-subtitle {
  font-size: 1.8rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ROWS */
.main-contact .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* GROUP */
.main-contact .form-group {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  backdrop-filter: blur(12px);
  transition: 0.3s ease;
  flex-direction: row;
}

.main-contact .form-group:hover {
  transform: translateY(-3px);
  border-color: #ff9900;
  box-shadow: 0 8px 20px rgba(255, 153, 0, 0.25);
}

.main-contact .form-group i {
  font-size: 1.8rem;
  margin-right: 12px;
  color: #ff9900;
}

/* INPUTS */
.main-contact .form-group input,
.main-contact .form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;

  color: #fff;
  font-size: 1.5rem;
}

/* TEXTAREA */
.main-contact .textarea-group {
  resize: none;
  min-height: 150px;
  align-items: center;
  padding-top: 15px;
  font-size: 1.5rem;
  display: flex;
}
.main-contact .textarea-group textarea {
  font-size: 1.5rem;
  resize: none;
}

/* BUTTON */
.main-contact .contact-btn {
  color: #ffffff;
  font-weight: 600;
  padding: 14px 35px;
  border: 3px solid #ff9900;
  border-radius: 14px;
  font-size: 1.8rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
  background-color: transparent;
}

.main-contact .contact-btn:hover {
  transform: translateY(-3px);
  border: 3px solid #d3d3d3;
  background-color: #502d00;
}

.main-contact .contact-btn i {
  font-size: 1.2rem;
}
