﻿/* ==========================================
   1. VARIÁVEIS E RESET
   ========================================== */

:root {
  --primary-color: #c1a898;
  --secondary-color: #dbc1c1;
  --light-bg: #f9f2f3;
  --dark-text: #7e4141;
  --light-text: #666666;
  --white: #ffffff;

  --success: #2f6f4e;
  --error: #c23a3a;

  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 25px rgba(193, 168, 152, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

/* ==========================================
   2. NAVEGAÇÃO
   ========================================== */

.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo a {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
}

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

.nav-link {
  text-decoration: none;
  color: #3a3431;
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;

  width: 0;
  height: 2px;

  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   3. HERO
   ========================================== */

.hero {
  position: relative;
  height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  overflow: hidden;

  background: linear-gradient(135deg, #c1a898 0%, #dbc1c1 100%);
}

.hero::after {
  content: "";
  position: absolute;

  width: 1700px;
  height: 1200px;

  background: url("assets/body/logo3.png") no-repeat center;
  background-size: contain;

  opacity: 0.45;

  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);

  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--white);
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;

  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);

  text-decoration: none;
  border-radius: 50px;
  font-weight: 800;

  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  border: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(193, 168, 152, 0.4);
}

/* ==========================================
   4. SEÇÕES GERAIS
   ========================================== */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.6s ease;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--light-text);
  font-weight: 500;
}

/* ==========================================
   5. SOBRE
   ========================================== */

.about {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  max-width: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;

  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.about-text h3 {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 800;
}

.about-text p {
  font-size: 1rem;
  color: var(--light-text);
  line-height: 1.8;
  text-align: justify;
}

.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.about-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;

  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(198, 141, 141, 0.2);
  transition: all 0.3s ease;
}

.about-image img:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(198, 141, 141, 0.3);
}

.about-image::before {
  content: "";
  position: absolute;
  inset: -15px;

  border: 2px solid var(--primary-color);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

/* ==========================================
   6. SERVIÇOS
   ========================================== */

.services {
  background: linear-gradient(135deg, #f9f2f3 0%, var(--white) 100%);
  max-width: none;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-category {
  margin-bottom: 6rem;
}

.services-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.service-card {
  background: var(--white);
  padding: 2.5rem;

  border-radius: 15px;
  border: 2px solid var(--primary-color);

  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;

  box-shadow: 0 5px 15px rgba(198, 141, 141, 0.1);

  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background: linear-gradient(90deg, transparent, rgba(198, 141, 141, 0.1), transparent);

  transition: left 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(198, 141, 141, 0.25);
  border-color: var(--secondary-color);
}

.service-card:hover::before {
  left: 100%;
}

.service-card h4 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 800;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--light-text);
  line-height: 1.6;
  flex-grow: 1;
}

.card-action {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.3s ease;
}

.service-card:hover .card-action {
  color: var(--secondary-color);
  transform: translateX(5px);
}

/* CARD EXPANDIDO */

.service-card.expanded {
  grid-column: span 3;
  min-height: 430px;

  background: linear-gradient(135deg, var(--white), #f8eeee);
  border-color: var(--primary-color);
  box-shadow: 0 18px 45px rgba(193, 168, 152, 0.28);
}

.service-card.expanded h4 {
  font-size: 1.8rem;
}

.service-card.expanded .card-action {
  display: none;
}

.service-card-details {
  display: none;
  margin-top: 1.5rem;
  color: #5f5652;
  line-height: 1.8;
}

.service-card.expanded .service-card-details {
  display: block;
}

.service-expanded-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 3rem;
  align-items: center;
}

.service-expanded-text {
  width: 100%;
  padding-right: 0;
}

.service-image-floating {
  width: 460px;
  height: 330px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  border-radius: 18px;
  background-color: #f4eeee;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-image-floating img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  border-radius: 18px;
  display: block;
}

.service-card-details ul {
  margin: 1rem 0 1.5rem 1.2rem;
}

.service-card-details li {
  margin-bottom: 0.5rem;
}

.service-detail-title {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin: 1rem 0;
  font-weight: 800;
}

.service-info-list {
  margin-top: 1rem;
}

.service-info-list p {
  margin-bottom: 0.45rem;
  color: var(--light-text);
}

.service-info-list strong {
  color: var(--dark-text);
}

.service-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);

  border: none;
  border-radius: 12px;

  padding: 0.9rem 1.4rem;
  font-weight: 800;
  text-decoration: none;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
}

/* ==========================================
   7. AGENDAMENTO
   ========================================== */

.booking {
  background-color: var(--white);
}

.booking-form {
  background-color: var(--light-bg);
  padding: 3rem;

  border-radius: 12px;
  max-width: 650px;
  margin: 0 auto;

  box-shadow: var(--shadow);
  animation: fadeInUp 0.8s ease;
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;

  border: 2px solid var(--secondary-color);
  border-radius: 6px;

  font-family: inherit;
  font-size: 1rem;
  color: var(--dark-text);

  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(198, 141, 141, 0.1);
}

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

/* DROPDOWN DE SERVIÇOS */

