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

:root {
  --primary: #1a5f4a;
  --primary-light: #2d9b7f;
  --primary-lighter: #7fd9c1;
  --accent: #d4af37;
  --accent-light: #f4e4c1;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

h1 {
  font-size: clamp(28px, 6vw, 56px);
  line-height: 1.2;
}

h2 {
  font-size: clamp(24px, 5vw, 42px);
  line-height: 1.2;
}

h3 {
  font-size: clamp(18px, 4vw, 24px);
  line-height: 1.3;
}

p {
  color: var(--gray-600);
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.8;
}

/* HEADER */
header {
  background-color: var(--white);
  color: var(--gray-900);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--gray-100);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: clamp(18px, 5vw, 32px);
  font-weight: 700;
  text-decoration: none;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
}

.logo .pedra-branca {
  color: var(--accent);
  font-weight: 700;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 35px);
  align-items: center;
  justify-content: flex-start;
}

nav a {
  color: var(--gray-700);
  text-decoration: none;
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

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

nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gray-900);
  cursor: pointer;
  font-size: 24px;
  padding: 8px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
  padding: clamp(20px, 5vw, 40px) 16px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-lighter) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}

/* Padrão Chevron no Hero */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(127, 217, 193, 0.08) 20px, rgba(127, 217, 193, 0.08) 40px),
    repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(127, 217, 193, 0.08) 20px, rgba(127, 217, 193, 0.08) 40px);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Moldura de Folhas na Imagem Hero */
.hero-image {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: auto;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  background-image: url('../images/leaf-frame.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  pointer-events: none;
  z-index: -1;
}

.hero-text h1 {
  margin-bottom: 12px;
}

.hero-text h2 {
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}

.hero-text p {
  margin-bottom: 32px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  padding: clamp(12px, 2vw, 14px) clamp(24px, 4vw, 36px);
  border: none;
  border-radius: 6px;
  font-size: clamp(13px, 2.5vw, 15px);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 95, 74, 0.2);
}

.btn-primary:active {
  transform: translateY(0);
}



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

/* Separador Ondulado */
.wave-divider {
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="%23f5f5f5" opacity="0.3"></path></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  margin: -1px 0 0 0;
}

/* SERVICES SECTION */
.services {
  background-color: var(--white);
  padding: clamp(40px, 10vw, 80px) 16px;
  position: relative;
}

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

.section-title {
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  font-size: clamp(14px, 2.5vw, 16px);
  color: var(--gray-500);
  margin-bottom: clamp(30px, 5vw, 48px);
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 100%, 300px), 1fr));
  gap: clamp(20px, 3vw, 28px);
  margin-top: clamp(30px, 5vw, 40px);
}

.service-card {
  padding: clamp(24px, 4vw, 32px);
  border-radius: 10px;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-lighter);
}

.service-icon {
  font-size: clamp(40px, 8vw, 48px);
  margin-bottom: 16px;
}

.service-card h3 {
  margin: 16px 0;
}

.service-card p {
  margin-bottom: 20px;
}

.service-price {
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 700;
  color: var(--accent);
}

/* ABOUT SECTION */
.about {
  background-color: var(--gray-50);
  padding: clamp(40px, 10vw, 80px) 16px;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,0 L0,0 Z" fill="%23ffffff" opacity="0.5"></path></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.about-container > div:last-child {
  max-width: 600px;
  margin: 0 auto;
}

.about-text h2 {
  margin-bottom: 12px;
}

.about-text h3 {
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}

.about-text p {
  margin-bottom: 18px;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: auto;
  max-width: 600px;
  margin: 0 auto;
  padding: 15px;
  background-image: url('../images/leaf-frame.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--white);
  box-sizing: border-box;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  max-width: 100%;
}

/* PRICES SECTION */
.prices {
  background-color: var(--white);
  padding: clamp(40px, 10vw, 80px) 16px;
  position: relative;
}

.prices::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,0 L0,0 Z" fill="%23f5f5f5" opacity="0.5"></path></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

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

.prices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 100%, 350px), 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(30px, 5vw, 40px);
}

.price-card {
  padding: clamp(24px, 4vw, 36px);
  border-radius: 10px;
  background-color: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-lighter);
}

.price-card h3 {
  margin-bottom: 28px;
  text-align: center;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  gap: 12px;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item-name {
  font-size: clamp(13px, 2.5vw, 15px);
  color: var(--gray-700);
  font-weight: 500;
}

.price-item-value {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

/* CONTACT SECTION */
.contact {
  background-color: var(--gray-50);
  padding: clamp(40px, 10vw, 80px) 16px;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 12px;
}

.contact-item {
  margin-bottom: 32px;
}

.contact-item h3 {
  margin-bottom: 12px;
}

.contact-item p {
  margin-bottom: 0;
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  padding: clamp(10px, 2vw, 12px) clamp(20px, 3vw, 28px);
  border: none;
  border-radius: 6px;
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 16px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-200);
  width: 100%;
}

.contact-map iframe {
  width: 100%;
  height: clamp(300px, 50vw, 400px);
  border: none;
  display: block;
}

/* CTA SECTION */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: clamp(40px, 10vw, 80px) 16px;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta p {
  color: var(--white);
  margin-bottom: 32px;
  opacity: 0.95;
}

.btn-secondary {
  background-color: var(--accent);
  color: var(--primary);
  padding: clamp(12px, 2vw, 14px) clamp(24px, 4vw, 36px);
  border: none;
  border-radius: 6px;
  font-size: clamp(13px, 2.5vw, 15px);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-secondary:hover {
  background-color: #e5c158;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* FOOTER */
footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: clamp(30px, 5vw, 48px) 16px clamp(16px, 3vw, 24px);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 100%, 280px), 1fr));
  gap: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(20px, 3vw, 32px);
}

