﻿/* ===== Global Styles ===== */
:root {
  --eco-green-primary: #2D5F3F;
  --eco-green-secondary: #4A8B5C;
  --eco-green-light: #6BAF7D;
  --eco-green-hover: #235031;
  --eco-gray-light: #f8f9fa;
  --eco-gray-text: #6c757d;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #fff;
    background-color: #1c251f;
    background-image: url('/images/fundo_home_4.png');
    background-size: auto;
    background-position: center top;
    background-repeat: no-repeat;
}

/* ===== Page Wrapper ===== */
.eco-page-wrapper {
    max-width: 1920px;
    margin: 0 auto;
    background-color: transparent;
    position: relative;
}

/* ===== HR Gradient Style ===== */
hr, .eco-divider {
  border: none;
  height: 2px;
  background: linear-gradient(to right, 
    rgba(0, 0, 0, 0) 0%, 
    rgba(0, 0, 0, 0.5) 15%, 
    rgba(0, 0, 0, 0.5) 85%, 
    rgba(0, 0, 0, 0) 100%);
  margin: 1rem auto;
  max-width: 700px;
  width: 80%;
}

.eco-divider-light {
  background: linear-gradient(to right, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.3) 15%, 
    rgba(255, 255, 255, 0.3) 85%, 
    rgba(255, 255, 255, 0) 100%);
}

.eco-divider-green {
  background: linear-gradient(to right, 
    rgba(45, 95, 63, 0) 0%, 
    rgba(45, 95, 63, 0.2) 15%, 
    rgba(45, 95, 63, 0.2) 85%, 
    rgba(45, 95, 63, 0) 100%);
}

/* Variações de tamanho */
.eco-divider-sm {
  max-width: 200px;
}

.eco-divider-md {
  max-width: 400px;
}

.eco-divider-lg {
  max-width: 600px;
}

.eco-divider-full {
  max-width: 100%;
}

/* ===== Remover cursor de texto em SVGs ===== */
svg {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: default;
}

svg * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Remover seleção em elementos gráficos */
img, svg, .eco-leaf-icon, .eco-step-icon, .eco-impact-icon, .eco-team-photo {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

/* ===== Header & Navigation ===== */
.eco-header {
    position: sticky;
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1000;
    width: 100%;
    max-width: 1536px;
    margin: 0 auto;
}

.eco-header .navbar {
  position: relative;
  z-index: 2;
  background-color: transparent !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-left: 0;
  padding-right: 0;
}

.eco-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--eco-green-primary) !important;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--eco-green-secondary) !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

