/* Base styles and variables */
:root {
  --primary: #005f60;
  --secondary: #ff6f5e;
  --accent: #f7e733;
  --background: #f8f6f3;
  --text: #333333;
  --gradient: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  --transition: all 0.3s ease;
  --radius: 8px;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
}

h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient);
  margin-top: 10px;
}

section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 120px;
}

/* Section dividers with diagonal backgrounds */
.diagonal-divider {
  position: relative;
}

.diagonal-divider:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--background);
  transform: skewY(-3deg);
  transform-origin: 0;
  z-index: 1;
}

/* Button styles */
.btn, .cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gradient);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 111, 94, 0.3);
  text-align: center;
}

.btn:hover, .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 111, 94, 0.4);
}

/* Header styles */
.site-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  line-height: 40px;
  display: block;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--secondary);
}

.mobile-menu-toggle {
  display: none;
}

/* Footer styles */
.site-footer {
  background-color: #002a2b;
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-about p {
  margin-top: 20px;
  opacity: 0.8;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
}

.footer-links a,
.footer-legal a,
.footer-contact a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: var(--transition);
  display: block;
  padding: 5px 0;
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-contact a:hover {
  color: var(--secondary);
}

.footer-contact address {
  font-style: normal;
  opacity: 0.8;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Cookie popup */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0,0,0,0.9);
  color: white;
  padding: 15px 0;
  z-index: 9999;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-content p {
  margin-right: 20px;
}

.cookie-content a {
  color: var(--accent);
}

/* Order form */
.order-form {
  background-color: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(247, 231, 51, 0.3);
}

.form-group .icon {
  position: absolute;
  left: 12px;
  top: 12px;
  color: var(--primary);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.form-check input {
  margin-top: 5px;
  margin-right: 10px;
}

.form-check label {
  font-size: 0.9rem;
}

.form-check a {
  color: var(--primary);
}

/* Common page styles */
.page-header {
  background-color: var(--primary);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: white;
}

.page-content {
  padding: 60px 0;
}

/* Policy pages shared styling */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}

.policy-container h2 {
  margin-top: 30px;
}

.policy-container p,
.policy-container ul {
  margin-bottom: 20px;
}

.policy-container ul {
  padding-left: 20px;
}

/* Hero section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero h1 {
  color: white;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* About section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 100%;
  height: auto;
}

.about-features {
  list-style: none;
  margin-top: 20px;
}

.about-features li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.about-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

/* Services section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon img {
  border-radius: var(--radius);
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.service-card h3 {
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 20px;
}

/* Benefits section */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.benefits-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

/* Testimonials section */
.testimonials-section {
  background-color: #f0f5f5;
  padding: 80px 0;
}

.testimonial-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  margin: 0 10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-info p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Pricing section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background-color: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.popular:before {
  content: 'Mais Popular';
  position: absolute;
  top: 12px;
  right: -30px;
  transform: rotate(45deg);
  background: var(--gradient);
  color: white;
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: bold;
}

.pricing-card h3 {
  margin-bottom: 10px;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 20px;
}

.pricing-card .price span {
  font-size: 1rem;
  opacity: 0.7;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Order form section */
.order-form-section {
  background-color: #f0f5f5;
  padding: 80px 0;
}

/* FAQ section */
.faq-section {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

h2.text-center:after {
  margin-left: auto;
  margin-right: auto;
}

/* Contact section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.contact-info {
  height: fit-content;
}