.service-dropdown {
  background: var(--white);
  border: 2px solid var(--secondary-color);
  border-radius: 8px;
  overflow: hidden;
}

.service-dropdown summary {
  padding: 0.9rem 1rem;
  cursor: pointer;
  font-weight: 800;
  color: var(--dark-text);
  list-style: none;
}

.service-dropdown summary::-webkit-details-marker {
  display: none;
}

.service-dropdown summary::after {
  content: "⌄";
  float: right;
  font-size: 1.2rem;
}

.service-dropdown[open] summary::after {
  content: "⌃";
}

.service-dropdown-list {
  padding: 1rem;
  border-top: 1px solid #ead8d2;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.service-dropdown-list label {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  color: var(--light-text);
  font-weight: 700;
  cursor: pointer;
}

.service-dropdown-list input {
  accent-color: var(--primary-color);
}

.service-category {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ead8d2;
}

.service-category:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.service-category h4 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
}

/* BOTÃO FORMULÁRIO */

.submit-btn {
  width: 100%;

  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);

  border: none;
  border-radius: 6px;

  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;

  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

#bookingMessage {
  padding: 1rem;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
}

/* ==========================================
   8. LOCALIZAÇÃO
   ========================================== */

.location {
  background-color: var(--light-bg);
  max-width: none;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.location-map {
  width: 100%;
}

.location-map iframe {
  width: 100%;
  min-height: 500px;

  border: none;
  border-radius: 16px;

  box-shadow: var(--shadow-lg);
  background-color: var(--white);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.location-card {
  background-color: var(--white);
  padding: 1.5rem;

  border-radius: 14px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-color);

  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.location-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.location-card p,
.location-card a {
  color: var(--light-text);
  font-weight: 600;
  text-decoration: none;
}

.location-card a:hover {
  color: var(--primary-color);
}


/* BOTÕES DE LOCALIZAÇÃO */

.location-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0.4rem;
}

.location-btn {
  width: 100%;
  min-height: 52px;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0.9rem 1.2rem;

  border: none;
  border-radius: 12px;

  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  text-align: center;

  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.location-btn:hover {
  transform: translateY(-2px);
}

.maps-btn {
  background: linear-gradient(135deg, #4285f4, #2d6cdf);
}

.maps-btn:hover {
  box-shadow: 0 12px 30px rgba(66, 133, 244, 0.32);
}

.waze-btn {
  background: linear-gradient(135deg, #33ccff, #1fb8eb);
}

.waze-btn:hover {
  box-shadow: 0 12px 30px rgba(51, 204, 255, 0.32);
}

/* ==========================================
   9. FOOTER
   ========================================== */

.footer {
  background: linear-gradient(135deg, #3a3431, #5c504b);
  color: var(--white);

  text-align: center;
  padding: 2rem;
}

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

.footer-content p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* ==========================================
   10. ANIMAÇÕES
   ========================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   11. RESPONSIVIDADE
   ========================================== */

@media (max-width: 1024px) {
  .section {
    padding: 4rem 1.5rem;
  }

  .about-content,
  .location-container {
    grid-template-columns: 1fr;
  }

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

  .service-card.expanded {
    grid-column: span 2;
  }

  .service-expanded-layout {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .service-expanded-text {
    width: 100%;
    padding-right: 0;
  }

  .service-image-floating {
    width: 100%;
    max-width: 520px;
    height: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: -100%;

    width: 100%;
    padding: 2rem 0;

    flex-direction: column;
    gap: 1rem;

    background-color: var(--light-bg);
    text-align: center;

    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link::after {
    display: none;
  }

  .hero::after {
    width: 450px;
    height: 450px;
    opacity: 0.18;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

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

  .section-header h2 {
    font-size: 1.8rem;
  }

  .category-title {
    text-align: center;
    font-size: 1.5rem;
  }

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

  .service-card.expanded {
    grid-column: span 1;
  }

  .service-image-floating {
    max-width: 100%;
    height: 280px;
  }

  .service-buttons {
    flex-direction: column;
  }

  .booking-form {
    padding: 2rem 1.5rem;
  }

  .service-dropdown-list {
    grid-template-columns: 1fr;
  }

  .location-buttons {
    gap: 10px;
  }

  .location-btn {
    min-height: 48px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }

  .location-map iframe {
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 1rem;
  }

  .navbar-logo a {
    font-size: 1.3rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

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

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .service-card {
    padding: 1.4rem;
  }

  .service-image-floating {
    height: 240px;
  }

  .booking-form {
    padding: 1.5rem;
  }
}

/* ==========================================
   12. ACESSIBILIDADE / IMPRESSÃO
   ========================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .navbar,
  .footer,
  .cta-button,
  .submit-btn {
    display: none;
  }

  body {
    background-color: var(--white);
  }
}
.benefits-list {
  list-style: none;
  margin: 1rem 0 1.5rem 0;
  padding: 0;
}

.benefits-list li {
  margin-bottom: 0.5rem;
}

.benefits-list li::before {
  content: "✓ ";
  margin-right: 0.4rem;
}