:root {
  --primary: #205e61;
  --primary-dark: #164347;
  --mint: #9ed8d3;
  --light-bg: #f9fdf9;
  --gray: #636e72;
  --dark: #2d3436;
  --shadow: 0 8px 25px rgba(0,0,0,0.08);
  --blue-logo: #205e61;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light-bg);
  color: var(--dark);
}

html {
  scroll-padding-top: 100px;
}

section {
  width: 100%;
  box-sizing: border-box;
}

.container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Header */
header {
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-svg {
  height: 40px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
}

.btn-marcar {
  background: var(--primary);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-marcar:hover {
  background: var(--primary-dark);
}

/* Hero */
.hero {
  background: var(--light-bg);
  padding: 80px 0;
  width: 100%;
  box-sizing: border-box;
}

.hero .container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Desktop */
@media (min-width: 769px) {
  .hero .container {
    max-width: 1200px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    max-width: 100% !important;
    padding: 0 5px !important;
  }
  
  .hero .container {
    max-width: none !important;
    padding: 0 5px !important;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.highlight {
  color: var(--primary);
}

.badges {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  margin-top: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.badge {
  background: var(--mint);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
}

.hero-text p {
  margin-bottom: 12px;
  line-height: 1.5;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.hero-image-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.float-card {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  font-size: 0.9rem;
  white-space: nowrap;
}

.small-note {
  color: var(--gray);
  font-size: 0.75rem;
  margin-top: 8px;
  display: block;
  white-space: nowrap;
}





/* Como Funciona */
#como-funciona {
  background: var(--light-bg) !important;
  padding: 80px 0;
  width: 100%;
  box-sizing: border-box;
}

#como-funciona .container {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--gray);
  font-size: 1.1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 40px;
  width: 100%;
}

.step-card {
  background: white;
  border-radius: 16px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}

.step-circle {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  line-height: 50px;
  font-size: 1.4rem;
  font-weight: 700;
}

.step-icon {
  font-size: 2rem;
  margin: 15px 0 10px 0;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 10px 0 8px;
}

.step-desc {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.4;
}

.center-btn {
  text-align: center;
  margin-top: 30px;
}

/* Tabela Preços */
#tabela-precos {
  background: #9ed8d3;
  padding: 80px 0;
  display: block;
  margin-top: -80px;
}

.price-cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.price-card {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 40px 35px;
  width: 420px;
  text-align: center;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.price-card .icon {
  font-size: 5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.price-card:nth-child(1) .icon {
  color: var(--primary);
}

.price-card:nth-child(2) .icon {
  color: #f39c12;
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--primary-dark);
}

.price-block {
  margin: 25px 0;
}

.price-divider {
  width: 100%;
  height: 1px;
  background: #d1e8d6;
  margin: 20px 0;
}

.price-card p {
  text-align: left;
  margin-bottom: 8px;
  color: var(--gray);
  font-size: 1rem;
}

.price-card span {
  font-weight: bold;
  color: var(--primary);
  float: right;
}

.price-title {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
  font-size: 1.2rem;
  text-align: left;
}

.price-block span {
  font-weight: bold;
  color: var(--primary-dark);
}

.deslocacao-info {
  text-align: center;
  margin: 60px auto;
  background: white;
  padding: 15px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 2px solid #f0d400;
  max-width: 880px;
  transition: all 0.3s ease;
}

.deslocacao-info:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.deslocacao-icon {
  font-size: 3rem;
  color: #f0d400;
  margin-bottom: 10px;
}

.deslocacao-info h4 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.deslocacao-price {
  font-size: 2rem;
  color: var(--dark);
  margin: 10px 0 5px;
  font-weight: 700;
}

.price-value {
  color: var(--primary);
  font-weight: 700;
}

.deslocacao-subtitle {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 10px;
}

.deslocacao-info small {
  font-size: 0.85rem;
  color: var(--gray);
  display: block;
  margin-top: 10px;
}

.combine-note {
  text-align: center;
  font-style: italic;
  color: white;
  font-size: 1.1rem;
  margin: 40px auto 0;
  background: var(--primary);
  padding: 20px;
  border-radius: 16px;
  font-weight: 500;
  max-width: 880px;
}

/* Calculadora */
#calculadora {
  background: var(--light-bg);
  padding: 80px 0;
}

.calc-container {
  max-width: 900px;
  margin: 40px auto 0;
  background: #d4e8e5;
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

/* Layout de 2 colunas para datas */
.dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dates > div {
  display: flex;
  flex-direction: column;
}

.dates small {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

/* Layout de 2 colunas para animais */
.animais {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.animal-input {
  display: flex;
  flex-direction: column;
}

.animal-input small {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

input, select {
  width: 100%;
  padding: 14px;
  border: 1px solid #d1e8d6;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
}

input[type="date"],
input[type="date"]::-webkit-calendar-picker-indicator {
  font-family: 'Poppins', sans-serif;
}

select {
  background-color: white;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23636e72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 40px;
}

.toggle-visitas {
  display: flex;
  margin-top: 10px;
  gap: 10px;
}

.toggle-btn {
  flex: 1;
  padding: 14px;
  background: #f0f5f0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.toggle-btn.active {
  background: var(--primary);
  color: white;
}

.resumo {
  margin-top: 35px;
  padding: 25px;
  background: white;
  border-radius: 16px;
  box-shadow: inset 0 2px 10px rgba(0,0,0,0.03);
}

.resumo h3 {
  margin-bottom: 20px;
  color: var(--dark);
  font-size: 1.1rem;
}

.resumo-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: var(--gray);
  font-size: 0.95rem;
}

.resumo-item strong {
  color: var(--primary);
  font-weight: 700;
}

.resumo-divider {
  width: 100%;
  height: 1px;
  background: #d1e8d6;
  margin: 15px 0;
}

.resumo-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}

.resumo-total strong {
  color: var(--primary-dark);
  font-size: 1.5rem;
}

.total {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: right;
  margin-top: 20px;
}

.pedir {
  width: 100%;
  margin-top: 30px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 18px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}

.pedir:hover {
  background: var(--primary-dark);
}

.pedir i {
  font-size: 1.3rem;
}

.info {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  margin-top: 20px;
  line-height: 1.5;
}

/* FAQ */
#faq {
  background: var(--light-bg);
  padding: 80px 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.faq-item summary {
  padding: 20px 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--dark);
  background: #f0f5f0;
  border-left: 4px solid var(--primary);
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '▼';
  position: absolute;
  right: 30px;
  transition: 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 30px 30px;
  color: var(--gray);
}

.faq-contact {
  text-align: center;
  margin-top: 60px;
}

.faq-contact p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

/* Contacto */
#contacto {
  background: var(--light-bg);
  padding: 80px 0;
}

#contacto h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-left {
  padding-right: 20px;
}

.contact-left h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.contact-left > p {
  color: var(--gray);
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  gap: 20px;
}

.contact-item .icon-circle {
  width: 60px;
  height: 60px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .icon-circle i {
  font-size: 1.8rem;
  color: var(--primary);
}

.contact-item-content {
  flex: 1;
}

.contact-item strong {
  display: block;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-item .email-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.contact-item .email-link:hover {
  text-decoration: underline;
}

.contact-item small {
  color: var(--gray);
  display: block;
  font-size: 0.9rem;
}

.social {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #d1e8d6;
}

.social h4 {
  margin-bottom: 20px;
  color: var(--dark);
  font-size: 1rem;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 50px;
  height: 50px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.contact-right h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--dark);
}

.form-box {
  background: var(--mint);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-box h3 {
  color: var(--dark);
  margin-bottom: 30px;
  font-size: 1.3rem;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid #d1e8d6;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: white;
}

.form-box input::placeholder,
.form-box select::placeholder,
.form-box textarea::placeholder {
  color: #999;
}

.form-box label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-box textarea {
  resize: vertical;
  min-height: 120px;
}

.form-box button {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
  margin-top: 10px;
}

.form-box button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.form-box button i {
  font-size: 1.1rem;
}

.note {
  text-align: center;
  color: var(--gray);
  margin-top: 20px;
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
  color: #b2bec3;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-column li i,
.footer-column a i {
  color: var(--primary);
  width: 18px;
  margin-right: 8px;
}

.footer-column a {
  color: #b2bec3;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

.footer-column a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-logo-column {
  padding-right: 20px;
}

.footer-logo svg {
  height: 60px;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 0.9rem;
  color: #b2bec3;
  line-height: 1.6;
  margin: 0;
}

.footer-contact-column {
  display: flex;
  flex-direction: column;
}

.footer-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
  transition: 0.3s;
  font-family: 'Poppins', sans-serif;
}

.footer-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.footer-btn i {
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-socials a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.copyright {
  text-align: center;
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsivo Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo-column {
    padding-right: 0;
  }
}

/* =====================================
   RESPONSIVO - TABLET (768px)
   ===================================== */
@media (max-width: 1024px) {
  .hero-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .price-cards {
    flex-direction: column;
    gap: 30px;
  }
  
  .price-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .card-special {
    grid-column: 1 / -1;
  }
}

/* =====================================
   RESPONSIVO MOBILE (768px e abaixo)
   ===================================== */
@media (max-width: 768px) {
  /* GERAL */
  .container {
    padding: 0 15px;
  }
  
  section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  
  section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .subtitle {
    font-size: 1rem;
    margin: 0 auto 30px;
  }
  
  /* HEADER */
  header {
    padding: 15px 0;
  }
  
  .header-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .logo-svg {
    height: 30px;
  }
  
  nav ul {
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 10px;
  }
  
  nav a {
    font-size: 0.9rem;
  }
  
  .btn-marcar {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  /* HERO */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  
  .hero-text p {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .badges {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }
  
  .badge {
    font-size: 0.85rem;
    padding: 5px 12px;
    width: 100%;
    text-align: center;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-primary,
  .btn-outline {
    padding: 12px 24px;
    font-size: 0.95rem;
    width: 100%;
  }
  
  .small-note {
    white-space: nowrap !important;
    font-size: 0.65rem !important;
    overflow: visible !important;
  }
  
  .hero-image-container {
    min-height: auto;
  }
  
  .float-card {
    font-size: 0.8rem;
    padding: 8px 12px;
    bottom: 10px;
    right: 10px;
  }
  
  /* COMO FUNCIONA */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .step-card {
    padding: 20px 15px;
  }
  
  .step-circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.2rem;
  }
  
  .step-icon {
    font-size: 1.8rem;
  }
  
  .step-title {
    font-size: 1rem;
  }
  
  .step-desc {
    font-size: 0.9rem;
  }
  
  /* PORQUE ESCOLHER */
  #porque-escolher .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  #porque-escolher h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  #porque-escolher .subtitle {
    text-align: center;
  }
  
  #porque-escolher .image-grid img:first-child {
    height: 200px;
  }
  
  #porque-escolher .small-images img {
    height: 150px;
  }
  
  #porque-escolher .benefits {
    gap: 15px;
  }
  
  #porque-escolher .benefits li i {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  /* O QUE ESTÁ INCLUÍDO */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card {
    padding: 20px;
  }
  
  .card-special {
    grid-column: 1;
    width: 100%;
  }
  
  .card .icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  /* TABELA PREÇOS */
  #tabela-precos {
    padding: 40px 0;
  }
  
  .price-cards {
    flex-direction: column;
    gap: 20px;
  }
  
  .price-card {
    width: 100%;
    max-width: none;
    padding: 30px 20px;
  }
  
  .price-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .price-card p {
    font-size: 0.9rem;
  }
  
  .deslocacao-info {
    padding: 20px;
    max-width: none;
    margin: 30px auto;
  }
  
  .deslocacao-icon {
    font-size: 2.5rem;
  }
  
  .deslocacao-price {
    font-size: 1.5rem;
  }
  
  .combine-note {
    font-size: 1rem;
    padding: 15px;
  }
  
  /* CALCULADORA */
  .calc-container {
    padding: 20px;
    margin: 30px auto 0;
    width: 100%;
  }
  
  .dates,
  .animais {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  label {
    font-size: 0.95rem;
  }
  
  input, select {
    padding: 12px;
    font-size: 1rem;
  }
  
  .toggle-btn {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .resumo {
    margin-top: 20px;
    padding: 15px;
  }
  
  .resumo h3 {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .resumo-item {
    font-size: 0.9rem;
  }
  
  .resumo-total {
    font-size: 1.1rem;
    padding: 12px 0;
  }
  
  .resumo-total strong {
    font-size: 1.3rem;
  }
  
  .pedir {
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 20px;
  }
  
  .info {
    font-size: 0.9rem;
  }
  
  /* RESERVA */
  #reserva h2 {
    font-size: 1.6rem;
  }
  
  #reserva .form-box {
    padding: 20px;
    border-radius: 15px;
    max-width: 100%;
    margin: 0 auto;
  }
  
  #reserva h3 {
    font-size: 1.1rem;
    margin-top: 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .form-box input,
  .form-box textarea {
    padding: 12px;
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .info-section textarea {
    min-height: 80px;
  }
  
  .resumo-reserva {
    padding: 15px;
    margin: 20px 0;
  }
  
  .resumo-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .resumo-grid > div {
    flex-direction: column;
    gap: 5px;
  }
  
  .radio-group {
    flex-direction: column;
    gap: 10px;
  }
  
  .disclaimer {
    padding: 15px;
    gap: 10px;
  }
  
  .btn-enviar {
    padding: 15px;
    font-size: 1rem;
  }
  
  /* FAQ */
  #faq {
    padding: 40px 0;
  }
  
  #faq .faq-list {
    padding: 20px;
    max-width: 100%;
  }
  
  .faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }
  
  .faq-item p {
    padding: 0 20px 20px;
    font-size: 0.9rem;
  }
  
  /* CONTACTO */
  #contacto h2 {
    font-size: 1.6rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-left {
    padding-right: 0;
  }
  
  .contact-left h3 {
    font-size: 1.3rem;
  }
  
  .contact-item {
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .contact-item .icon-circle {
    width: 50px;
    height: 50px;
  }
  
  .contact-item .icon-circle i {
    font-size: 1.5rem;
  }
  
  .contact-right h3 {
    font-size: 1.1rem;
  }
  
  /* CTA BANNER */
  #cta-banner {
    min-height: 400px;
    padding: 50px 0;
  }
  
  .cta-content {
    padding: 30px 15px;
  }
  
  #cta-banner .cta-icon {
    font-size: 3rem;
  }
  
  #cta-banner h2 {
    font-size: 1.6rem;
  }
  
  .cta-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .cta-btn {
    width: 100%;
  }
  
  .cta-badges {
    gap: 15px;
    margin-top: 20px;
  }
  
  /* FOOTER */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  footer {
    padding: 40px 0 30px;
  }
}

