.elementor-30 .elementor-element.elementor-element-3379a00{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* Casa Organizada App - Estilos Customizados
   Paleta: Verde Menta, Bege claro, Branco
   Tom: leve, acolhedor, elegante
*/

:root {
  /* Cores Base */
  --co-background: hsl(40, 40%, 96%);
  --co-foreground: hsl(150, 15%, 18%);
  --co-white: hsl(0, 0%, 100%);
  
  /* Marca - Verde Menta */
  --co-primary: hsl(150, 30%, 55%);
  --co-primary-light: hsl(150, 35%, 88%);
  --co-primary-deep: hsl(155, 30%, 35%);
  --co-primary-hover: hsl(155, 35%, 42%);
  
  /* Secundárias */
  --co-muted: hsl(40, 30%, 92%);
  --co-muted-text: hsl(150, 8%, 40%);
  --co-border: hsl(40, 25%, 85%);
  
  /* Tipografia */
  --co-font-serif: 'Fraunces', Georgia, serif;
  --co-font-sans: 'Inter', system-ui, sans-serif;
  
  /* Gradientes */
  --co-gradient-soft: linear-gradient(180deg, hsl(40, 40%, 98%) 0%, hsl(40, 40%, 94%) 100%);
  --co-gradient-mint: linear-gradient(135deg, hsl(150, 35%, 92%) 0%, hsl(150, 30%, 80%) 100%);
  --co-gradient-cta: linear-gradient(135deg, hsl(150, 32%, 52%) 0%, hsl(155, 35%, 42%) 100%);
  
  /* Sombras */
  --co-shadow-soft: 0 4px 24px -8px rgba(75, 150, 120, 0.12);
  --co-shadow-card: 0 8px 40px -12px rgba(60, 130, 100, 0.10);
  --co-shadow-cta: 0 12px 32px -8px rgba(90, 160, 130, 0.35);
  
  /* Transições */
  --co-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--co-font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--co-foreground);
  background-color: var(--co-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--co-font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--co-primary-deep);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 2rem); }

p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--co-muted-text);
}

/* Container */
.co-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Seções */
.co-section {
  padding: 5rem 0;
}

.co-section-alt {
  background: var(--co-white);
}

.co-section-gradient {
  background: var(--co-gradient-soft);
}

.co-section-mint {
  background: var(--co-gradient-mint);
}

/* Botões */
.co-btn {
  font-family: var(--co-font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1.25rem 3rem;
  border-radius: 3rem;
  border: none;
  cursor: pointer;
  transition: var(--co-transition);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.co-btn-primary {
  background: var(--co-gradient-cta);
  color: var(--co-white);
  box-shadow: var(--co-shadow-cta);
}

.co-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -8px rgba(90, 160, 130, 0.45);
}

.co-btn-secondary {
  background: var(--co-white);
  color: var(--co-primary);
  border: 2px solid var(--co-primary);
}

.co-btn-secondary:hover {
  background: var(--co-primary-light);
}

/* Cards */
.co-card {
  background: var(--co-white);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--co-shadow-card);
  transition: var(--co-transition);
}

.co-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px -12px rgba(60, 130, 100, 0.15);
}

/* Badge */
.co-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--co-primary-light);
  color: var(--co-primary-deep);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Destaques de Texto */
.co-highlight {
  color: var(--co-primary);
  font-weight: 600;
}

.co-highlight-bg {
  background: linear-gradient(180deg, transparent 60%, var(--co-primary-light) 60%);
  padding: 0 0.25rem;
}

/* Ícones & Checkmarks */
.co-checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--co-primary);
  color: var(--co-white);
  border-radius: 50%;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Imagens */
.co-img {
  max-width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: var(--co-shadow-card);
}

/* Animações */
@keyframes co-fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.co-fade-up {
  animation: co-fadeUp 0.8s ease-out both;
}

/* Grid & Flex Utilities */
.co-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.co-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.co-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.co-flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Espaçamentos */
.co-mt-8 { margin-top: 2rem; }
.co-mt-12 { margin-top: 3rem; }
.co-mb-8 { margin-top: 2rem; }
.co-mb-12 { margin-bottom: 3rem; }

/* Responsive */
@media (max-width: 768px) {
  .co-section {
    padding: 3rem 0;
  }
  
  .co-btn {
    width: 100%;
    padding: 1rem 2rem;
  }
  
  .co-card {
    padding: 1.5rem;
  }
}/* End custom CSS */