/* ===========================================
   SECTOR3 LANDING PAGE - CSS PURO PARA WORDPRESS
   =========================================== */

/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --color-background: hsl(210, 20%, 98%);
    --color-foreground: hsl(220, 25%, 15%);
    --color-card: hsl(0, 0%, 100%);
    --color-primary: hsl(172, 66%, 35%);
    --color-primary-light: hsl(172, 50%, 94%);
    --color-primary-dark: hsl(172, 66%, 28%);
    --color-accent: hsl(16, 85%, 55%);
    --color-accent-dark: hsl(16, 90%, 50%);
    --color-muted: hsl(210, 15%, 93%);
    --color-muted-foreground: hsl(220, 10%, 45%);
    --color-border: hsl(210, 20%, 90%);
	--color-brown: #8a5b2a;            /* castanho do branding */
--color-brown-soft: rgba(138, 91, 42, 0.12);

    
    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding-y: 6rem;
    --section-padding-x: 1.5rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px -4px hsla(220, 25%, 15%, 0.08);
    --shadow-card: 0 8px 30px -8px hsla(220, 25%, 15%, 0.1);
    --shadow-cta: 0 8px 24px -4px hsla(16, 85%, 55%, 0.35);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-foreground);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--section-padding-x);
}

/* ===== Section Utilities ===== */
.section-padding {
    padding: var(--section-padding-y) var(--section-padding-x);
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-foreground);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-muted-foreground);
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-family);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-cta {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    box-shadow: var(--shadow-cta);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px hsla(16, 85%, 55%, 0.45);
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-full {
    width: 100%;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsla(210, 20%, 98%, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid hsla(210, 20%, 90%, 0.5);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    padding-bottom: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: calc(var(--section-padding-y) + 4rem) var(--section-padding-x) var(--section-padding-y);
    background: linear-gradient(135deg, 
        hsla(172, 66%, 35%, 0.08) 0%, 
        var(--color-background) 50%, 
        hsla(16, 85%, 55%, 0.05) 100%
    );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-content h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

.text-primary {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--color-muted-foreground);
    max-width: 36rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.hero-image-bg-1,
.hero-image-bg-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    z-index: -1;
}

.hero-image-bg-1 {
    top: -1rem;
    right: -1rem;
    background: hsla(172, 66%, 35%, 0.1);
}

.hero-image-bg-2 {
    top: -2rem;
    right: -2rem;
    background: hsla(16, 85%, 55%, 0.05);
}

/* ===== For You Section ===== */
.for-you {
    background: var(--color-card);
}

.for-you-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.for-you-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.for-you-item:hover {
    border-color: hsla(172, 66%, 35%, 0.3);
    box-shadow: var(--shadow-soft);
}

.for-you-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    border-radius: var(--radius-lg);
    color: var(--color-primary);
}

.for-you-item p {
    font-size: 1.125rem;
    font-weight: 500;
    padding-top: 0.5rem;
}

/* ===== Benefits Section ===== */
.benefits {
    background: var(--color-background);
}

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

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

.benefit-card {
    padding: 2rem;
    background: linear-gradient(180deg, var(--color-card) 0%, hsla(172, 50%, 99%, 1) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.benefit-card:hover {
    border-color: hsla(172, 66%, 35%, 0.3);
    box-shadow: var(--shadow-card);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(172, 66%, 35%, 0.1);
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    transition: background var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
    background: hsla(172, 66%, 35%, 0.2);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 1.125rem;
    color: var(--color-muted-foreground);
    line-height: 1.6;
}

/* ===== How It Works Section ===== */
.how-it-works {
    background: hsla(172, 66%, 35%, 0.05);
}

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

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps-grid::before {
        content: '';
        position: absolute;
        top: 3rem;
        left: 10%;
        right: 10%;
        height: 2px;
        background: var(--color-border);
        z-index: 0;
    }
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon-wrapper {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 12px hsla(16, 85%, 55%, 0.3);
    z-index: 2;
}

.step-icon {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-card);
    border: 4px solid var(--color-background);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-card);
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 1.125rem;
    color: var(--color-muted-foreground);
}

/* ===== Social Proof Section ===== */
.social-proof {
    background: var(--color-card);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

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

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

.logo-placeholder {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: hsla(220, 10%, 45%, 0.5);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.logo-placeholder:hover {
    border-color: hsla(172, 66%, 35%, 0.3);
    box-shadow: var(--shadow-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-border);
}




.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-muted-foreground);
}

/* ===== Contact Form Section ===== */
.contact-form {
    background: var(--color-background);
}

.form-wrapper {
    max-width: 40rem;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-header p {
    font-size: 1.125rem;
    color: var(--color-muted-foreground);
}

.contact-form-inner {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
    .contact-form-inner {
        padding: 2.5rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-foreground);
}

.required {
    color: var(--color-accent);
}

.optional {
    color: var(--color-muted-foreground);
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-family);
    font-size: 1rem;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-muted-foreground);
}