.bg-soft-green {
  background: #d4e8e5;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.image-grid img {
  width: 100%;
  border-radius: 16px;
}

.small-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
}

#porque-escolher h2 span {
  color: #205e61;
}

.benefits {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.benefits li {
  margin-bottom: 18px;
}

.benefits strong {
  display: block;
  margin-bottom: 4px;
}

#incluido {
  padding: 80px 0;
  text-align: center;
  background: white;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

#incluido .container {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
  width: 100%;
}

.card {
  background: #e8f3f7;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.card:hover {
  border: 1px solid var(--primary);
}

.card .icon {
  font-size: 28px;
  margin-bottom: 15px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease;
}

.card:hover .icon {
  transform: translateY(-6px) scale(1.15);
}

.card:nth-child(2) .icon {
  background: #205e61;
  color: white;
}

.card:nth-child(3) .icon {
  background: #2d7a79;
  color: white;
}

.card:nth-child(4) .icon {
  background: #164347;
  color: white;
}

.card:nth-child(5) .icon {
  background: #1b5558;
  color: white;
}

.card:nth-child(6) .icon {
  background: #164347;
  color: white;
}

.card-special {
  background: #d4e8e5;
  border: 1px solid transparent;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  grid-column: 1 / 4;
  width: 100%;
  justify-self: stretch;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.card-special:hover {
  border: 1px solid var(--primary);
}

.card-special .icon {
  background: var(--primary);
  margin: 0;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.card-special:hover .icon {
  transform: translateY(-6px) scale(1.15);
}

.card-special h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

.card-special p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

section > .container, .form-box, #calculadora, #faq, #contacto {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

#sobre h2, #sobre p.subtitle {
  text-align: center;
}

#sobre .steps-grid {
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 80px; /* espaço para a secção seguinte */
}

