/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
}

:root {
  /* Cores baseadas na paleta da logo */
  --primary-teal: #7bbab5; /* Espuma do Mar */
  --secondary-teal: #5a9b96; /* Tom mais escuro do teal */
  --dark-teal: #4a7c78; /* Verde escuro */
  --coral-pink: #ff9b9b; /* Lichia/Rosa coral */
  --light-coral: #ffb5b5; /* Tom mais claro do coral */
  --graphite: #464646; /* Grafite */
  --light-blue: #b8d4e3; /* Azul carinho */
  --light-mint: #e8f4f2; /* Espuma do Mar claro */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: var(--white);
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(123, 186, 181, 0.1);
  border-bottom: 1px solid rgba(123, 186, 181, 0.1);
}

.navbar {
  padding: 1.2rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 55px;
  width: auto;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--primary-teal);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-teal);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--light-mint) 0%,
    var(--primary-teal) 50%,
    var(--secondary-teal) 100%
  );
  color: var(--white);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  flex: 1;
  max-width: 650px;
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero h1 span {
  color: var(--coral-pink);
  font-weight: 400;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: var(--coral-pink);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--light-coral);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 155, 155, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-teal);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--coral-pink);
  border: 2px solid var(--coral-pink);
}

.btn-outline:hover {
  background: var(--coral-pink);
  color: var(--white);
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
}

.hero-placeholder {
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-placeholder i {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  color: var(--coral-pink);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-placeholder p {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.9;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  position: relative;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--coral-pink), var(--primary-teal));
  border-radius: 2px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* About Section */
.about {
  padding: 120px 0;
  background: var(--light-gray);
}

.about-content {
  max-width: 1100px;
  margin: 0 auto;
}

.about-story p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  text-align: justify;
  line-height: 1.8;
}

.mission-vision {
  margin: 5rem 0;
}

.mission-vision h3 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary-teal);
  margin-bottom: 3rem;
  font-weight: 500;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.mvv-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(123, 186, 181, 0.1);
  border: 1px solid rgba(123, 186, 181, 0.1);
  transition: transform 0.3s ease;
}

.mvv-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(123, 186, 181, 0.15);
}

.mvv-item h4 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.mvv-item i {
  color: var(--coral-pink);
  font-size: 1.5rem;
}

.mvv-item p {
  line-height: 1.7;
  color: var(--text-light);
}

.values h4 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.value-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(123, 186, 181, 0.08);
  border: 1px solid rgba(123, 186, 181, 0.1);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(123, 186, 181, 0.15);
}

.value-item i {
  font-size: 2.5rem;
  color: var(--primary-teal);
  margin-bottom: 1.5rem;
}

.value-item h5 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.value-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Structure Section */
.structure {
  padding: 120px 0;
  background: var(--white);
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.structure-item {
  background: linear-gradient(
    135deg,
    var(--primary-teal) 0%,
    var(--secondary-teal) 100%
  );
  color: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(123, 186, 181, 0.2);
  position: relative;
  overflow: hidden;
}

.structure-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.structure-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 45px rgba(123, 186, 181, 0.3);
}

.structure-item:hover::before {
  opacity: 1;
}

.structure-item i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--coral-pink);
  position: relative;
  z-index: 2;
}

.structure-item h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.structure-item p {
  opacity: 0.95;
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* Recreation Section */
.recreation {
  padding: 120px 0;
  background: var(--light-gray);
}

.recreation-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.recreation-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 5px 25px rgba(123, 186, 181, 0.08);
  border: 1px solid rgba(123, 186, 181, 0.1);
  transition: all 0.3s ease;
}

.recreation-item:hover {
  transform: translateX(15px);
  box-shadow: 0 8px 35px rgba(123, 186, 181, 0.15);
}

.recreation-item i {
  font-size: 2.5rem;
  color: var(--primary-teal);
  min-width: 60px;
  background: var(--light-mint);
  padding: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recreation-item h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.recreation-item p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.5;
}