.form-group textarea {
    min-height: 7.5rem;
    resize: vertical;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    margin-top: 1rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-foreground);
    color: white;
    padding: 3rem var(--section-padding-x);
}

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

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: hsla(0, 0%, 100%, 0.7);
    line-height: 1.7;
}

.footer-contact h4,
.footer-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-contact ul,
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li,
.footer-links li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsla(0, 0%, 100%, 0.7);
}

.footer-contact a,
.footer-links a {
    color: hsla(0, 0%, 100%, 0.7);
    transition: color var(--transition-fast);
}

.footer-contact a:hover,
.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    text-align: center;
    color: hsla(0, 0%, 100%, 0.5);
    font-size: 0.875rem;
}
/* Footer personalizado para ficar igual ao Lovable */
.site-footer, footer {
    background: #0E1E2F !important;
    color: #d9e2ec !important;
    
}

.site-footer a, footer a {
    color: #aac8e4 !important;
    text-decoration: none;
    transition: 0.2s;
}

.site-footer a:hover, footer a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}


/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-content {
    animation: fadeInUp 0.6s ease-out;
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 767px) {
    :root {
        --section-padding-y: 4rem;
    }
    
    .hero {
        min-height: auto;
        padding-top: 6rem;
    }
    
    .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
}


.logo-img {
    height: 4rem;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Caixa do formulário */
.wpcf7-form, 
.wpforms-form {
    max-width: 500px !important;
    margin: 0 auto !important;
}

/* Labels */
.wpcf7-form label,
.wpforms-field-label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #0E1E2F;
    font-size: 15px;
}

/* Inputs */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form textarea {
    width: 100%;
    border: 1px solid #d6dce2;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
    background: #fff;
    box-shadow: none;
    transition: border-color 0.2s ease;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpforms-form input:focus,
.wpforms-form textarea:focus {
    border-color: #1f8b63;
    outline: none;
}

/* Botão */
.wpcf7-submit,
.wpforms-submit {
    background: linear-gradient(90deg, #ff7a4f, #ff5a3c);
    color: #fff !important;
    border: none;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.25s ease;
}

.wpcf7-submit:hover,
.wpforms-submit:hover {
    opacity: 0.85;
}

/* Espaçamentos */
.form-section {
    margin-top: 40px;
}

/* Títulos */
h1, h2, h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

/* Secções */
section { padding: 80px 0; }


/* Hero */
.hero-text {
    padding-top: 100px;
}

/* Logos */
.logos-grid img {
    max-height: 48px;
    margin: 10px 15px;
    opacity: 0.7;
    transition: 0.2s;
}

.logos-grid img:hover {
    opacity: 1;
    filter: none;
}


/* ===== WPForms – overrides para a landing Sector3 ===== */

/* Container do formulário centrado e com card */
.form-wrapper .wpforms-container-full {
    max-width: 40rem;
    margin: 0 auto;
}

.form-wrapper .contact-form-inner {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-card);
}

/* Cada campo com espaçamento consistente */
.form-wrapper .wpforms-field {
    margin-bottom: 1.25rem;
}

/* Forçar campos a ocupar 100% da largura (mata o “medium/small”) */
.form-wrapper .wpforms-field-medium,
.form-wrapper .wpforms-field-large,
.form-wrapper .wpforms-field-small {
    max-width: 100% !important;
    width: 100% !important;
}

/* Inputs e textarea */
.form-wrapper .wpforms-form input[type="text"],
.form-wrapper .wpforms-form input[type="email"],
.form-wrapper .wpforms-form textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid #d6dce2;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
    background: #fff;
    box-shadow: none;
    transition: border-color 0.2s ease;
}