#porque-escolher .image-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#porque-escolher .image-grid img {
  max-width: 100%;
  object-fit: cover;
}

#porque-escolher .small-images {
  width: 100%;
  justify-content: center;
}

#incluido .cards-grid {
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}

#precos .nota-combinacao {
  margin-bottom: 50px;
}

#reserva .form-box {
  max-width: 1100px;
  margin: 0 auto 80px auto;
  position: relative;
}

#faq h2, #faq p.subtitle {
  text-align: center;
}

#faq {
  max-width: 1100px;
  margin: 0 auto 80px auto;
}

#contacto h2, #contacto p {
  text-align: center;
}

#contacto {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===============================
   AJUSTES DE HOMOGENEIZAÇÃO
   =============================== */

/* Centralizar títulos */
section h2,
section > .container > p,
.subtitle {
  text-align: center;
}

section h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

/* Espaço entre secções */
section {
  width: 100%;
  box-sizing: border-box;
}

/* PORQUE ESCOLHER — 2 colunas */
#porque-escolher {
  background: #d4e8e5;
  padding: 80px 0;
  width: 100%;
  box-sizing: border-box;
}

#porque-escolher .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

#porque-escolher .image-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

#porque-escolher .image-grid img:first-child {
  width: 100%;
  height: 265px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

