/* ========================================
   HOUSE ESTILO DECOR - Folha de Estilos
   ======================================== */

:root {
  --primary:     #9A7820;
  --primary-dark:#7A5E10;
  --gold:        #C4A020;
  --gold-light:  #E8D5A3;
  --dark:        #1A1510;
  --text:        #C8BCA4;
  --text-light:  #9A8E7A;
  --bg:          #0D0B07;
  --bg-alt:      #171410;
  --white:       #FFFFFF;
  --card:        #1E1B12;
  --border:      #2C2418;
  --shadow:      0 4px 24px rgba(0,0,0,0.50);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.60);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.3s ease;
  --font-main:   'Playfair Display', serif;
  --font-body:   'Lato', sans-serif;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* -------- Typography -------- */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  color: var(--gold-light);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }

/* -------- Utilities -------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.bg-alt  { background: var(--bg-alt); }
.bg-dark { background: var(--dark); color: var(--white); }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-title {
  margin-bottom: 1.2rem;
}
.section-title span { color: var(--gold); }
.divider {
  width: 56px; height: 3px;
  background: var(--gold);
  margin: 0 auto 2rem;
  border-radius: 2px;
}
.divider-left { margin-left: 0; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,115,85,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b8933a;
  border-color: #b8933a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,164,90,0.4);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-wa:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  transform: translateY(-2px);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(15,12,8,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-img {
  height: 100px;
  width: auto;
  border-radius: 6px;
  display: block;
}
/* legacy — kept for footer compat */
.logo-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { fill: var(--white); width: 26px; height: 26px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.site-header.scrolled .logo-name { color: var(--gold-light); }

.nav-menu { display: flex; align-items: center; gap: 0.2rem; }
.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
  background: rgba(196,160,32,0.10);
}
.nav-cta {
  margin-left: 0.8rem;
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(30,30,30,0.82) 0%, rgba(139,115,85,0.55) 100%),
    url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1600&q=80') center/cover no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 100px 0 80px;
}
.hero-label {
  display: inline-block;
  background: rgba(196,164,90,0.22);
  border: 1px solid rgba(196,164,90,0.5);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--gold-light); }
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   FEATURES / DESTAQUES
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--bg-alt);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}
.feature-card h4 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
}
.feature-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ========================================
   SOBRE
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge .num {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-light);
}
.about-img-badge .lbl {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}
.about-content { padding-bottom: 1rem; }
.about-content .section-label { margin-bottom: 0.4rem; }
.about-content p { color: var(--text-light); }
.pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.8rem;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
}
.pillar-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pillar-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 0.2rem;
}
.pillar-text { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ========================================
   STATS (contador)
   ======================================== */
.stats-bar {
  background: var(--primary);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 0.4rem;
}

/* ========================================
   SERVICES
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.92) 0%, rgba(20,20,20,0.5) 70%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem;
  color: var(--white);
}
.service-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}
.service-card-body h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.service-card-body p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.7rem; }

/* Sub-cards for pages */
.sub-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.sub-service-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.sub-service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.sub-service-img {
  width: 100%; height: 180px;
  object-fit: cover;
}
.sub-service-body { padding: 1.2rem 1.3rem; }
.sub-service-body h4 { margin-bottom: 0.4rem; color: var(--gold); }
.sub-service-body p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ========================================
   CTA BAND
   ======================================== */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 2rem; }
.cta-band .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1.2rem; }
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}
.contact-card h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.contact-card p, .contact-card a {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.contact-card a:hover { color: var(--primary); }
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group select option {
  background: var(--card);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,160,32,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  padding-top: 0;
}
.page-hero-inner {
  background:
    linear-gradient(135deg, rgba(30,30,30,0.75) 0%, rgba(139,115,85,0.5) 100%),
    var(--hero-img, url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=1200&q=80')) center/cover no-repeat;
  padding: 180px 0 70px;
  text-align: center;
  color: var(--white);
}
.page-hero-inner h1 { color: var(--white); margin-bottom: 0.6rem; }
.breadcrumb {
  display: flex; justify-content: center;
  align-items: center; gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.8rem;
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: #090807;
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}
.footer-col h5 {
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-icon {
  font-size: 0.95rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-bottom {
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a:hover { color: var(--gold); }

/* ========================================
   WhatsApp Float
   ======================================== */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37,211,102,0.55);
}
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ========================================
   GALLERY GRID
   ======================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item.tall img { height: 460px; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .about-img-main { height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 768px) {
  .section { padding: 65px 0; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: rgba(15,12,8,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    align-items: stretch;
  }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 0.9rem 1rem; border-radius: var(--radius); }
  .nav-cta { text-align: center; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-img-badge { bottom: 12px; right: 12px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Form alert ---- */
.form-alert {
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-alert--success {
  background: rgba(6,95,70,0.25);
  color: #6ee7b7;
  border: 1px solid rgba(110,231,183,0.35);
}
.form-alert--error {
  background: rgba(153,27,27,0.25);
  color: #fca5a5;
  border: 1px solid rgba(252,165,165,0.35);
}
