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

:root {
  --primary: #88D0C7;
  --secondary: #FFB7A2;
  --bg: #FFFFFF;
  --text: #222222;
  --cta: #88D0C7;
  --bg-alt: #F8F8F8;
  --accent: #C8B9FF; /* lavanda */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

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

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

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

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

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

.mt-4 {
  margin-top: 2rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  text-align: center;
  min-height: 44px;
  min-width: 44px;
}

.btn-primary {
  background-color: var(--cta);
  color: #1a1a1a;
}

.btn-primary:hover {
  background-color: #72b8af; 
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(136, 208, 199, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #1a1a1a;
}

.btn-secondary:hover {
  background-color: #e5a491;
  transform: translateY(-2px);
}

.btn i {
  margin-right: 8px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

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

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text);
  cursor: pointer;
  width: 44px;
  height: 44px;
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transform: translateY(-150%);
  transition: transform 0.4s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background-color: var(--bg-alt);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg-alt) 0%, rgba(248,248,248,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 0 5%;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--text);
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  color: #555;
  max-width: 480px;
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    justify-content: center;
  }
  .hero-image {
    width: 100%;
  }
  .hero-overlay {
    background: linear-gradient(to top, rgba(248,248,248,1) 0%, rgba(248,248,248,0.85) 50%, rgba(248,248,248,0.4) 100%);
  }
  .hero-content {
    width: 100%;
    text-align: center;
    padding: 40px 20px;
    margin-top: auto;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    margin: 0 auto 30px auto;
  }
}

/* SERVICES */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.section-header p {
  font-size: 1.1rem;
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img {
  height: 240px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-info {
  padding: 30px;
}

.service-info h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
  color: var(--text);
}

.service-info p {
  color: #666;
  font-size: 0.95rem;
}

/* DIFERENCIAIS */
.diferenciais {
  text-align: center;
}

.dif-content {
  max-width: 800px;
  margin: 0 auto;
}

.statement-generic {
  font-size: 1.6rem;
  color: #777;
  margin-bottom: 30px;
  font-weight: 300;
  font-style: italic;
}

.statement-dif {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  margin-bottom: 40px;
  color: var(--text);
}

.highlight-word {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-style: italic;
  color: var(--secondary);
}

@media (max-width: 768px) {
  .statement-generic { font-size: 1.3rem; }
  .statement-dif { font-size: 1.1rem; }
  .highlight-word { font-size: 3rem; }
}

/* PROCESS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.step {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  position: relative;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-family: var(--font-heading);
  margin: 0 auto 20px auto;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.step p {
  color: #666;
  font-size: 0.95rem;
}

/* CTA FINAL */
.cta-final {
  background-color: var(--primary);
  color: #1a1a1a;
}

.cta-final h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.cta-final .btn-primary {
  background-color: #1a1a1a;
  color: #fff;
}

.cta-final .btn-primary:hover {
  background-color: #333;
}

/* FOOTER */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 0 20px 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer-col .nav-logo {
  color: #fff;
  display: inline-block;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: #aaa;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

/* FLOAT WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ANIMATIONS */
.reveal-clip {
  clip-path: polygon(0 99%, 100% 99%, 100% 100%, 0 100%);
  transition: clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-backface-visibility: hidden;
  will-change: clip-path, transform;
}
.reveal-clip.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.reveal-clip img {
  visibility: visible !important;
  opacity: 1 !important;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* SUBPAGES */
.page-hero {
  padding: 160px 0 80px 0;
  background-color: var(--bg-alt);
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* SOBRE */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre-img {
  border-radius: 8px;
  overflow: hidden;
}

.sobre-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.sobre-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.missao-visao {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  background: var(--bg-alt);
  padding: 25px;
  border-radius: 8px;
}

.mv-card h4 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.valores-list {
  list-style: none;
}

.valores-list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.valores-list i {
  color: var(--primary);
  margin-right: 10px;
}

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

/* CONTATO */
.contato-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contato-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contato-info p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.contato-form form {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

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

.contato-form .btn {
  width: 100%;
}

@media (max-width: 992px) {
  .contato-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
}