/*
Theme Name: Adote uma Caneca
Theme URI: https://adoptacaneca.com
Description: Tema WordPress profissional para landing page de vendas sustentáveis - Adote uma Caneca
Version: 1.0.0
Author: Manus AI
Author URI: https://manus.im
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adote-uma-caneca
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
*/

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3d4a47;
  background-color: #fafaf9;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.75rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #2d7a4a;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1f5630;
}

/* Container */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1280px;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #2d7a4a;
  color: white;
}

.btn-primary:hover {
  background-color: #1f5630;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 122, 74, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #2d7a4a;
  border: 2px solid #c5e7d8;
}

.btn-secondary:hover {
  background-color: #f0f9f6;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Navegação */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  z-index: 50;
  border-bottom: 1px solid #e0f2e9;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 1rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d7a4a;
  text-decoration: none;
}

.navbar-brand img {
  width: 1.75rem;
  height: 1.75rem;
}

.navbar-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar-menu a {
  font-size: 0.875rem;
  color: #3d4a47;
  transition: color 0.3s ease;
}

.navbar-menu a:hover {
  color: #2d7a4a;
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom, #ffffff, #f0f9f6, #ffffff);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(3rem);
  opacity: 0.3;
}

.hero::before {
  top: 2.5rem;
  right: 2.5rem;
  width: 18rem;
  height: 18rem;
  background-color: #c5e7d8;
}

.hero::after {
  bottom: 2.5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background-color: #b3d9e8;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 3rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #c5e7d8;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d7a4a;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7a77;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-image {
  margin-top: 4rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Seção Problema e Solução */
.problem-solution {
  padding: 5rem 1rem;
  background-color: rgba(255, 255, 255, 0.5);
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .problem-solution-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.problem-column,
.solution-column {
  space: 1.5rem;
}

.column-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.problem-badge {
  background-color: #fecaca;
  color: #b91c1c;
}

.solution-badge {
  background-color: #c5e7d8;
  color: #2d7a4a;
}

.column-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.column-description {
  font-size: 1.125rem;
  color: #6b7a77;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.feature-list svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.problem-list svg {
  color: #dc2626;
}

.solution-list svg {
  color: #2d7a4a;
}

/* Seção Coleções */
.collections {
  padding: 5rem 1rem;
}

.collections-header {
  text-align: center;
  margin-bottom: 4rem;
}

.collections-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.collections-subtitle {
  font-size: 1.25rem;
  color: #6b7a77;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .collections-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.collection-card {
  border-radius: 0.75rem;
  padding: 2rem;
  height: 16rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.collection-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #2d7a4a;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.collection-card:hover::before {
  opacity: 0.1;
}

.collection-card-content {
  position: relative;
  z-index: 10;
}

.collection-card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.collection-card-description {
  font-size: 0.875rem;
  color: #6b7a77;
}

.collections-cta {
  text-align: center;
}

/* Seção Impacto */
.impact {
  padding: 5rem 1rem;
  background: linear-gradient(to right, #f0f9f6, #f0f9f6);
}

.impact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.impact-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.impact-subtitle {
  font-size: 1.25rem;
  color: #6b7a77;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.impact-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .impact-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0f2e9;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  color: #2d7a4a;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 1.125rem;
  color: #6b7a77;
}

.impact-cta-box {
  background-color: white;
  border-radius: 0.75rem;
  padding: 3rem;
  border: 1px solid #e0f2e9;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.impact-cta-icon {
  width: 3rem;
  height: 3rem;
  color: #2d7a4a;
  flex-shrink: 0;
}

.impact-cta-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.impact-cta-content p {
  font-size: 1.125rem;
  color: #6b7a77;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Seção Como Funciona */
.how-it-works {
  padding: 5rem 1rem;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-it-works-title {
  font-size: 3rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  text-align: center;
}

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #2d7a4a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-description {
  color: #6b7a77;
}

/* CTA Final */
.final-cta {
  padding: 5rem 1rem;
  background: linear-gradient(to right, #2d7a4a, #1f5630);
  color: white;
  text-align: center;
}

.final-cta-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: white;
}

.final-cta-subtitle {
  font-size: 1.25rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.8;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .final-cta-buttons {
    flex-direction: row;
  }
}

.btn-white {
  background-color: white;
  color: #2d7a4a;
}

.btn-white:hover {
  background-color: #f0f9f6;
}

.btn-outline-white {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
  background-color: rgba(61, 74, 71, 0.05);
  border-top: 1px solid #e0f2e9;
  padding: 3rem 1rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  font-size: 0.875rem;
  color: #6b7a77;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #2d7a4a;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand img {
  width: 1.75rem;
  height: 1.75rem;
}

.footer-brand span {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2d7a4a;
}

.footer-description {
  font-size: 0.875rem;
  color: #6b7a77;
}

.footer-bottom {
  border-top: 1px solid #e0f2e9;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7a77;
}

/* Responsividade */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .collections-title,
  .impact-title,
  .how-it-works-title,
  .final-cta-title {
    font-size: 1.875rem;
  }
}

/* Utilitários */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.gap-4 {
  gap: 1rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

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