.form-wrapper .wpforms-form input[type="text"]:focus,
.form-wrapper .wpforms-form input[type="email"]:focus,
.form-wrapper .wpforms-form textarea:focus {
    border-color: #1f8b63;
    outline: none;
}

/* Labels */
.form-wrapper .wpforms-field-label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #0E1E2F;
    font-size: 15px;
}

/* Botão de envio */
.form-wrapper .wpforms-submit-container {
    margin-top: 0.5rem;
}

.form-wrapper .wpforms-submit {
    background: linear-gradient(90deg, #ff7a4f, #ff5a3c);
    color: #fff !important;
    border: none;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.25s ease, transform 0.15s ease;
}

.form-wrapper .wpforms-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}


/* ===== Botões – corrigir hover ===== */
.btn,
.btn-cta,
.btn-cta:link,
.btn-cta:visited {
    text-decoration: none !important;
    color: #ffffff !important;
}

.btn:hover,
.btn-cta:hover {
    text-decoration: none !important;
    color: #ffffff !important;
}

/* ===== Header Logo ===== */
.logo img,
.logo-img-header {
    height: 38px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo img,
    .logo-img-header {
        height: 32px;
    }
}
.cta-inline {
  margin-top: 2.5rem;
  text-align: center;
}
.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.members-link {
  margin-top: 1.5rem;
  text-align: center;
  font-weight: 600;
}
.members-link a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ===== Modal Testemunhos (Sector3) ===== */
.logo-trigger {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 100%;
}

.logo-trigger:focus-visible {
  outline: 3px solid rgba(255, 122, 79, 0.35);
  border-radius: 12px;
}

.s3-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.s3-modal.is-open {
  display: block;
}

.s3-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 30, 47, 0.55);
  backdrop-filter: blur(4px);
}

.s3-modal__panel {
  position: relative;
  max-width: 720px;
  margin: 10vh auto 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  padding: 28px 24px;
  width: calc(100% - 32px);
  animation: s3ModalIn 180ms ease-out;
}

@keyframes s3ModalIn {
  from { transform: translateY(8px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.s3-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(14, 30, 47, 0.06);
  color: #0E1E2F;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.s3-modal__close:hover {
  background: rgba(14, 30, 47, 0.10);
}

.s3-modal__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
  color: #0E1E2F;
}

.s3-modal__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(14, 30, 47, 0.85);
  white-space: pre-line; /* permite \n no texto */
}


/* Thank you floating box */
.s3-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 320px;
  background: #ffffff;
  border-left: 6px solid #f26a2e;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  padding: 16px 18px;
  border-radius: 8px;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 9999;
}

.s3-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-cta{
  display:flex;
  gap: 0.75rem;
  align-items:center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.btn-outline{
  background: #fff;
  color: var(--color-brown) !important;
  border: 1.5px solid var(--color-brown);
  box-shadow: none;
}

.btn-outline:hover{
  background: var(--color-brown-soft);
  border-color: var(--color-brown);
  color: var(--color-brown) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.btn-outline:focus{
  outline: none;
  border-color: var(--color-brown);
  box-shadow: 0 0 0 4px rgba(138, 91, 42, 0.18);
}


.btn-outline.btn-xl{
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

@media (max-width: 520px){
  .hero-cta .btn{
    width: 100%;
  }
}

.hero-cta .btn{
  min-height: 52px;
}


.faq{
  background: var(--color-card);
}

.faq-list{
  max-width: 48rem;
  margin: 0 auto;
  display:flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item{
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-background);
  padding: 0.25rem 1rem;
  box-shadow: none;
}

.faq-item[open]{
  border-color: hsla(172, 66%, 35%, 0.3);
  box-shadow: var(--shadow-soft);
}

.faq-item summary{
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--color-primary);
}

.faq-item[open] summary::after{
  content: "–";
}

.faq-content{
  padding: 0 0 1rem 0;
  color: var(--color-muted-foreground);
}

.hero-price{
  margin: .25rem 0 1rem;
  font-size: .95rem;
  color: var(--color-muted-foreground);
}

.hero-price a{
  color: var(--color-accent);
  text-decoration: underline;
}

.btn-outline:link,
.btn-outline:visited{
  color: var(--color-brown) !important;
}

.hero-proof{
  font-size: .95rem;
  color: var(--color-muted-foreground);
  margin-top: .25rem;
}