.recreation-highlight {
  text-align: center;
  background: linear-gradient(135deg, var(--coral-pink), var(--primary-teal));
  color: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(123, 186, 181, 0.2);
}

.recreation-highlight h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Packages Section */
.packages {
  padding: 120px 0;
  background: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.package-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(123, 186, 181, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral-pink), var(--primary-teal));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 45px rgba(123, 186, 181, 0.2);
}

.package-card:hover::before {
  transform: scaleX(1);
}

.package-card.featured {
  border-color: var(--coral-pink);
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 155, 155, 0.2);
}

.package-card.featured::before {
  transform: scaleX(1);
}

.package-header {
  margin-bottom: 2rem;
}

.package-header i {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 1.5rem;
  background: var(--light-mint);
  padding: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.package-card.featured .package-header i {
  color: var(--coral-pink);
  background: rgba(255, 155, 155, 0.1);
}

.package-header h3 {
  color: var(--text-dark);
  font-size: 1.4rem;
  font-weight: 600;
}

.package-card p {
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-size: 1rem;
}

/* Location Section */
.location {
  padding: 120px 0;
  background: var(--light-gray);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(123, 186, 181, 0.08);
  border: 1px solid rgba(123, 186, 181, 0.1);
  transition: all 0.3s ease;
}

.location-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(123, 186, 181, 0.15);
}

