/*
Theme Name: Next4U Consultoria
Theme URI: https://next4u.com.br
Author: Next4U
Author URI: https://next4u.com.br
Description: Tema personalizado para landing page de Consultoria Comercial Next4U
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: next4u
*/

/* ========================================
   DESIGN SYSTEM - Next4U
   ======================================== */

:root {
  /* Colors - HSL Format */
  --primary: 203 100% 17%;  /* #003255 */
  --primary-hover: 203 100% 24%;
  --secondary: 38 96% 62%;  /* #fbb238 */
  --secondary-hover: 38 96% 55%;
  
  --background: 0 0% 100%;
  --foreground: 222 47% 11%;
  
  --card: 0 0% 100%;
  --card-foreground: 222 47% 11%;
  
  --muted: 210 40% 96%;
  --muted-foreground: 215 16% 47%;
  
  --border: 214 32% 91%;
  
  /* Shadows */
  --shadow-elevated: 0 10px 30px -10px hsl(203 100% 17% / 0.15);
  --shadow-glow: 0 0 40px hsl(38 96% 62% / 0.3);
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   BASE STYLES
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-hover)) 100%);
  color: white;
  padding: 3rem 1rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  color: hsl(var(--secondary));
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 0.75rem;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--secondary));
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.9;
}

.btn-primary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--primary));
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  box-shadow: var(--shadow-elevated);
}

.btn-primary:hover {
  background-color: hsl(var(--secondary-hover));
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.trust-badge {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.9;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: 4rem 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

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

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

.bg-primary {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-hover)) 100%);
  color: white;
}

.bg-primary .section-title {
  color: white;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.whatsapp-testimonial {
  background-color: hsl(var(--card));
  border-radius: 0.5rem;
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  transition: var(--transition-smooth);
}

.whatsapp-testimonial:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

.whatsapp-header {
  background-color: #075E54;
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whatsapp-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.whatsapp-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.whatsapp-company {
  font-size: 0.75rem;
  opacity: 0.8;
}

.whatsapp-body {
  padding: 1rem;
}

.whatsapp-message {
  background-color: #DCF8C6;
  border-radius: 0.5rem;
  border-top-left-radius: 0;
  padding: 1rem;
  position: relative;
  margin-bottom: 1rem;
}

.whatsapp-message p {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.5;
  white-space: pre-line;
  margin-bottom: 0.5rem;
}

.whatsapp-timestamp {
  font-size: 0.75rem;
  color: #666;
  text-align: right;
}

.whatsapp-highlight {
  background-color: hsl(var(--secondary) / 0.1);
  border-left: 4px solid hsl(var(--secondary));
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1rem;
  margin-bottom: 1rem;
}

.whatsapp-highlight p {
  font-size: 0.875rem;
  font-weight: 600;
  font-style: italic;
  color: hsl(var(--foreground));
}

.testimonial-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.testimonial-badge span {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  padding: 0 0.5rem;
}

.testimonial-badge::before,
.testimonial-badge::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: hsl(var(--border));
}

/* ========================================
   METHODOLOGY
   ======================================== */

.methodology-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.methodology-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: hsl(var(--card));
  border-radius: 0.5rem;
  box-shadow: var(--shadow-elevated);
  border-left: 4px solid hsl(var(--secondary));
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: hsl(var(--secondary));
  line-height: 1;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.step-content p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ========================================
   DIFFERENTIALS
   ======================================== */

.differentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.differential-card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-elevated);
}

.differential-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.differential-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.differential-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* ========================================
   RESULTS
   ======================================== */

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.result-card {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: hsl(var(--secondary));
}

.result-value {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: hsl(var(--secondary));
}

.result-label {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* ========================================
   FOR WHOM
   ======================================== */

.forwhom-list {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.forwhom-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: hsl(var(--card));
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-elevated);
}

.forwhom-item::before {
  content: '✅';
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-box {
  background-color: hsl(var(--secondary) / 0.1);
  border: 2px solid hsl(var(--secondary));
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-top: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-box p {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: hsl(var(--foreground));
}

/* ========================================
   FAQ
   ======================================== */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: hsl(var(--muted));
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-form-section {
  background: linear-gradient(135deg, hsl(var(--secondary)) 0%, hsl(var(--secondary-hover)) 100%);
  padding: 4rem 1rem;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-elevated);
}

.contact-form-container h2 {
  color: hsl(var(--primary));
  text-align: center;
  margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  background-color: hsl(var(--primary));
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.form-submit:hover {
  background-color: hsl(var(--primary-hover));
  transform: translateY(-2px);
}

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

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.trust-badges span {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background-color: hsl(var(--primary));
  color: white;
  padding: 3rem 1rem 1.5rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: hsl(var(--secondary));
}

.footer-info {
  margin-bottom: 2rem;
}

.footer-info p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer-social a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  opacity: 1;
  color: hsl(var(--secondary));
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .differentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .results-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .section {
    padding: 6rem 1rem;
  }
  
  .contact-form-container {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
}