/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis CSS */
:root {
    --background: hsl(0, 0%, 97%);
    --foreground: hsl(207, 71%, 19%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(207, 71%, 19%);
    --primary: hsl(207, 71%, 19%);
    --primary-foreground: hsl(0, 0%, 98%);
    --secondary: hsl(207, 20%, 88%);
    --secondary-foreground: hsl(207, 71%, 19%);
    --muted: hsl(207, 20%, 88%);
    --muted-foreground: hsl(207, 20%, 45%);
    --border: hsl(207, 20%, 88%);
    --zumis-blue: hsl(207, 71%, 19%);
    --zumis-blue-light: hsl(207, 50%, 35%);
    --zumis-neutral: hsl(0, 0%, 97%);
    --gradient-primary: linear-gradient(135deg, var(--zumis-blue), var(--zumis-blue-light));
    --shadow-elegant: 0 10px 30px -10px hsla(207, 71%, 19%, 0.2);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hidden {
    display: none !important;
}

.text-primary {
    color: var(--primary);
}

.text-gradient {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.full-width {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elegant);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    min-height: 3.5rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: hsla(0, 0%, 97%, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-elegant);
    border-bottom: 1px solid var(--border);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo-icon {
    position: relative;
}

.logo-bars {
    display: flex;
    align-items: end;
    gap: 0.25rem;
}

.bar {
    width: 0.5rem;
    background: var(--primary);
    border-radius: 0.125rem;
}

.bar-1 { height: 1.5rem; }
.bar-2 { height: 2rem; }
.bar-3 { height: 2.5rem; }

.logo-circle {
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    width: 2rem;
    height: 2rem;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.6;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: -0.25rem;
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    color: var(--foreground);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 16rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-elegant);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--foreground);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dropdown-content a:hover {
    background: var(--muted);
}

/* Desktop CTA */
.desktop-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-menu {
    background: var(--background);
    border-top: 1px solid var(--border);
}

.mobile-menu-content {
    padding: 0.5rem 0.5rem 0.75rem;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem;
    background: none;
    border: none;
    color: var(--foreground);
    border-radius: 0.375rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mobile-nav-link:hover {
    color: var(--primary);
    background: var(--muted);
}

.mobile-cta {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--background), var(--zumis-neutral), var(--background));
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-size: cover;
    background-position: center;
    
}
.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-color: hsl(207, 71%, 19%); /* Apenas a cor */
    /* Remova ou comente a linha da imagem de fundo */
    /* background-image: url('src/assets/hero-background.jpg'); */
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    position: relative;
    z-index: 10;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(207, 71%, 19%, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-card {
    background: hsla(0, 0%, 100%, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 4rem;
    box-shadow: var(--shadow-elegant);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-title .title {
    font-weight: 600;
    color: var(--foreground);
}

.card-title .subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.results-overview {
    margin-bottom: 1.5rem;
}

.result-item {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.result-green {
    background: hsla(120, 100%, 97%, 1);
    border: 1px solid hsla(120, 60%, 80%, 1);
}

.result-blue {
    background: hsla(210, 100%, 97%, 1);
    border: 1px solid hsla(210, 60%, 80%, 1);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.result-header span:first-child {
    font-weight: 500;
}

.result-value {
    font-size: 1.125rem;
    font-weight: bold;
}

.result-green .result-value {
    color: hsla(120, 60%, 30%, 1);
}

.result-blue .result-value {
    color: hsla(210, 60%, 30%, 1);
}

.result-description {
    font-size: 0.75rem;
    opacity: 0.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature i {
    color: var(--primary);
    width: 1rem;
    height: 1rem;
}

.floating-element {
    position: absolute;
    border-radius: 1rem;
    background: var(--gradient-primary);
    opacity: 0.2;
    filter: blur(40px);
}

.floating-1 {
    top: -1.5rem;
    right: -1.5rem;
    width: 6rem;
    height: 6rem;
}

.floating-2 {
    bottom: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    opacity: 0.1;
    filter: blur(80px);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--background), hsla(0, 0%, 97%, 0.5), var(--background));
    position: relative;
    overflow: hidden;
}

.background-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(80px);
}

.bg-circle-1 {
    top: 25%;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
}

.bg-circle-2 {
    bottom: 25%;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: var(--zumis-blue-light);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(207, 71%, 19%, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    position: relative;
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
    overflow: hidden;
      width: 480px; /* ajuste conforme necessário */

}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 2rem;
  justify-content: center; /* ajuda a centralizar quando há menos colunas */
  margin-bottom: 4rem;
}

.service-card {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.services-grid {
  display: flex;
  justify-content: center;   /* centraliza horizontalmente */
  align-items: flex-start;
  flex-wrap: wrap;           /* quebra linha se tiver vários cards */
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  width: 480px;
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
  transition: var(--transition-smooth);
  overflow: hidden;
}


.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px hsla(207, 71%, 19%, 0.3);
}

.service-card.popular {
    border: 2px solid hsla(207, 71%, 19%, 0.2);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.service-card .card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.icon-primary { background: var(--gradient-primary); }
.icon-purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.icon-green { background: linear-gradient(135deg, #10b981, #059669); }

.service-icon i {
    width: 2rem;
    height: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.features {
    margin: 1.5rem 0;
}

.features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.features .feature i {
    color: var(--primary);
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* Services CTA */
.services-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--card), hsla(0, 0%, 100%, 0.5));
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: var(--shadow-elegant);
}

.cta-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--background);
}

.problems-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.problems-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.problems-list {
    margin-bottom: 2rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
    margin-bottom: 1rem;
}

.problem-item i {
    color: var(--primary);
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.problems-solution {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 2rem;
}

.benefits-content {
    margin-bottom: 4rem;
}

.benefits-title {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-card {
    background: var(--card);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px hsla(0, 0%, 0%, 0.1);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    box-shadow: var(--shadow-elegant);
}

.benefit-icon {
    padding: 1rem;
    background: hsla(207, 71%, 19%, 0.1);
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon {
    background: hsla(207, 71%, 19%, 0.2);
}

.benefit-icon i {
    color: var(--primary);
    width: 2rem;
    height: 2rem;
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.benefit-card p {
    color: var(--muted-foreground);
}

.benefits-cta {
    text-align: center;
    background: linear-gradient(135deg, hsla(207, 71%, 19%, 0.05), hsla(207, 50%, 35%, 0.05));
    border-radius: 1rem;
    padding: 3rem;
}

.benefits-cta .cta-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--foreground);
    font-weight: 500;
    margin-bottom: 2rem;
}

.cta-final {
    margin-top: 1rem;
}

.cta-question {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--zumis-neutral), var(--background));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--card);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px hsla(0, 0%, 0%, 0.1);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-elegant);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-filled {
    color: #fbbf24;
    fill: #fbbf24;
    width: 1.25rem;
    height: 1.25rem;
}

.testimonial-card blockquote {
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    color: var(--foreground);
}

.author-position {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.testimonials-cta {
    text-align: center;
}

.testimonials-cta .cta-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

.testimonials-cta .cta-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-card {
    background: var(--card);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-description {
    color: var(--muted-foreground);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--foreground);
}

.form-group input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    background: var(--background);
    color: var(--foreground);
    height: 3rem;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(207, 71%, 19%, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-header h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.info-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.contact-details {
    background: var(--card);
    border-radius: 0.375rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px hsla(0, 0%, 0%, 0.1);
}

.contact-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--primary);
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.why-choose {
    background: linear-gradient(135deg, hsla(207, 71%, 19%, 0.05), hsla(207, 50%, 35%, 0.05));
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.why-choose h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.why-choose ul {
    list-style: none;
    padding: 0;
}

.why-choose li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.bullet {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-text {
    color: var(--primary-foreground);
}

.brand-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.brand-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--primary-foreground);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    opacity: 0.8;
}

.social-links i {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
}

.footer-address {
    font-size: 0.875rem;
    opacity: 0.6;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }

    .cta-buttons {
        flex-direction: row;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }

    .section-title {
        font-size: 3.75rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .desktop-menu,
    .desktop-cta {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1023px) {
    .desktop-menu,
    .desktop-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}
.logo-img {
  height: 52px; /* ajuste conforme necessário */
  width: auto;
  cursor: pointer;
}
.hero-title {
  font-size: 38px;
}

@media (max-width: 768px) {
  .hero-title {
    margin-top: 18px;
    font-size: 32px;
  }
}
.hero-buttons .btn-lg {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 6px; /* opcional: deixa mais suave */
}
.empresas-carousel {
  overflow: hidden;
  padding: 2rem 0;
  background: #f9f9f9; /* opcional */
}

.carousel-track {
  display: flex;
  gap: 4rem;
  animation: scrollLeft 30s linear infinite;
  width: max-content;
}

.carousel-track img {
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: transform 0.3s;
}

.carousel-track img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.empresas-carousel {
  overflow: hidden;
  padding: 3rem 0;
  background: #f9f9f9; /* opcional: cor de fundo leve */
}

.carousel-track {
  display: flex;
  gap: 4rem;
  animation: scrollLeft 40s linear infinite;
  width: max-content;
}

.carousel-track img {
  height: 90px;           /* aumente aqui se quiser logos maiores */
  object-fit: contain;
  display: block;
}
  
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.empresas-carousel {
  overflow: hidden;
  padding: 3rem 0;
  background: #f9f9f9;
}

.carousel-track {
  display: flex;
  gap: 4rem;
  animation: scrollLeft 40s linear infinite;
  width: max-content;
  align-items: center;
}

.carousel-track img {
  height: 90px;
  object-fit: contain;
  display: block;
  filter: none !important; /* FORÇA a remoção de filtro herdado */
  -webkit-filter: none !important; /* garante para navegadores WebKit */
}
  
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.hero-image {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--background), hsla(0, 0%, 97%, 0.5), var(--background));
    position: relative;
    overflow: hidden;
}

.background-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(80px);
}

.bg-circle-1 {
    top: 25%;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
}

.bg-circle-2 {
    bottom: 25%;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: var(--zumis-blue-light);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: hsla(207, 71%, 19%, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    width: 100%;
    max-width: 480px;
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px hsla(207, 71%, 19%, 0.3);
}

.service-card.popular {
    border: 2px solid hsla(207, 71%, 19%, 0.2);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.service-card .card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-icon {
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.icon-primary { background: var(--gradient-primary); }
.icon-purple { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
.icon-green { background: linear-gradient(135deg, #10b981, #059669); }

.service-icon i {
    width: 2rem;
    height: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-title {
    color: var(--primary);
}

.service-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.features {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--foreground);
}

.feature i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
}

.btn-outline:hover {
    background: var(--muted);
    border-color: var(--border-hover);
}

.btn-primary {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.full-width {
    width: 100%;
}

.services-cta {
    text-align: center;
    background: var(--muted);
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.cta-description {
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1.125rem;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    justify-items: center;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.service-card {
    width: 100%;
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
    overflow: hidden;
}

@media (max-width: 840px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas de tamanho igual */
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.service-card {
    width: 100%;
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
    overflow: hidden;
}

/* Responsividade - quando a tela for pequena demais para 3 cards */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    }
}

@media (max-width: 840px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(400px, 1fr)); /* Cards com mínimo de 400px */
    gap: 2rem;
    max-width: 1400px; /* Ajuste conforme necessário */
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.service-card {
    width: 100%;
    min-width: 420px; /* Largura mínima garantida */
    background: var(--card);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
    overflow: hidden;
}

/* Versão alternativa com largura fixa (descomente se preferir) */
/*
.service-card {
    width: 420px;  Largura fixa 
    min-width: unset;
}
*/

/* Ajustes de responsividade */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

@media (max-width: 880px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        min-width: unset;
    }
}
/* CTA Section - Tornando clicável */
.services-cta {
    position: relative; /* Garante contexto de empilhamento */
    z-index: 10; /* Coloca acima de elementos decorativos */
    text-align: center;
    background: var(--muted);
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
    pointer-events: auto; /* Garante que seja clicável */
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative; /* Contexto para z-index */
    z-index: 11; /* Acima do container */
}

/* Garantindo que os botões sejam clicáveis */
.btn {
    position: relative;
    z-index: 12;
    pointer-events: auto;
    /* Restante do seu estilo de botão */
}

/* Verifique se não há elementos cobrindo a seção */
.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1; /* Fica atrás do conteúdo */
    background: inherit;
    border-radius: inherit;
}

/* Se estiver usando elementos decorativos, ajuste: */
.background-decoration {
    pointer-events: none; /* Permite cliques através dos elementos decorativos */
    z-index: 1; /* Abaixo do conteúdo principal */
}
.services-cta {
    background: var(--foreground); /* Usa a cor do texto como fundo */
    color: white; /* Texto branco */
    /* Mantenha o restante das propriedades existentes */
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

/* Ajuste as cores dos textos dentro da CTA */
.services-cta .cta-title {
    color: white !important;
}

.services-cta .cta-description {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Ajuste os botões para combinar com o novo esquema */
.services-cta .btn-primary {
    background: white;
    color: var(--foreground);
    border-color: white;
}

.services-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.services-cta .btn-outline {
    color: white;
    border-color: white;
    background: transparent;
}

.services-cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}
/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--background) 0%, rgba(250, 250, 250, 0.8) 50%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
}

.problems-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.problems-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
}

.problems-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    position: relative;
}

.problems-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(241, 13, 13, 0.212);
    transition: all 0.3s ease;
}

.problem-item:hover {
    background: rgba(230, 235, 240, 0.8);
    transform: translateX(5px);
}

.problem-item i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.problem-item p {
    margin: 0;
    color: var(--foreground);
    font-size: 1rem;
}

.problems-solution {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(207, 71%, 19%, 0.03);
    border-left: 3px solid var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .benefits-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problems-card {
        padding: 1.5rem;
    }
    
    .problem-item {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* Hero Section - Mobile Adjustments */
.hero-section {
    min-height: auto;
    padding: 6rem 0 4rem;
}

.hero-content {
    padding-top: 0;
}

.hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
}

.hero-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    width: 100%;
    padding: 0.75rem 1rem;
}

.hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1.5rem;
}

.stat {
    text-align: left;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.stat-number {
    font-size: 1.5rem;
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
    }
}

/* Ajuste para landscape em mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons {
        margin-bottom: 3rem;
    }
}

/* Garantindo que a imagem não fique muito grande em mobile */
.hero-visual {
    order: -1; /* Coloca a imagem no topo em mobile */
    margin-bottom: 2rem;
}

.hero-image {
    max-width: 70%;
    height: auto;
}

/* Ajustes para quando tiver texto + imagem */
@media (min-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-content {
        padding-top: 5rem;
    }
    
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .hero-visual {
        order: initial;
        margin-bottom: 0;
    }
}
/* Hero Section - Mobile Adjustments */
.hero-section {
    min-height: auto;
    padding: 4rem 0 2rem;
}

.hero-visual {
    display: none; /* Esconde a imagem no mobile */
}

.hero-content {
    padding-top: 0;
    text-align: center; /* Centraliza todo o conteúdo */
}

.hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
}

.hero-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    margin: 0 auto 1rem; /* Centraliza o badge */
    display: inline-flex;
}

.hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 auto 1rem; /* Centraliza o título */
    max-width: 90%;
}

.hero-description {
    font-size: 1rem;
    margin: 0 auto 1.5rem; /* Centraliza a descrição */
    max-width: 90%;
}

.hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin: 0 auto 2rem; /* Centraliza os botões */
    max-width: 300px;
}

.hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 1.5rem;
    margin: 0 auto; /* Centraliza os stats */
    max-width: 300px;
}

.stat {
    text-align: center; /* Centraliza o conteúdo dos stats */
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.stat-number {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

/* Mostra a imagem apenas em desktop */
@media (min-width: 768px) {
    .hero-visual {
        display: block; /* Mostra a imagem em desktop */
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-content {
        padding-top: 5rem;
        text-align: left; /* Volta ao alinhamento original em desktop */
    }
    
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .hero-title,
    .hero-description {
        margin: 0 0 1rem 0;
        text-align: left;
        max-width: 100%;
    }
    
    .hero-buttons {
        margin: 0 0 4rem 0;
        max-width: 100%;
        flex-direction: row;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        text-align: left;
    }
}
/* Hero Section - Mobile First Approach */
.hero-section {
    padding: 8rem 0 2rem; /* Aumentei para 8rem no topo (cerca de 128px) */
    min-height: auto;
    position: relative;
}

/* Ajustes para telas pequenas (mobile) */
@media (max-width: 767px) {
    .hero-section {
        padding-top: 9rem; /* Aumento adicional para telas muito pequenas */
    }
}

/* Ajuste extra para iPhones menores */
@media (max-width: 374px) {
    .hero-section {
        padding-top: 7rem; /* Reduz um pouco para telas muito pequenas */
    }
}

/* Garante que o conteúdo não fique muito alto em landscape */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding-top: 5rem;
    }
}

/* Desktop - mantém o layout original */
@media (min-width: 768px) {
    .hero-section {
        padding: 0;
        min-height: 100vh;
    }
    
    .hero-content {
        padding-top: 6rem;
    }
}
/* Services Section - Mobile Adjustments */
@media (max-width: 767px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem; /* Reduz o padding lateral para ganhar espaço */
    }

    .service-card {
        width: 100%;
        min-width: unset;
        max-width: 100%; /* Ocupa toda a largura disponível */
        margin: 0;
        border-radius: 0.75rem; /* Bordas um pouco mais suaves */
    }

    /* Ajuste de conteúdo interno para melhor aproveitamento do espaço */
    .service-card .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-icon {
        margin-bottom: 1rem;
    }
}