#porque-escolher .small-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-top: 0;
}

#porque-escolher .small-images img {
  height: 265px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

#porque-escolher .content {
  padding-top: 20px;
}

#porque-escolher h2 {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 12px;
}

#porque-escolher h2 span {
  color: var(--primary);
}

#porque-escolher .subtitle {
  text-align: left;
  max-width: 100%;
  margin: 0 0 30px 0;
  font-size: 1rem;
  color: var(--gray);
}

#porque-escolher .benefits {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 0;
  padding: 0;
}

#porque-escolher .benefits li {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 15px;
  row-gap: 0;
  align-items: start;
}

#porque-escolher .benefits li i {
  color: var(--primary);
  font-size: 1.4rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint);
  border-radius: 50%;
  flex-shrink: 0;
}

#porque-escolher .benefits li strong {
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 0;
  line-height: 1.2;
  grid-column: 2;
}

#porque-escolher .benefits li p {
  margin: 0;
  margin-top: -10px;
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.4;
  grid-column: 2;
}
/* Tabela de preços – mais espaço interno */
.price-card {
  padding: 50px 45px;
}
/* Remove sensação de barra verde clara */
#calculadora {
  margin-top: 0;
  padding-top: 80px;
}
#reserva > .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
/* FAQ – largura homogénea */
#faq .faq-list {
  max-width: 900px;
}
/* =====================================
   AJUSTES DE FUNDOS, SEPARAÇÃO E CORES
   ===================================== */