.location-item i {
  font-size: 2rem;
  color: var(--coral-pink);
  margin-top: 0.2rem;
  background: rgba(255, 155, 155, 0.1);
  padding: 12px;
  border-radius: 50%;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-item h4 {
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.location-item p {
  color: var(--text-light);
  line-height: 1.6;
}

.address-link {
  color: var(--coral-pink);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.address-link:hover {
  color: var(--light-coral);
  text-decoration: underline;
  transform: translateY(-2px);
}

.address-link i {
  font-size: 0.8rem;
  margin-left: 0.5rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.address-link:hover i {
  opacity: 1;
  transform: translateX(2px);
}

.map-container {
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(123, 186, 181, 0.2);
  border: 3px solid var(--light-mint);
  transition: all 0.3s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(123, 186, 181, 0.3);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 17px;
}

.map-container p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: var(--light-gray);
  margin: 0;
  padding: 2rem;
  text-align: center;
  color: var(--text-dark);
}

.map-container p a {
  color: var(--coral-pink);
  text-decoration: none;
  font-weight: 600;
  margin-left: 0.5rem;
}

.map-container p a:hover {
  color: var(--light-coral);
  text-decoration: underline;
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background: var(--white);
  overflow-x: hidden;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(123, 186, 181, 0.1);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(123, 186, 181, 0.1);
}

.contact-item:has(.fa-whatsapp):hover {
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.2);
}

.contact-item i {
  font-size: 2rem;
  color: var(--primary-teal);
  min-width: 50px;
  background: var(--white);
  padding: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(123, 186, 181, 0.1);
}

.contact-item .fa-whatsapp {
  color: #25D366;
  background: rgba(37, 211, 102, 0.1);
}

.contact-item:hover .fa-whatsapp {
  color: #128C7E;
  background: rgba(37, 211, 102, 0.2);
}

.contact-item h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-item a {
  color: var(--coral-pink);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--light-coral);
  text-decoration: underline;
}

.contact-form {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(123, 186, 181, 0.1);
  max-width: 100%;
  box-sizing: border-box;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(123, 186, 181, 0.2);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(123, 186, 181, 0.1);
}

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

/* Footer */
.footer {
  background: var(--graphite);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-logo-link:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

.footer-logo-image {
  height: 60px;
  width: auto;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-logo p {
  opacity: 0.9;
  line-height: 1.6;
  font-size: 1.05rem;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 1.5rem;
  color: var(--coral-pink);
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-links a:hover {
  color: var(--primary-teal);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 1rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.footer-contact i {
  color: var(--primary-teal);
  margin-right: 1rem;
  font-size: 1.1rem;
  min-width: 20px;
}

.footer-contact .fa-whatsapp {
  color: #25D366;
}

.footer-whatsapp {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-whatsapp:hover {
  color: #25D366;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(123, 186, 181, 0.3);
  opacity: 0.8;
  font-size: 0.95rem;
} /*
 Responsive Design */
@media (max-width: 768px) {
  /* Prevent horizontal overflow */
  html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .container {
    padding: 0 10px;
    max-width: 100%;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    border-top: 1px solid rgba(123, 186, 181, 0.1);
    margin: 0;
  }

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

  .nav-menu li {
    margin: 1.5rem 0;
  }
  
  .nav-menu a {
    font-size: 1.1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-image {
    height: 45px;
  }
  
  .logo-link:hover {
    transform: scale(1.03);
  }

  .footer-logo-image {
    height: 55px;
  }
  
  .footer-logo-link:hover {
    transform: scale(1.03);
  }
  
  /* Header adjustments */
  .header {
    padding: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0;
  }
  
  .nav-container {
    padding: 0 10px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-height: 60px;
  }
  
  .navbar {
    padding: 1rem 0;
  }
  
  /* Ensure all sections use full width */
  .about,
  .structure,
  .recreation,
  .packages,
  .location,
  .contact,
  .hero {
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Grid adjustments */
  .structure-grid,
  .packages-grid,
  .recreation-list,
  .values-grid {
    padding: 0 10px;
  }
  
  .mvv-grid {
    padding: 0 10px;
  }

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

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    padding: 120px 0 50px;
  }
  
  .hero .container {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

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

  .hero-content {
    margin-bottom: 2rem;
  }

  .hero-image {
    order: -1;
    margin-bottom: 2rem;
  }

  .hero-placeholder {
    width: 200px;
    height: 200px;
  }

  .hero-placeholder i {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

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

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

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .structure-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .structure-item {
    padding: 1.5rem;
  }

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

  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-item {
    padding: 1.5rem;
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    margin: 0 10px;
  }
  
  .contact-item div {
    flex: 1;
    min-width: 0;
  }
  
  .contact-item a {
    word-break: break-word;
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .contact-form {
    padding: 2rem;
    margin: 0 10px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 8px;
    max-width: 100%;
  }

  .hero {
    padding: 100px 0 30px;
  }
  
  .hero .container {
    padding: 0 15px;
  }

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 250px;
  }

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

  .section-header p {
    font-size: 1rem;
  }

  .about,
  .structure,
  .recreation,
  .packages,
  .location,
  .contact {
    padding: 60px 0;
  }

  .structure-grid,
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .structure-item,
  .package-card {
    padding: 1.5rem;
    margin: 0 8px;
  }

  .recreation-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    margin: 0 8px;
  }

  .recreation-item i {
    min-width: auto;
  }

  .contact-form {
    padding: 1.5rem;
    margin: 0 8px;
  }
  
  .contact-item {
    padding: 1.2rem;
    margin: 0 8px;
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }
  
  .contact-item i {
    font-size: 1.5rem;
    padding: 10px;
  }
  
  .contact-item .fa-whatsapp {
    color: #25D366;
  }
  
  .contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .contact-item a {
    font-size: 0.85rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .hero-placeholder {
    width: 150px;
    height: 150px;
  }

  .hero-placeholder i {
    font-size: 2rem;
  }

  .map-container {
    height: 250px;
  }
  
  /* Header full width */
  .nav-container {
    padding: 0 8px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animations */
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
  animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
  animation: fadeInRight 0.6s ease-out;
}

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

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus,
.nav-menu a:focus {
  outline: 2px solid #4ecdc4;
  outline-offset: 2px;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--coral-pink);
  color: white;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(255, 155, 155, 0.3);
  transition: all 0.3s ease;
  z-index: 998;
}

.scroll-to-top:hover {
  background: var(--light-coral);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 155, 155, 0.4);
}

/* Mobile adjustments for scroll button */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero {
    background: #000;
    color: #fff;
  }

  .structure-item {
    background: #000;
    border: 2px solid #fff;
  }

  .package-card {
    border: 2px solid #000;
  }
}
