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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* ===== DESIGN TOKENS ===== */
:root {
  --primary: #A72B18;
    --primary-dark: #1a2033;
  --primary-light: #e1c5c5ff;
    --primary-faint:  rgba(139, 30, 30, 0.08);
    --hero-gradient:  linear-gradient(160deg, #0c0f43 0%, #151b75 45%, #6c6dc9 100%);

  --bg-white:       #ffffff;
  --bg-muted:       #f2f4f7;
  --bg-card-alt:    #fbfbff;
  --text:           #2c2c2d;
  --text-muted:     #494949;
  --white:          #ffffff;
  --radius:         8px;
  --shadow:         0 2px 16px rgba(139, 30, 30, 0.08);
  --shadow-lg:      0 6px 32px rgba(139, 30, 30, 0.14);


    --secondary: #047857;
    --secondary-light: #10b981;
    --accent: #f97316;
    --accent-light: #fb923c;
    --background: #ffffff;
    --foreground: #1f2937;
    --muted: #f3f4f6;
    --border: #d5c8c8ff;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.15;
  font-weight: 700;
}

p {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.55;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 30, 30, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.875rem;
}

/* ===== SECTION COMMONS ===== */
section {
  padding: 88px 0;
}

.section-muted {
  background: var(--bg-muted);
}

.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered p {
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  color: var(--text);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

  .info-card {
    margin-top: 20px;
    padding: 24px;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
  }

  .info-card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
  }
  
  .info-card p:last-child {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
  }
/* .border-slate-200{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity,1))} */

  .border-slate-300 {
    --tw-border-opacity:1;
    border-color:rgb(220 190 190/var(--tw-border-opacity,1))
  }

  .bg-footer {
    background-color: #565050ff
  }

  .text-footer {
    color: #d9b1b1ff
  }

  /* ===== CONTACT ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
  
  .contact-info h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
  }
  
  .contact-info > p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    font-size: 0.95rem;
  }
  
  .contact-channels {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .contact-channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    transition: box-shadow 0.2s;
  }
  
  .contact-channel:hover {
    box-shadow: var(--shadow);
  }
  
  .channel-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
  }
  
  .channel-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text);
    margin-bottom: 2px;
  }
  
  .channel-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  
  .channel-link {
    margin-left: auto;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary);
    text-decoration: none;
  }
  
  .channel-link:hover {
    text-decoration: underline;
  }
  
  .trust-box {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
  }
  
  .trust-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 8px;
  }
  
  .trust-box p:last-child {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
  }
  
  /* ===== FORM ===== */
  .form-card {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
  }
  
  .form-card h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
  }
  
  .form-sub {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
  }
  
  label {
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    letter-spacing: 0.01em;
  }
  
  input,
  textarea,
  select {
    padding: 10px 13px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
  }
  
  input:focus,
  textarea:focus,
  select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 30, 30, 0.1);
  }
  
  textarea {
    resize: vertical;
    min-height: 90px;
  }
  
  .form-submit {
    width: 100%;
    margin-top: 6px;
  }
  
  .form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 10px;
  }
  
  /* ===== TOAST NOTIFICATION ===== */
  .toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: #047857; /* Verde sucesso */
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 360px;
    white-space: pre-wrap;
    line-height: 1.5;
  }
  
  .toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .toast.error {
    background: #b42318; /* Vermelho erro */
  }
  
  /* ===== RESULTS SECTION REWRITE ===== */
  #resultados {
    background-color: #f4ebea;
  }

  #resultados .result-card {
    background: #ffffff;
    border-radius: 0.7rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  #resultados h3 {
    color: #A72B18;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }

  #resultados .card-description {
    color: #494949;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  #resultados ul {
    margin-top: auto;
  }

  #resultados li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #494949;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  #resultados li .dot {
    margin-top: 0.5rem;
    height: 4px;
    width: 4px;
    flex-shrink: 0;
    border-radius: 9999px;
    background-color: #94a3b8;
  }

  #resultados .section-footer {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(163, 116, 116, 0.2);
  }

  #resultados .section-footer p {
    color: #494949;
    font-weight: 500;
    font-style: italic;
    opacity: 0.8;
    line-height: 1.5;
  }

  /* ===== VALIDACAO SECTION  ===== */
  #validacao .section-description-alt {
    font-family: 'Montserrat', sans-serif;
    color: #494949;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 4rem;
    opacity: 0.85;
  }

  #validacao .testimonial-card {
    background-color: #f4ebea;
    border-left: 6px solid #A72B18;
    border-radius: 8px;
    padding: 32px 24px;
    display: flex;
    align-items: center;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  #validacao .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }

  #validacao .testimonial-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #494949;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
  }
  
    /* ===== REUSABLE DESIGN SYSTEM (FOR RESULTS, VALIDATION, ABOUT) ===== */
  .bg-soft-bege {
    background-color: #f4ebea !important;
  }

  .title-serif-vinho {
    font-family: Georgia, 'Times New Roman', serif !important;
    color: #A72B18 !important;
    font-size: clamp(2.2rem, 5vw, 3.2rem) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 2rem;
  }

  .desc-text {
    font-family: 'Montserrat', sans-serif !important;
    color: #494949 !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    opacity: 0.85;
  }

  .card-white {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 40px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: none !important;
  }

  .card-vinho-border {
    background-color: #f4ebea !important;
    border-left: 6px solid #A72B18 !important;
    border-radius: 8px !important;
    padding: 32px 24px !important;
    display: flex;
    align-items: center;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .card-vinho-border:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }

  .text-vinho {
    color: #A72B18 !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.5rem;
    font-weight: 600;
  }

    /* ===== CTA SECTION RESTORED ===== */
  .cta-section {
    background-color: #A72B18;
    padding: 100px 24px;
    text-align: center;
  }

  .cta-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .cta-title {
    font-family: 'Montserrat', serif;
    color: #ffffff;
    font-size: clamp(1.7rem, 4vw, 2.3rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
  }

  .cta-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-button-wrapper {
    margin-bottom: 3rem;
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #A72B18;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    padding: 30px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .cta-arrow {
    width: 20px;
    height: 20px;
  }

  .cta-footer-text {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
  }