.eco-btn-primary {
    background: linear-gradient(to bottom, #9dc72c 0%, #4A9D3E 50%, #3A8030 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    border: none;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    color: white !important;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.eco-btn-primary:hover {
  background: linear-gradient(to bottom, 
    #5da872 0%, 
    var(--eco-green-secondary) 50%, 
    var(--eco-green-primary) 100%);
  transform: translateY(-1px);
}

.eco-btn-primary:active {
  transform: translateY(1px);
}

/* ===== Hero Section ===== */
.eco-hero {
    padding: 7rem 0 0 12rem;
    min-height: 100vh;
    text-align: left;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

    .eco-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0px;
        pointer-events: none;
        z-index: 1;
    }

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.eco-hero-title {
    font-family: 'Fontin-Sans-CR-Italic';
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    font-style: italic;
    text-align: center;
    max-width: 600px;
}

.eco-hero-subtitle {
    font-family: 'Fontin-Sans-CR-Italic';
    font-size: 1.5rem;
    color: white;
    max-width: 600px;
    text-align: center;
}

.eco-hero-button {
    max-width: 600px;
    text-align: center;
}

.eco-btn-cta {
    background: linear-gradient(to bottom, #9dc72c 0%, #4A9D3E 50%, #3A8030 100%);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    color: white !important;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.eco-btn-cta:hover {
  background: linear-gradient(to bottom, 
    #7FCB6F 0%, 
    #5FAF4F 50%, 
    #4A9D3E 100%);
  transform: translateY(-2px);
}

.eco-btn-cta:active {
  transform: translateY(2px);
}

.eco-btn-secondary {
  background: linear-gradient(to bottom, 
    #e9ecef 0%, 
    #dee2e6 50%, 
    #ced4da 100%);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  color: #495057 !important;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 4px 0 #adb5bd,
    0 6px 12px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  cursor: pointer;
}

.eco-btn-secondary:hover {
  background: linear-gradient(to bottom, 
    #f8f9fa 0%, 
    #e9ecef 50%, 
    #dee2e6 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 0 #adb5bd,
    0 8px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #343a40 !important;
}

.eco-btn-secondary:active {
  transform: translateY(2px);
  box-shadow: 
    0 2px 0 #adb5bd,
    0 3px 6px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ===== Como Funciona Section ===== */
.eco-how-it-works {
    padding: 5rem 0;
}

    .eco-how-it-works h2 {
        font-family: 'Fontin-Sans-CR-Italic';
        font-size: 2rem;
        font-weight: 700;
        color: white;
        margin-bottom: 3rem;
    }

.eco-how-intro {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.eco-how-intro p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.1rem;
    letter-spacing: 0.01em;
}

.eco-how-intro p strong {
    color: #6BAF7D;
    font-weight: 700;
}

.eco-how-intro-cta {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: #fff !important;
    letter-spacing: 0.04em !important;
    margin-top: 0.5rem !important;
    opacity: 0.95;
}

/* ===== Step Cards ===== */
.eco-step-card {
  position: relative;
  background: white;
  border-radius: 1.25rem;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  margin-top: 1.75rem;
  height: calc(100% - 1.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eco-step-badge {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ED4A8 0%, #1BA87E 100%);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(43, 200, 160, 0.4);
}

.eco-step-icon {
  margin-bottom: 1.25rem;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: default;
}

.eco-step-card h4 {
  font-weight: 700;
  color: #000;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.eco-step-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: black;
  flex: 1;
}

.eco-arrow {
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.75rem;
  color: var(--eco-green-light);
  font-weight: 300;
  z-index: 1;
}

@media (max-width: 767px) {
  .eco-arrow {
    display: none;
  }

  .eco-step-card {
    margin-bottom: 2rem;
  }
}

/* ===== Nossa Equipe Section ===== */
.eco-team {
  padding: 5rem 0;
  background: #fff;
}

    .eco-team h2 {
        font-family: 'Fontin-Sans-CR-Italic';
        font-size: 2rem;
        font-weight: 700;
        color: black;
        margin-bottom: 3rem;
    }

.eco-team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: default;
}

.eco-team-card:hover {
  transform: translateY(-8px);
}

.eco-team-photo {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.eco-team-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.eco-link {
  color: var(--eco-green-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.eco-link:hover {
  color: var(--eco-green-secondary);
}

/* ===== CTA Section ===== */
.eco-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--eco-green-primary) 0%, var(--eco-green-secondary) 100%);
  color: white;
}

.eco-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.eco-cta p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ===== Footer ===== */
.eco-footer {
  background: var(--eco-green-primary);
  color: white;
  padding: 2rem 0;
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
}

.eco-footer p {
  margin: 0;
  opacity: 0.9;
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
  .eco-hero-title {
    font-size: 2.5rem;
  }

  .eco-hero {
    padding: 3rem 0;
  }

  .eco-how-it-works,
  .eco-impact,
  .eco-team,
  .eco-cta {
    padding: 3rem 0;
  }

  .eco-how-it-works h2,
  .eco-impact h2,
  .eco-team h2,
  .eco-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .eco-hero-title {
    font-size: 2rem;
  }

  .eco-hero-subtitle {
    font-size: 1rem;
  }

  .eco-leaf-icon svg {
    width: 300px;
    height: 300px;
  }

  .eco-impact-number {
    font-size: 2rem;
  }

  .navbar-nav {
    padding: 1rem 0;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 0;
  }

  .eco-btn-primary {
    width: 100%;
    margin-top: 1rem;
  }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eco-step,
.eco-impact-card,
.eco-team-card {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== Bootstrap Overrides ===== */
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem var(--eco-green-light);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.dropdown-item:hover {
  background-color: var(--eco-gray-light);
  color: var(--eco-green-primary);
}


@font-face {
    font-family: "Barcis W01 Ext Regular";
    src: url("/fonts/barcis/05d7abd0e1bc62cb167d98c5d139b9d5.eot");
    src: url("/fonts/barcis/05d7abd0e1bc62cb167d98c5d139b9d5.eot?#iefix")format("embedded-opentype"), url("/fonts/barcis/05d7abd0e1bc62cb167d98c5d139b9d5.woff")format("woff"), url("/fonts/barcis/05d7abd0e1bc62cb167d98c5d139b9d5.woff2")format("woff2"), url("/fonts/barcis/05d7abd0e1bc62cb167d98c5d139b9d5.ttf")format("truetype"), url("/fonts/barcis/05d7abd0e1bc62cb167d98c5d139b9d5.svg#Barcis W01 Ext Regular")format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Barcis W01 Ext Demi";
    src: url("/fonts/barcis_demi/e43ebeb0662b948fadf42b9b2ad04b1a.eot");
    src: url("/fonts/barcis_demi/e43ebeb0662b948fadf42b9b2ad04b1a.eot?#iefix")format("embedded-opentype"), url("/fonts/barcis_demi/e43ebeb0662b948fadf42b9b2ad04b1a.woff")format("woff"), url("/fonts/barcis_demi/e43ebeb0662b948fadf42b9b2ad04b1a.woff2")format("woff2"), url("/fonts/barcis_demi/e43ebeb0662b948fadf42b9b2ad04b1a.ttf")format("truetype"), url("/fonts/barcis_demi/e43ebeb0662b948fadf42b9b2ad04b1a.svg#Barcis W01 Ext Demi")format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Barcis W01 Ext Bold";
    src: url("/fonts/barcis_bold/de5faf6948e149106ecc33699b8962d8.eot");
    src: url("/fonts/barcis_bold/de5faf6948e149106ecc33699b8962d8.eot?#iefix")format("embedded-opentype"), url("/fonts/barcis_bold/de5faf6948e149106ecc33699b8962d8.woff")format("woff"), url("/fonts/barcis_bold/de5faf6948e149106ecc33699b8962d8.woff2")format("woff2"), url("/fonts/barcis_bold/de5faf6948e149106ecc33699b8962d8.ttf")format("truetype"), url("/fonts/barcis_bold/de5faf6948e149106ecc33699b8962d8.svg#Barcis W01 Ext Bold")format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Fontin-Sans-CR-Italic';
    src: url('/fonts/fontin_regular_italic/Fontin-Sans-CR-Italic.ttf.woff') format('woff'), url('/fonts/fontin_regular_italic/Fontin-Sans-CR-Italic.ttf.svg#Fontin-Sans-CR-Italic') format('svg'), url('/fonts/fontin_regular_italic/Fontin-Sans-CR-Italic.ttf.eot'), url('/fonts/fontin_regular_italic/Fontin-Sans-CR-Italic.ttf.eot?#iefix') format('embedded-opentype');
    font-weight: normal;
    font-style: normal;
}

/* ===== Login Page ===== */
.eco-login-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.eco-login-container {
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.eco-login-header {
    text-align: center;
}

.eco-login-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.eco-login-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.98rem;
    margin: 0;
}

.eco-login-card {
    width: 100%;
    background: rgba(220, 235, 228, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 2rem 2rem;
    backdrop-filter: blur(8px);
}

/* Form groups */
.eco-form-group {
    margin-bottom: 1.25rem;
}

.eco-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.4rem;
}

.eco-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 0.65rem;
    border: 1.5px solid transparent;
    transition: border-color 0.2s;
}

.eco-input-wrapper:focus-within {
    border-color: #2ED4A8;
}

.eco-input-icon {
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    flex-shrink: 0;
}

.eco-form-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.7rem 0.5rem 0.7rem 0;
    font-size: 0.95rem;
    color: #1a2e24;
    outline: none;
}

.eco-form-input::placeholder {
    color: #9aa8a2;
}

.eco-input-toggle {
    background: none;
    border: none;
    padding: 0 0.75rem;
    color: #9aa8a2;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.eco-input-toggle:hover {
    color: #2ED4A8;
}

.eco-validation-msg {
    display: block;
    font-size: 0.8rem;
    color: #f56565;
    margin-top: 0.3rem;
}

.eco-validation-summary {
    background: rgba(245, 101, 101, 0.12);
    border: 1px solid rgba(245, 101, 101, 0.4);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.88rem;
    color: #f56565;
}

.eco-validation-summary ul {
    margin: 0;
    padding-left: 1.25rem;
}

.eco-validation-summary:empty {
    display: none;
}

/* Options row */
.eco-login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.eco-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.eco-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #2ED4A8;
    cursor: pointer;
}

.eco-forgot-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2ED4A8;
    text-decoration: none;
    transition: opacity 0.2s;
}

.eco-forgot-link:hover {
    opacity: 0.8;
    color: #2ED4A8;
}

/* Login button */
.eco-login-btn {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(90deg, #2ED4A8 0%, #1BA87E 100%);
    border: none;
    border-radius: 0.65rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: opacity 0.2s, transform 0.1s;
}

.eco-login-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.eco-login-btn:active {
    transform: translateY(0);
}

/* Payment option cards */
.eco-payment-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(46, 212, 168, 0.04);
    border: 1px solid rgba(46, 212, 168, 0.15);
    border-radius: 0.65rem;
    padding: 0.85rem 1rem;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    user-select: none;
}

.eco-payment-option:hover {
    background: rgba(46, 212, 168, 0.08);
    border-color: rgba(46, 212, 168, 0.3);
}

.eco-payment-label {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.eco-payment-check {
    color: #2ED4A8;
    font-size: 1rem;
    font-weight: 700;
    transition: opacity 0.15s;
}

/* Divider */
.eco-divider-or {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0 1.25rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

.eco-divider-or::before,
.eco-divider-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

/* Social buttons */
.eco-social-buttons {
    display: flex;
    gap: 0.75rem;
}

.eco-social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 0.65rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a2e24;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.eco-social-btn:hover {
    background: #fff;
    transform: translateY(-1px);
}

/* Register link */
.eco-login-register {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.eco-register-link {
    font-weight: 700;
    color: #2ED4A8;
    text-decoration: none;
    transition: opacity 0.2s;
}

.eco-register-link:hover {
    opacity: 0.8;
    color: #2ED4A8;
}

@media (max-width: 480px) {
    .eco-login-card {
        padding: 1.5rem 1.25rem;
    }

    .eco-login-title {
        font-size: 1.6rem;
    }
}

/* ===== Cadastro Confirmacao ===== */
.eco-confirmacao-card {
    width: 100%;
    max-width: 460px;
    background: rgba(220, 235, 228, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(8px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.eco-confirmacao-icon {
    width: 88px;
    height: 88px;
    background: rgba(46, 212, 168, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.eco-confirmacao-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
}

.eco-confirmacao-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.96rem;
    margin: 0;
    line-height: 1.6;
}

.eco-confirmacao-email {
    font-weight: 700;
    color: #2ED4A8;
    font-size: 1rem;
    margin: 0;
    word-break: break-all;
}

.eco-confirmacao-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0.5rem;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

.eco-confirmacao-btn {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(90deg, #2ED4A8 0%, #1BA87E 100%);
    border-radius: 0.65rem;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.1s;
}

.eco-confirmacao-btn:hover {
    opacity: 0.9;
    color: #fff;
    transform: translateY(-1px);
}

/* ===== Confirmar Email - variantes ===== */
.eco-confirmacao-icon--success {
    background: rgba(46, 212, 168, 0.12);
}

.eco-confirmacao-icon--error {
    background: rgba(245, 101, 101, 0.12);
}

.eco-confirmacao-card--error {
    border-color: rgba(245, 101, 101, 0.25);
}

.eco-confirmacao-title--error {
    color: #f56565;
}

.eco-highlight {
    color: #2ED4A8;
    font-weight: 700;
}

.eco-confirmacao-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    align-items: center;
    margin-top: 0.75rem;
}

.eco-confirmacao-btn-outline {
    display: inline-block;
    padding: 0.7rem 2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.65rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.eco-confirmacao-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

/* ===== User Menu (navbar) ===== */
.eco-user-menu {
    display: inline-flex;
    align-items: center;
}

.eco-user-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 0.35rem 0.85rem 0.35rem 0.4rem;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.eco-user-btn:hover,
.eco-user-btn.show {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.eco-user-btn::after {
    display: none; /* remove bootstrap caret padrão */
}

.eco-user-avatar {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #2ED4A8 0%, #1BA87E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eco-user-name {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.eco-user-dropdown {
    min-width: 160px;
    background: #1c2e23;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.4rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    margin-top: 0.5rem !important;
}

.eco-logout-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.6rem 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.eco-logout-btn:hover {
    color: #f56565;
    background: rgba(245, 101, 101, 0.08);
}

/* ===== EscolhaTipo ===== */
.eco-escolha-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 8px;
}

.eco-escolha-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #1c251f;
    border: 1px solid rgba(46, 212, 168, 0.15);
    border-radius: 16px;
    padding: 36px 28px;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.eco-escolha-card:hover {
    border-color: #2ED4A8;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(46, 212, 168, 0.12);
    text-decoration: none;
}

.eco-escolha-icon {
    background: rgba(46, 212, 168, 0.1);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eco-escolha-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.eco-escolha-desc {
    color: #a8c5b0;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 24px;
    flex: 1;
}

.eco-escolha-cta {
    color: #2ED4A8;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: auto;
}

@media (max-width: 600px) {
    .eco-escolha-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Questionario ===== */
.eco-q-section-heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2ED4A8;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(46, 212, 168, 0.18);
}

.eco-required {
    color: #f56565;
}

.eco-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid transparent;
    border-radius: 0.65rem;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    color: #1a2e24;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232ED4A8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    cursor: pointer;
    transition: border-color 0.2s;
    outline: none;
}

.eco-select:focus {
    border-color: #2ED4A8;
}

.eco-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid transparent;
    border-radius: 0.65rem;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    color: #1a2e24;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.eco-input:focus {
    border-color: #2ED4A8;
}

.eco-input::placeholder {
    color: #9ab3a0;
}

.eco-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid transparent;
    border-radius: 0.65rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: #1a2e24;
    resize: vertical;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.eco-textarea:focus {
    border-color: #2ED4A8;
}

.eco-textarea::placeholder {
    color: #9aa8a2;
}

/* Toggle switch rows */
.eco-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 0.65rem;
    margin-bottom: 0.6rem;
    gap: 16px;
}

.eco-toggle-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.eco-toggle-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
}

.eco-toggle-hint {
    font-size: 0.78rem;
    color: #6b8a75;
}

.eco-toggle-switch {
    position: relative;
    flex-shrink: 0;
    width: 44px;
    height: 24px;
    cursor: pointer;
    margin: 0;
}

.eco-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.eco-toggle-track {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 999px;
    transition: background 0.2s;
}

.eco-toggle-track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
}

.eco-toggle-switch input:checked + .eco-toggle-track {
    background: #2ED4A8;
}

.eco-toggle-switch input:checked + .eco-toggle-track::after {
    transform: translateX(20px);
}