/* 1️⃣ FUNDOS DAS SECÇÕES MAIS “LARGOS” QUE O CONTEÚDO */
section {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Conteúdo continua mais estreito */
section > .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* 2️⃣ REMOVE EFEITO DE “BARRA VERDE” ENTRE PREÇOS E CALCULADORA */
#tabela-precos {
  padding-bottom: 40px;
  padding-top: 40px;
}

#calculadora {
  padding-top: 80px;
}

/* 3️⃣ ALTERNÂNCIA DE CORES ENTRE SECÇÕES */
#tabela-precos,
#reserva {
  background: #d4e8e5 !important;
}

#faq,
#contacto {
  background: var(--light-bg);
}

/* 4️⃣ MAIS ESPAÇO ENTRE CALCULADORA E PROCESSO DE RESERVA */
.calc-container {
  margin-bottom: 60px;
}

/* 5️⃣ PROCESSO DE RESERVA – FUNDO SEPARADO E RESPIRÁVEL */
#reserva {
  padding-top: 80px;
  padding-bottom: 80px;
  animation: slideInUp 0.5s ease-out;
}


@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-4px);
  }
}

#reserva h2 {
  font-size: 2.3rem;
  margin-bottom: 10px;
}

#reserva > .container > .subtitle {
  margin-bottom: 40px;
}

