/*
Theme Name: Geometric Agency
Theme URI: https://geometricagency.lovable.app
Author: Geometric Agency
Description: Tema profissional para landing page da Geometric Agency - Contabilidade Digital
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: geometric-agency
*/

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --background: hsl(195, 40%, 6%);
  --foreground: hsl(0, 0%, 98%);
  --card: hsl(195, 35%, 10%);
  --card-foreground: hsl(0, 0%, 98%);
  --primary: hsl(174, 72%, 56%);
  --primary-foreground: hsl(195, 40%, 6%);
  --secondary: hsl(195, 30%, 15%);
  --muted: hsl(195, 25%, 18%);
  --muted-foreground: hsl(195, 15%, 60%);
  --border: hsl(195, 25%, 18%);
  --radius: 0.75rem;
  --gradient-primary: linear-gradient(135deg, hsl(174, 72%, 56%) 0%, hsl(185, 70%, 50%) 50%, hsl(190, 80%, 45%) 100%);
  --shadow-glow: 0 0 60px hsla(174, 72%, 56%, 0.3);
  --shadow-card: 0 4px 20px hsla(0, 0%, 0%, 0.4);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
}

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

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

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

/* Text Gradient */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* ========================================
   NAVBAR
======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: hsla(195, 40%, 6%, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-logo img {
  height: 40px;
  width: auto;
}

.navbar-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.navbar-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.navbar-nav a:hover {
  color: var(--primary);
}

.navbar-cta .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }
  
  .navbar-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsla(174, 72%, 56%, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

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

@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image {
    order: -1;
  }
}