.footer-section h3 {
  color: var(--white);
  font-size: clamp(14px, 2.5vw, 16px);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-section p,
.footer-section a {
  font-size: clamp(12px, 2.2vw, 14px);
  opacity: 0.85;
  line-height: 1.8;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: clamp(16px, 3vw, 24px);
  text-align: center;
  font-size: clamp(11px, 2vw, 13px);
  opacity: 0.7;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: clamp(20px, 5vw, 30px);
  right: clamp(20px, 5vw, 30px);
  width: clamp(50px, 12vw, 56px);
  height: clamp(50px, 12vw, 56px);
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  font-size: clamp(24px, 5vw, 28px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:active {
  transform: scale(1.05);
}

/* RESPONSIVE - TABLET */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 12px;
  }

  .hero-container,
  .about-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 40px);
  }

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

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 12px;
    border-bottom: 1px solid var(--gray-100);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  nav.active {
    max-height: 500px;
  }

  nav a {
    padding: 8px 12px;
    font-size: 13px;
    display: block;
  }

  .menu-toggle {
    display: block;
  }

  .header-container {
    position: relative;
    padding: 0 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
  }

  .logo {
    white-space: nowrap;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    padding: 12px 16px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-text h1 {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .hero-text h2 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .hero-text p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  .services {
    padding: 30px 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

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

  .service-card {
    padding: 20px;
  }

  .service-icon {
    font-size: 40px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-price {
    font-size: 22px;
  }

  .about {
    padding: 30px 16px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }



  .about-text h2 {
    font-size: 28px;
  }

  .about-text h3 {
    font-size: 16px;
  }

  .about-text p {
    font-size: 14px;
  }

  .about-image {
    max-width: 100%;
    margin: 0 auto;
  }

  .prices {
    padding: 30px 16px;
  }

  .prices-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price-card {
    padding: 20px;
  }

  .price-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .price-item {
    padding: 12px 0;
  }

  .price-item-name {
    font-size: 13px;
  }

  .price-item-value {
    font-size: 16px;
  }

  .contact {
    padding: 30px 16px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info h2 {
    font-size: 28px;
  }

  .contact-item h3 {
    font-size: 16px;
  }

  .contact-item p {
    font-size: 14px;
  }

  .contact-map iframe {
    height: 250px;
  }

  .cta {
    padding: 30px 16px;
  }

  .cta h2 {
    font-size: 28px;
  }

  .cta p {
    font-size: 14px;
  }

  footer {
    padding: 24px 16px 16px;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-section h3 {
    font-size: 14px;
  }

  .footer-section p,
  .footer-section a {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 11px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

  .contact-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

/* RESPONSIVE - SMALL MOBILE */
@media (max-width: 480px) {
  .header-container {
    padding: 0 12px;
  }



  .hero {
    padding: 24px 12px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .hero-text h2 {
    font-size: 18px;
  }

  .hero-text p {
    font-size: 13px;
    line-height: 1.6;
  }

  .btn-primary,
  .btn-secondary {
    padding: 11px 20px;
    font-size: 13px;
  }

  .services {
    padding: 24px 12px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .service-card {
    padding: 16px;
  }

  .service-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .service-card h3 {
    font-size: 16px;
    margin: 12px 0;
  }

  .service-card p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .service-price {
    font-size: 20px;
  }

  .about {
    padding: 24px 12px;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .about-text h3 {
    font-size: 15px;
  }

  .about-text p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .prices {
    padding: 24px 12px;
  }

  .price-card {
    padding: 16px;
  }

  .price-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .price-item {
    padding: 10px 0;
  }

  .price-item-name {
    font-size: 12px;
  }

  .price-item-value {
    font-size: 15px;
  }

  .contact {
    padding: 24px 12px;
  }

  .contact-container {
    gap: 16px;
  }

  .contact-info h2 {
    font-size: 24px;
  }

  .contact-item h3 {
    font-size: 15px;
  }

  .contact-item p {
    font-size: 13px;
  }

  .contact-map iframe {
    height: 220px;
  }

  .cta {
    padding: 24px 12px;
  }

  .cta h2 {
    font-size: 24px;
  }

  .cta p {
    font-size: 13px;
  }

  footer {
    padding: 20px 12px 12px;
  }

  .footer-section h3 {
    font-size: 13px;
  }

  .footer-section p,
  .footer-section a {
    font-size: 11px;
  }

  .footer-bottom {
    font-size: 10px;
  }

  .whatsapp-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
    bottom: 16px;
    right: 16px;
  }
}