#reserva .form-box {
  background: white;
  padding: 50px;
  border-radius: 20px;
  border: 2px solid var(--primary);
  max-width: 900px;
  margin: 0 auto;
}

/* Processo de Reserva */
.processo {
  background: #d4e8e5;
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  overflow: visible;
}

.processo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.processo-header i {
  font-size: 1.8rem;
  color: var(--primary);
}

.processo-header strong {
  font-size: 1.2rem;
  color: var(--dark);
}

.processo ul {
  list-style: none;
  padding: 0;
}

.processo li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--gray);
  font-size: 0.95rem;
}

.processo li i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Formulário */
#reserva h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 20px;
  margin-top: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-box input,
.form-box textarea {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
}

.info-section {
  margin-bottom: 25px;
}

.info-section label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  font-size: 1rem;
}

.info-section label i {
  color: var(--primary);
  font-size: 1.2rem;
}

.info-section textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #d1e8d6;
  border-radius: 10px;
  min-height: 100px;
  font-size: 0.95rem;
  resize: vertical;
}

.info-section small {
  display: block;
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 8px;
}

/* Resumo do Serviço */
.resumo-reserva {
  background: #d4e8e5;
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 25px;
  margin: 30px 0;
}

.resumo-reserva h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.resumo-reserva h4 i {
  color: var(--primary);
  font-size: 1.3rem;
}

.resumo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.resumo-grid > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.resumo-grid .label {
  color: var(--gray);
  font-weight: 500;
}

.resumo-grid .value {
  color: var(--primary);
  font-weight: 600;
}

.resumo-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #d1e8d6;
  font-weight: 600;
  font-size: 1.1rem;
}

.resumo-price .price {
  color: var(--primary-dark);
  font-size: 1.5rem;
}

.resumo-reserva small {
  display: block;
  color: var(--gray);
  font-size: 0.85rem;
  text-align: right;
  margin-top: 10px;
}

/* Forma de Contacto */
.contact-preference {
  margin: 30px 0;
}

.contact-preference > label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 1rem;
}

.radio-group {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.95rem;
}

.radio-item input[type="radio"] {
  cursor: pointer;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.radio-item span {
  color: var(--dark);
}

/* Disclaimer */
.disclaimer {
  background: #d4e8e5;
  padding: 20px;
  border-radius: 12px;
  margin: 30px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.disclaimer input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.disclaimer label {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
  cursor: pointer;
}

.disclaimer label i {
  color: var(--primary);
  margin-right: 5px;
}

/* Botão Enviar */
.btn-enviar {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
  margin: 30px 0 20px 0;
}

.btn-enviar:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-enviar i {
  font-size: 1.2rem;
}

/* Resposta */
.response-time {
  text-align: center;
  color: var(--primary);
  font-size: 0.95rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* 6️⃣ FAQ – COR DIFERENTE PARA MARCAR TRANSIÇÃO */
#faq {
  background: var(--light-bg);
  padding: 80px 0;
}

/* FAQ mantém largura controlada */
#faq .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

/* End of appended changes */

/* Center the "Enviar Pedido de Reserva" button inside reserva */
#reserva .form-box .btn-primary {
  display: block;
  margin: 24px auto 0;
  max-width: 360px;
}

/* =====================================
   CTA BANNER SECTION
   ===================================== */

#cta-banner {
  background: var(--primary-dark);
  padding: 100px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.cta-content {
  max-width: 700px;
  padding: 50px 20px;
}

#cta-banner .cta-icon {
  font-size: 4rem;
  color: white;
  margin-bottom: 20px;
}