/* Versão Desktop - mantém o layout original */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(400px, 1fr));
        padding: 0 1rem;
    }
    
    .service-card {
        max-width: 420px;
    }
}
/* Estilos para o footer logo */
.footer-logo {
    height: 120px;                          
    width: auto; /* Mantém a proporção original */
    margin-right: 15px; /* Espaço entre o logo e o texto */
}

/* Se precisar de ajustes para mobile */
@media (max-width: 768px) {
    .footer-logo {
        height: 40px; /* Tamanho menor para mobile */
    }
}

/* Mantendo os estilos existentes do footer */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ... (mantenha o restante dos seus estilos existentes) */
/* CSS para o logo branco */
.footer-logo {
    height: 150px;
    width: auto;
    filter: brightness(0) invert(1); /* Transforma preto em branco */
    margin-right: 15px;
}

/* Garante que todo texto no footer seja branco */
.footer {
    color: white !important;
}

/* Se quiser manter o logo CSS original branco: */
.footer .bar {
    background: white;
}
.footer .logo-circle {
    border-color: white;
}
/* Botão do WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    width: max-content;
    background: #075E54;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Esconde o tooltip em mobile */
    }
}
.btn-primary.btn-lg:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}
.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
}
.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-color: hsl(207, 71%, 19%); /* Apenas a cor */
    /* Remova ou comente a linha da imagem de fundo */
    /* background-image: url('src/assets/hero-background.jpg'); */
}
.hero-section {
    position: relative; /* Garante que o .hero-background fique contido */
    background-color: hsl(207, 71%, 19%) !important; /* Cor de fallback */
}

