﻿/* ===== 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;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  background-color: #fff;
}

/* ===== 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 {
  /*background: #fff;*/
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  position: relative;
}

.eco-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  box-shadow: 
    inset 60px 0 40px -40px rgba(0, 0, 0, 0.15),
    inset -60px 0 40px -40px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.eco-header .navbar {
  position: relative;
  z-index: 2;
}
}

.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: #333 !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--eco-green-secondary) !important;
}

.eco-btn-primary {
  background: linear-gradient(to bottom, 
    var(--eco-green-secondary) 0%, 
    var(--eco-green-primary) 50%, 
    #1a4028 100%);
  border: none;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease;
  color: white !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 
    0 3px 0 #1a4028,
    0 4px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  cursor: pointer;
}

.eco-btn-primary:hover {
  background: linear-gradient(to bottom, 
    #5da872 0%, 
    var(--eco-green-secondary) 50%, 
    var(--eco-green-primary) 100%);
  transform: translateY(-1px);
  box-shadow: 
    0 4px 0 #1a4028,
    0 6px 12px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.eco-btn-primary:active {
  transform: translateY(1px);
  box-shadow: 
    0 2px 0 #1a4028,
    0 3px 6px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ===== Hero Section ===== */
.eco-hero {
    /*background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    padding: 7rem 0;
    text-align: center;
    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;
        box-shadow: inset 60px 0 40px -40px rgba(0, 0, 0, 0.15), inset -60px 0 40px -40px rgba(0, 0, 0, 0.15);
        z-index: 1;
    }

.eco-leaf-icon {
  margin: 0 auto 2rem;
  animation: float 3s ease-in-out infinite;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: default;
}

@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: var(--eco-green-primary);
    margin-bottom: 1rem;
    font-style: italic;
}

.eco-hero-subtitle {
    font-family: 'Fontin-Sans-CR-Italic';
    font-size: 1.5rem;
    color: black;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.eco-btn-cta {
  background: linear-gradient(to bottom, 
    var(--eco-green-secondary) 0%, 
    var(--eco-green-primary) 50%, 
    #1a4028 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;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 
    0 4px 0 #1a4028,
    0 6px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  cursor: pointer;
}

.eco-btn-cta:hover {
  background: linear-gradient(to bottom, 
    #5da872 0%, 
    var(--eco-green-secondary) 50%, 
    var(--eco-green-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 0 #1a4028,
    0 8px 16px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.eco-btn-cta:active {
  transform: translateY(2px);
  box-shadow: 
    0 2px 0 #1a4028,
    0 3px 6px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.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;
    background: #fff;
}

    .eco-how-it-works h2 {
        font-family: 'Fontin-Sans-CR-Italic';
        font-size: 2rem;
        font-weight: 700;
        color: black;
        margin-bottom: 3rem;
    }

.eco-step {
  position: relative;
  padding: 2rem 1rem;
}

.eco-step-icon {
  margin-bottom: 1rem;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: default;
}

.eco-step h4 {
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.eco-step p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.eco-arrow {
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--eco-green-light);
  font-weight: 300;
}

@media (max-width: 767px) {
  .eco-arrow {
    display: none;
  }

  .eco-step {
    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;
}

.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;
}