#cta-banner h2 {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.cta-btn {
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.cta-btn-primary {
  background: white;
  color: var(--primary-dark);
}

.cta-btn-primary:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-btn-secondary:hover {
  background: white;
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.cta-badges {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  padding: 12px 18px;
}

.cta-badge i {
  font-size: 1.5rem;
}

.cta-badge span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsivo */
@media (max-width: 768px) {
  #cta-banner h2 {
    font-size: 1.8rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-btn {
    width: 100%;
  }

  .cta-badges {
    gap: 20px;
    margin-top: 20px;
  }
}

/* =====================================
   CORREÇÃO FINAL - MOBILE OPTIMIZADO
   ===================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

section {
  width: 100%;
  box-sizing: border-box;
  padding: 40px 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

#calculadora .container,
#reserva .container,
#faq .container {
  max-width: 100%;
  padding: 0 15px;
}

.calc-container {
  max-width: 100%;
  margin: 30px auto;
  padding: 20px 15px;
}

#reserva .form-box {
  max-width: 100%;
  width: 100%;
  padding: 20px 15px;
  margin: 0;
}

/* Media Query - Tablet e Desktop */
@media (min-width: 769px) {
  section {
    padding: 80px 0;
  }
  
  .container {
    max-width: 1200px;
    padding: 0 20px;
  }
  
  #calculadora .container,
  #reserva .container {
    max-width: 900px;
  }
  
  .calc-container {
    max-width: 900px;
    padding: 35px;
  }
  
  #reserva .form-box {
    max-width: 900px;
    padding: 50px;
  }
}

/* Mobile - 768px e abaixo */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 30px 0 !important;
  }
  
  section h2 {
    font-size: 1.5rem !important;
    margin-bottom: 12px;
  }
  
  .subtitle {
    font-size: 0.95rem !important;
  }
  
  /* HERO - CORREÇÃO COMPLETA */
  .hero {
    width: 100% !important;
    padding: 20px 0 !important;
  }
  
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    width: 100% !important;
    justify-items: center !important;
    align-items: center !important;
  }
  
  .hero-text {
    width: 100% !important;
    min-width: 0 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    overflow: hidden !important;
  }
  
  .hero-text h1 {
    font-size: 1.3rem !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }
  
  .hero-text p {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
  }
  
  .badges {
    flex-direction: column !important;
    gap: 8px !important;
    justify-content: center !important;
    width: 100% !important;
  }
  
  .badge {
    width: 100% !important;
    text-align: center !important;
    font-size: 0.75rem !important;
    padding: 5px 8px !important;
    white-space: normal !important;
  }
  
  .hero-buttons {
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
    justify-content: center !important;
  }
  
  .hero-image-container {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    display: flex !important;
    justify-content: center !important;
  }
  
  .hero-image {
    width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    display: block !important;
  }
  
  .float-card {
    font-size: 0.7rem !important;
    padding: 5px 8px !important;
    bottom: 5px !important;
    right: 5px !important;
    white-space: normal !important;
  }
  
  /* Steps Grid */
  .steps-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  /* Price Cards */
  .price-cards {
    flex-direction: column !important;
  }
  
  .price-card {
    width: 100% !important;
  }
  
  /* Cards Grid */
  .cards-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  .card-special {
    grid-column: 1 !important;
  }
  
  /* Porque Escolher */
  #porque-escolher .container {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  #porque-escolher .image-grid img:first-child,
  #porque-escolher .small-images img {
    height: 150px !important;
  }
  
  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  
  /* Forms */
  .dates,
  .animais,
  .form-grid {
    grid-template-columns: 1fr !important;
  }
  
  input, select, textarea {
    padding: 12px !important;
    font-size: 1rem !important;
  }
  
  /* Buttons */
  .btn-primary, .btn-outline, .pedir, .btn-enviar {
    width: 100% !important;
    padding: 14px 16px !important;
    font-size: 1rem !important;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.show {
  display: flex;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}