.hero-background {
    position: absolute;
    inset: 0;
    background-color: hsl(207, 71%, 19%) !important;
    opacity: 1 !important;
    z-index: 0; /* Garante que fique atrás do conteúdo */
}
/* Cor branca para todo o conteúdo do hero */
.hero-content,
.hero-title,
.hero-description,
.hero-buttons,
.hero-stats,
.hero-badge {
    color: white !important;
}
/* --- Hero Section - Texto Branco --- */
.hero-section :is(
    .hero-content,
    .hero-title,
    .hero-description,
    .hero-buttons,
    .hero-stats,
    .stat-number,
    .stat-label,
    .hero-badge,
    .nav-link
) {
    color: white !important;
}

/* Ícones */
.hero-section [data-lucide] {
    stroke: white !important;
}

/* Botões com contraste */
.hero-section .btn-primary {
    background-color: white !important;
    color: hsl(207, 71%, 19%) !important;
    border-color: white !important;
}

.hero-section .btn-outline {
    background-color: transparent !important;
    color: white !important;
    border-color: white !important;
}

/* Camadas */
.hero-background { z-index: 0; }
.hero-content { z-index: 1; }
/* Altera a cor do título principal para branco */
.hero-title,
.hero-title .text-primary {
    color: white !important;
}
.hero-visual {
    position: relative;
    display: inline-block; /* Ou flex, conforme seu layout */
}