/* ========================================
   GUARANTEE SECTION
======================================== */
.guarantee {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.guarantee::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border: 2px solid hsla(174, 72%, 56%, 0.2);
  border-radius: 50%;
  animation: pulse-ring 4s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

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

.guarantee-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: hsla(195, 35%, 10%, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid hsla(174, 72%, 56%, 0.3);
  border-radius: 1.5rem;
}

.guarantee-title {
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.guarantee h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.guarantee-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.guarantee-highlight {
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .guarantee h2 {
    font-size: 2rem;
  }
  
  .guarantee-card {
    padding: 2rem 1.5rem;
  }
}

/* ========================================
   HELP SECTION (Para quem é)
======================================== */
.help {
  padding: 6rem 0;
  background: var(--card);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.help-card {
  padding: 2rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.help-card:hover {
  border-color: hsla(174, 72%, 56%, 0.5);
  box-shadow: 0 0 30px hsla(174, 72%, 56%, 0.1);
}

.help-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--primary-foreground);
}

.help-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.help-card p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .help-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   SERVICES SECTION
======================================== */
.services {
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.5s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: hsla(174, 72%, 56%, 0.5);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border-radius: 1rem;
  color: var(--primary);
  font-size: 1.75rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials {
  padding: 6rem 0;
  background: var(--card);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.testimonial-text {
  color: var(--muted-foreground);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary-foreground);
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
  padding: 6rem 0;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-display);
}

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

@media (max-width: 768px) {
  .about .container {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ========================================
   OFFICE SECTION
======================================== */
.office {
  padding: 6rem 0;
  background: var(--card);
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.office-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.office-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.office-image:hover img {
  transform: scale(1.05);
}

.office-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, hsla(0, 0%, 0%, 0.8), transparent);
}

.office-image-overlay span {
  font-size: 0.875rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .office-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CTA SECTION
======================================== */
.cta {
  padding: 6rem 0;
  text-align: center;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hsla(174, 72%, 56%, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  .cta h2 {
    font-size: 2rem;
  }
}

/* ========================================
   FOOTER
======================================== */
.footer {
  padding: 4rem 0 2rem;
  background: var(--card);
  border-top: 1px solid var(--border);
}

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

.footer-brand p {
  color: var(--muted-foreground);
  margin: 1rem 0;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  border-radius: 50%;
  color: var(--foreground);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   WHATSAPP BUTTON
======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }

/* CENTRALIZAR HERO CONTENT */

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

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

.hero-content{
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Centralizar badge */
.hero-badge{
    justify-content: center;
}

/* Centralizar botão */
.hero-buttons{
    display: flex;
    justify-content: center;
}

/* COR DE FUNDO AJUSTADA */
.transformation-section {
    background-color: #0b1215 !important; /* Cor exata da seção 'Para quem é' */
    padding: 100px 20px;
    color: #ffffff;
    text-align: center;
}

/* Estilo do Título com Gradiente */
.text-gradient {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.arrow-red { color: #ef4444; margin: 0 10px; }

/* Cards com transparência para não "brigarem" com o fundo novo */
.card-from {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.card-to {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.15);
    color: #22d3ee;
}

/* Seta Central */
.circle-arrow {
    width: 44px;
    height: 44px;
    background: #0b1215; /* Mesma cor do fundo para dar efeito de recorte */
    border: 2px solid #22d3ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22d3ee;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.3);
}

/* Botão CTA com a cor do gradiente */
.btn-cta-transformation {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #0b1215;
    padding: 20px 45px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 900;
    display: inline-block;
    margin-top: 40px;
    transition: all 0.3s ease;
}

.btn-cta-transformation:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 242, 254, 0.3);
}

/* Grid layout */
.comparison-grid { max-width: 1000px; margin: 50px auto; }
.comparison-row { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.card { flex: 1; display: flex; align-items: center; padding: 20px 25px; border-radius: 12px; text-align: left; }

@media (max-width: 768px) {
    .comparison-row { flex-direction: column; }
    .circle-arrow { transform: rotate(90deg); }
}

/* COR DE FUNDO RESTAURADA */
.testimonials {
    text-align: center;
    padding: 80px 20px;
    background-color: #0b1215; /* Cor original solicitada */
}

.testimonial-carousel-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-carousel-wrapper input[type="radio"] {
    display: none;
}

/* Lógica de exibição dos slides */
.testimonial-slides-container .slide {
    display: none;
    animation: slideIn 0.4s ease-out;
}

#testi-1:checked ~ .testimonial-slides-container .testi-slide-1,
#testi-2:checked ~ .testimonial-slides-container .testi-slide-2,
#testi-3:checked ~ .testimonial-slides-container .testi-slide-3,
#testi-4:checked ~ .testimonial-slides-container .testi-slide-4,
#testi-5:checked ~ .testimonial-slides-container .testi-slide-5 {
    display: block;
}

/* SETAS FUNCIONAIS */
.arrows {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
}

.arrow {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.arrow:hover {
    background: rgba(34, 211, 238, 0.2);
    border-color: #22d3ee;
    color: #22d3ee;
}

/* DOTS ATIVOS */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.dot {
    width: 10px;
    height: 10px;
    background: #334155;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

#testi-1:checked ~ .carousel-dots label[for="testi-1"],
#testi-2:checked ~ .carousel-dots label[for="testi-2"],
#testi-3:checked ~ .carousel-dots label[for="testi-3"],
#testi-4:checked ~ .carousel-dots label[for="testi-4"],
#testi-5:checked ~ .carousel-dots label[for="testi-5"] {
    background: #22d3ee;
    width: 25px;
    border-radius: 10px;
}

/* Textos e Cores */
.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #94a3b8;
    margin-bottom: 25px;
}

.author-name {
    color: white;
    font-weight: 700;
}

.stars {
    color: #fbbf24;
}

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

.carousel-cta .btn-primary {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #0b1215;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 900;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

/* SEÇÃO SOBRE - COR DE FUNDO #0b1215 */
.about-geometric {
    background-color: #0b1215 !important;
    padding: 100px 20px;
    color: #ffffff;
}

.about-header {
    text-align: left;
    margin-bottom: 50px;
}

.badge-about {
    color: #22d3ee;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.about-header h2 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.about-header p {
    color: #94a3b8;
    max-width: 850px;
    font-size: 16px;
    line-height: 1.6;
}

/* Card da Imagem */
.about-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.image-overlay-info h4 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.image-overlay-info span {
    color: #22d3ee;
    font-weight: 700;
    font-size: 14px;
}

/* Grid de Diferenciais */
.features-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.f-icon {
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 16px;
}

.f-text {
    font-weight: 700;
    font-size: 14px;
}

/* Caixa de Lista */
.highlights-container {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    color: #22d3ee;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
}

/* Botão Largo */
.btn-full {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #0b1215;
    text-decoration: none;
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.btn-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(34, 211, 238, 0.3);
}

/* Responsividade */
@media (max-width: 992px) {
    .features-list-grid {
        grid-template-columns: 1fr;
    }
}

/* SEÇÃO ESCRITÓRIO */
.office {
    background-color: #0b1215; /* Cor de fundo idêntica à imagem */
    padding: 100px 0;
    text-align: center;
}

.badge-office {
    color: #22d3ee;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.office .section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.office .section-header p {
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 15px;
}

/* LAYOUT BENTO GRID (Imagens) */
.office-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.office-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Estilo da Grade Direita */
.office-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cafe-corner {
    grid-column: 1 / 2;
    max-width: 250px;
    margin-top: 15px;
}

/* SEÇÃO FINAL CTA */
.final-cta-section {
    margin-top: 120px;
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.final-cta-content h3 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    flex: 2;
}

.btn-impulsionar {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #0b1215;
    padding: 20px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    white-space: nowrap;
    transition: 0.3s ease;
    flex: 0.8;
    text-align: center;
}

.btn-impulsionar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(34, 211, 238, 0.3);
}

/* Responsividade Mobile */
@media (max-width: 850px) {
    .office-bento-grid { grid-template-columns: 1fr; }
    .office-subgrid { grid-template-columns: 1fr 1fr; }
    .final-cta-content { flex-direction: column; text-align: center; }
}

/* Forçar a transparência das seções para o fundo aparecer */
#page, .site-content, section, .hero, #servicos, #sobre {
    background-color: transparent !important;
}

/* Forçar a animação das ondas */
.wave-line {
    animation: moveWavesSuave 20s linear infinite alternate !important;
    display: block !important;
}

@keyframes moveWavesSuave {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-30px) translateX(20px); }
}

/* Se você quer a imagem geometric.png ao fundo também */
.geometric-background {
    background-image: url('https://geometricagency.com/wp-content/uploads/2026/02/geometric.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

Se o código ainda não surtiu efeito, o problema provavelmente está na especificidade do seletor (o WordPress ou o tema estão "vencendo" o seu código) ou na identificação da classe.

Vamos usar uma técnica de "força bruta" no CSS para garantir que o navegador aplique as mudanças, focando no HTML que você forneceu anteriormente.

1. O que fazer (Passo a Passo)
Vá ao final do seu arquivo style.css.

Cole o bloco de código abaixo.

Atenção: Usei seletores que atacam diretamente as tags h1 e header para não ter erro.

2. Código Corretivo (Cole no final do arquivo)
CSS
/* 1. DIMINUIR O LOGO AGRESSIVAMENTE */
header .navbar-logo img, 
nav .navbar-logo img,
.navbar-logo img {
    height: 25px !important; /* Valor bem pequeno para você notar a mudança */
    width: auto !important;
}

/* 2. ESPAÇAMENTO DO TEXTO "45 DIAS" */
/* Atacando a section Hero pelo ID e pela Classe ao mesmo tempo */
section#inicio, 
section.hero, 
section[class*="hero"] {
    padding-top: 250px !important; /* Valor exagerado para teste visual */
}

/* Atacando o título h1 dentro da Hero */
section.hero h1, 
.hero-content h1,
.text-gradient {
    margin-top: 60px !important;
    display: block !important;
}

/* CONTAINER PRINCIPAL - FORÇAR CENTRALIZAÇÃO */
.guarantee-v3 {
    background-color: #0b1215 !important;
    padding: 100px 20px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.content-wrapper-v3 {
    max-width: 850px !important;
    margin: 0 auto !important;
    z-index: 10 !important;
    position: relative !important;
}

/* MOUSE ANIMADO */
.mouse-scroll { margin-bottom: 40px; display: flex; justify-content: center; }
.mouse-outer {
    width: 22px; height: 35px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px; position: relative;
}
.mouse-wheel {
    width: 4px; height: 4px; background: #22d3ee;
    border-radius: 50%; position: absolute;
    top: 8px; left: 50%; transform: translateX(-50%);
    animation: mouseMoveV3 2s infinite;
}
@keyframes mouseMoveV3 { 0% { top: 8px; opacity: 1; } 100% { top: 20px; opacity: 0; } }

/* TÍTULOS */
.guarantee-header-v3 h2 {
    font-size: 52px !important; font-weight: 900 !important;
    color: #22d3ee !important; line-height: 1 !important;
    margin-bottom: 25px !important; text-transform: uppercase !important;
}
.guarantee-header-v3 .white-text { color: #ffffff !important; }
.guarantee-header-v3 p {
    color: #94a3b8 !important; font-size: 17px !important;
    line-height: 1.6 !important; margin-bottom: 50px !important;
}

/* CARD CENTRAL COM BRILHO */
.highlight-card-v3 {
    background: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid rgba(34, 211, 238, 0.3) !important;
    padding: 40px !important;
    border-radius: 15px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.1) !important;
}
.highlight-card-v3 p {
    font-size: 26px !important; font-weight: 700 !important;
    color: #ffffff !important; margin: 0 !important; line-height: 1.4 !important;
}
.cyan-text { color: #22d3ee !important; }

/* BADGE FINAL */
.partnership-badge-v3 span {
    border: 1px solid rgba(34, 211, 238, 0.5) !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    color: #22d3ee !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    background: rgba(34, 211, 238, 0.05) !important;
    letter-spacing: 1px !important;
}

/* CÍRCULOS DECORATIVOS LATERAIS */
.decor-circle-v3 {
    position: absolute; width: 500px; height: 500px;
    border: 1px solid rgba(34, 211, 238, 0.1);
    border-radius: 50%; top: 50%; transform: translateY(-50%);
    pointer-events: none; z-index: 1;
}
.decor-circle-v3.left { left: -250px; }
.decor-circle-v3.right { right: -250px; }
.decor-circle-v3::after {
    content: ''; position: absolute; top: 50%; left: 0;
    width: 100%; height: 1px; background: rgba(34, 211, 238, 0.05);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .guarantee-header-v3 h2 { font-size: 36px !important; }
    .highlight-card-v3 p { font-size: 18px !important; }
    .decor-circle-v3 { display: none; }
}

/* --- RESET E CENTRALIZAÇÃO DA SEÇÃO GARANTIA --- */
.secao-garantia-premium {
    background-color: #0b1215 !important;
    padding: 120px 20px !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
}

.container-garantia {
    max-width: 900px !important;
    z-index: 5 !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

/* MOUSE */
.mouse-box { margin-bottom: 40px; }
.mouse-main {
    width: 22px; height: 35px;
    border: 2px solid rgba(34, 211, 238, 0.3);
    border-radius: 12px; position: relative;
}
.mouse-wheel {
    width: 3px; height: 6px; background: #22d3ee;
    border-radius: 50%; position: absolute;
    top: 7px; left: 50%; transform: translateX(-50%);
    animation: mouseScrollAnim 2s infinite;
}
@keyframes mouseScrollAnim { 0% { top: 7px; opacity: 1; } 100% { top: 20px; opacity: 0; } }

/* TÍTULOS */
.garantia-header h2 {
    font-size: clamp(40px, 8vw, 60px) !important;
    font-weight: 900 !important;
    color: #22d3ee !important;
    line-height: 1 !important;
    margin-bottom: 25px !important;
    text-transform: uppercase !important;
}
.white-txt { color: #ffffff !important; }
.garantia-header p {
    color: #94a3b8 !important;
    font-size: 18px !important;
    max-width: 650px !important;
    margin: 0 auto 50px !important;
}

/* CARD CENTRAL */
.garantia-card-central {
    background: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid rgba(34, 211, 238, 0.3) !important;
    padding: 40px !important;
    border-radius: 15px !important;
    margin-bottom: 40px !important;
    box-shadow: 0 0 50px rgba(34, 211, 238, 0.1) !important;
}
.garantia-card-central p {
    font-size: clamp(20px, 4vw, 28px) !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
}
.cyan-txt { color: #22d3ee !important; }

/* BADGE */
.garantia-badge span {
    border: 1px solid rgba(34, 211, 238, 0.5) !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    color: #22d3ee !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    background: rgba(34, 211, 238, 0.05) !important;
}

/* CÍRCULOS LATERAIS */
.circulo-decorativo {
    position: absolute; width: 500px; height: 500px;
    border: 1px solid rgba(34, 211, 238, 0.1);
    border-radius: 50%; top: 50%; transform: translateY(-50%);
    pointer-events: none; z-index: 1;
}
.esquerdo { left: -250px; }
.direito { right: -250px; }

/* Container do texto */
.hero-subtitle {
    font-size: 1.125rem !important;
    line-height: 1.8 !important;
    max-width: 800px !important; /* Aumenta a largura para o texto caber lado a lado */
    margin: 1.5rem auto !important;
    text-align: center;
    color: var(--muted-foreground);
}

/* Força as partes coloridas a ficarem na mesma linha do texto comum */
.hero-subtitle .text-gradient {
    display: inline !important; /* Impede que vire um bloco e pule linha */
    white-space: nowrap; /* Evita que palavras compostas quebrem ao meio */
    font-weight: 700;
}

/* Esconde a quebra de linha em telas grandes para manter a fluidez */
@media (min-width: 769px) {
    .hide-mobile {
        display: block; /* Mantém a quebra apenas antes da última frase se desejar */
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem !important;
        padding: 0 1rem;
    }
    .hero-subtitle .text-gradient {
        white-space: normal; /* No celular permite quebrar se o espaço acabar */
    }
}


/* --- CORREÇÃO GLOBAL DE ESPAÇAMENTO E QUEBRA DE LINHA --- */

/* Força todos os textos com gradiente a ficarem na mesma linha (lado a lado) */
.text-gradient, 
.cyan-text, 
.highlight {
    display: inline !important; /* Essencial para o texto fluir lateralmente */
    vertical-align: baseline;
    white-space: normal; /* Permite que o texto quebre apenas quando a linha acabar */
}

/* Garante que os parágrafos das seções não forcem quebras estranhas */
.hero-subtitle, 
.guarantee-text, 
.section-header p,
.garantia-header p {
    display: block !important;
    width: 100% !important;
    max-width: 800px !important; /* Limita a largura para o texto não ficar "esticado" demais */
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

/* Ajuste específico para títulos h1 e h2 não "quebrarem" as palavras coloridas */
h1, h2, h3 {
    display: block !important;
    width: 100%;
}

h1 span, h2 span {
    display: inline !important;
}

.garantia-badge-final {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px; /* Margem de segurança nas laterais */
    margin-top: 30px;
}

.garantia-badge-final span {
    border: 1px solid rgba(34, 211, 238, 0.5) !important;
    padding: 12px 25px !important;
    border-radius: 8px !important;
    color: #22d3ee !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    background: rgba(34, 211, 238, 0.05) !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
    
    /* A mágica para não cortar */
    display: inline-block;
    max-width: 100%; /* Não deixa sair da tela */
    line-height: 1.4; /* Dá respiro se quebrar em 2 linhas */
    text-align: center;
}

/* Ajuste específico para celulares pequenos */
@media (max-width: 480px) {
    .garantia-badge-final span {
        font-size: 11px !important; /* Diminui um pouco a letra para caber melhor */
        padding: 10px 15px !important;
        white-space: normal; /* Permite quebrar linha se necessário */
    }
}