/*
Theme Name: Kayzen Terapias
Theme URI: https://kayzenterapias.com
Author: Kayzen
Description: Tema para Kayzen Terapias / Instituto Jorge Garcia - Terapias, Cursos e Produtos.
Version: 2.0
*/

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafaf5;
}

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

/* ── Header ── */
.site-header {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
  color: #fff;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

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

.site-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #C9A85C;
}

.site-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.nav-menu a:hover {
  color: #C9A85C;
}

/* ── Carousel ── */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1b5e20;
}

.carousel-slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Responsivo ── */
@media (min-width: 769px) {
  .carousel-slide img { height: 500px; object-fit: cover; }
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.carousel-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dots span.active {
  background: #C9A85C;
}

/* ── Hero ── */
.hero {
  background: #fff;
  color: #333;
  text-align: center;
  padding: 70px 20px 60px;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 800;
  color: #1b5e20;
}

.hero h1 span {
  color: #C9A85C;
}

.hero p {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 30px;
  color: #555;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1b5e20;
}

.hero-badge svg {
  width: 20px;
  height: 20px;
  fill: #1b5e20;
}

/* ── 3-Column Services ── */
.services-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.service-summary-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  border-top: 4px solid #1b5e20;
}

.service-summary-card:nth-child(2) {
  border-top-color: #C9A85C;
}

.service-summary-card:nth-child(3) {
  border-top-color: #e65100;
}

.service-summary-card:nth-child(4) {
  border-top-color: #1565c0;
}

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

.service-summary-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.service-summary-card h3 {
  font-size: 1.2rem;
  color: #1b5e20;
  margin-bottom: 10px;
}

.service-summary-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 35px;
  background: #e65100;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}

.btn:hover {
  background: #bf360c;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
}

.btn-green {
  background: #1b5e20;
}

.btn-green:hover {
  background: #2e7d32;
  box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.btn-gold {
  background: #C9A85C;
  color: #1b5e20;
}

.btn-gold:hover {
  background: #b8943e;
  box-shadow: 0 4px 15px rgba(201, 168, 92, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #1da851;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* ── Sections ── */
.section {
  padding: 80px 0;
}

.section-light {
  background: #f1f8e9;
}

.section-dark {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  color: #fff;
}

.section-dark .section-title {
  color: #fff;
}

.section-dark .section-title::after {
  background: #C9A85C;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1b5e20;
  position: relative;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 45px;
  line-height: 1.7;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #e65100;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ── Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-image-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  font-size: 2.5rem;
}

.card-body {
  padding: 22px;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #1b5e20;
  font-weight: 700;
}

.card-text {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

.card-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C9A85C, #b8943e);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Hours ── */
.hours-table {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.hours-table td {
  padding: 16px 24px;
  border-bottom: 1px solid #e8f5e9;
  font-size: 1rem;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table td:first-child {
  font-weight: 600;
  color: #1b5e20;
}

.hours-table td:last-child {
  text-align: right;
  color: #666;
}

/* ── Services Grid ── */
.services-category {
  margin-bottom: 35px;
}

.services-category h4 {
  font-size: 1.1rem;
  color: #1b5e20;
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.service-tag {
  background: #fff;
  border: 1.5px solid #c8e6c9;
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
  color: #2e7d32;
  transition: all 0.25s;
}

.service-tag:hover {
  border-color: #C9A85C;
  background: #fffde7;
  color: #1b5e20;
}

/* ── Social Proof ── */
.social-proof {
  text-align: center;
  padding: 60px 20px;
}

.social-proof-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #C9A85C;
}

.social-proof h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}

.social-proof p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.contact-item:hover {
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-icon.gold {
  background: linear-gradient(135deg, #C9A85C, #b8943e);
}

.contact-icon.whatsapp {
  background: #25d366;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1b5e20;
  box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

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

/* ── WhatsApp Floating ── */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 999;
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* ── Footer ── */
.site-footer {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  color: #fff;
  text-align: center;
  padding: 40px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: #C9A85C;
  margin-bottom: 12px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.8;
  text-decoration: none;
  display: block;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .services-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .carousel-slide img {
    height: 360px;
  }
}

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

  .hero p {
    font-size: 1rem;
  }

  .hero {
    padding: 50px 20px 40px;
  }

  .services-summary {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-header .container {
    flex-direction: column;
    gap: 8px;
  }

  .nav-menu {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-menu a {
    font-size: 0.85rem;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .carousel-slide img {
    height: 250px;
  }

  .carousel-dots {
    bottom: 12px;
  }

  .carousel-dots span {
    width: 10px;
    height: 10px;
  }
}