.hero-image {
    position: relative;
    z-index: 2;
    /* Remove o box-shadow anterior */
    box-shadow: none;
}

/* Retângulo branco sólido atrás */
.hero-image::before {
    content: "";
    position: absolute;
    width: calc(100% + 40px); /* 20px de cada lado */
    height: calc(100% + 40px);
    background-color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 8px; /* Opcional */
}
:root {
    --zumis-blue: hsl(207, 71%, 19%);
    --zumis-blue-dark: hsl(207, 71%, 15%);
}

.navbar {
    background-color: var(--zumis-blue) !important;
}

.navbar *:not(.btn-primary) {
    color: white !important;
}

.navbar [data-lucide] {
    stroke: white !important;
}

.dropdown-content {
    background-color: var(--zumis-blue-dark) !important;
}

.btn-outline {
    --border: white;
    --text: white;
    --bg-hover: white;
    --text-hover: var(--zumis-blue);
}
@media (max-width: 768px) { /* Ajuste o breakpoint conforme necessário */
    .hero-visual {
        display: none !important;
    }
    
    /* Opcional: Ajuste o grid para ocupar 100% sem a imagem */
    .hero-grid {
        grid-template-columns: 1fr !important;
    }
}
/* Menu Mobile - Correção de cores */
#mobile-menu {
    background-color: hsl(207, 71%, 19%) !important; /* Mesmo azul da navbar */
}

.mobile-menu-content {
    background-color: transparent !important;
}

.mobile-nav-link {
    color: white !important; /* Texto branco */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; /* Divisões sutis */
    padding: 12px 20px;
}

/* Ícones no menu mobile */
#mobile-menu [data-lucide] {
    stroke: white !important;
}

/* Efeito hover */
.mobile-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Botões CTA no mobile */
.mobile-cta .btn {
    width: 100%;
    margin-bottom: 10px;
}

.mobile-cta .btn-outline {
    border-color: white !important;
    color: white !important;
}

.mobile-cta .btn-primary {
    background-color: white !important;
    color: hsl(207, 71%, 19%) !important;
}