/* Reset and General Variables */
:root {
  --color-primary: #03B154;
  --color-secondary: #0BFC81;
  --color-highlight: #2CFF62;
  --color-accent-dark: #013D3D;
  --color-accent: #04CCAF;
  --color-light-teal: #06CACB;
  --color-dark: #121212;
  --color-white: #FFFFFF;
  --color-text: #333333;
  --color-light-bg: #F8F9FA;
  
  --font-base: 'Roboto', sans-serif;
  --transition-speed: 0.3s;
}

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

body {
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
  overflow-x: hidden;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--color-dark);
}

.text-white { color: var(--color-white) !important; }
.bg-dark { background-color: var(--color-dark) !important; }
.bg-light { background-color: var(--color-light-bg) !important; }
.highlight { color: var(--color-highlight); }
.section-title {
  text-align: center;
  font-size: 35px;
  margin-bottom: 40px;
}

/* Button */
.btn {
  display: inline-block;
  padding: 13px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 19px;
  text-align: center;
  transition: all var(--transition-speed);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  color: var(--color-white);
  box-shadow: 0 0 7px rgba(64, 255, 150, 0.49);
}

.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(64, 255, 150, 0.7);
}

.center-cta {
  text-align: center;
  margin-top: 36px;
}

/* Floating WA */
.floating-wa {
  position: fixed;
  right: 25px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  background-color: #27D045;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 35px;
  line-height: 60px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  transition: transform 0.3s;
}
.floating-wa:hover {
  transform: scale(1.1);
}
.wa-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  line-height: 20px;
  font-weight: bold;
}
.wa-tooltip {
  position: absolute;
  right: 80px;
  bottom: 15px;
  background: white;
  color: black;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.wa-tooltip.show { opacity: 1; }

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 90px;
  background-color: var(--color-white);
}
.header-logo {
  height: 90px;
  display: flex;
  align-items: center;
}
.header-logo img {
  max-height: 75px; 
  width: auto;
  object-fit: contain;
}
.header-lang {
  color: var(--color-text);
  font-weight: 500;
  display: flex;
  align-items: center;
}
.lang-btn {
  cursor: pointer;
  margin: 0 4px;
  transition: color 0.2s;
}
.lang-btn:hover {
  color: var(--color-primary);
}
/* Google Translate Overrides */
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon {
  display: none !important;
}
body, html {
  top: 0px !important;
}
.goog-te-gadget-simple {
  background-color: transparent !important;
  border: none !important;
  font-family: var(--font-base) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--color-text) !important;
  cursor: pointer;
}
.goog-te-gadget-simple .goog-te-menu-value span {
  color: var(--color-text) !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 660px;
  padding: 60px 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-content {
  flex: 1;
  max-width: 50%;
  color: var(--color-white);
  padding-right: 50px;
}
.hero-content h1 {
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--color-white);
}
.hero-content p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
}
.hero-slider {
  flex: 1;
  max-width: 50%;
  position: relative;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active { opacity: 1; }

/* Benefits */
.benefits-section {
  display: flex;
  justify-content: space-between;
  margin-top: -30px;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
}
.benefit-card {
  background: var(--color-white);
  flex: 0 0 32%;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform var(--transition-speed);
}
.benefit-card:hover { transform: translateY(-5px); }
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(4, 204, 175, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
}
.benefit-card h3 {
  color: var(--color-accent-dark);
  font-size: 23px;
  margin-bottom: 10px;
}
.benefit-card p {
  color: #555;
  font-size: 15px;
}

/* Choose Me Section */
.choose-me-section {
  background-image: url('');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0 60px 0;
  margin-top: 20px;
}
.choose-me-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}
.choose-image {
  flex: 1;
  text-align: center;
}
.choose-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.choose-list-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
}
.modern-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}
.m-card {
  background: var(--color-light-bg);
  padding: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: transform 0.3s, box-shadow 0.3s;
}
.m-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(4, 204, 175, 0.15);
  background: var(--color-white);
  border-color: rgba(4, 204, 175, 0.2);
}
.m-card.card-span {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
}
.m-card .card-icon {
  font-size: 20px;
  background: rgba(4, 204, 175, 0.12);
  color: var(--color-primary);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.m-card p {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--color-text);
  margin: 0;
}
.m-card p strong {
  color: var(--color-accent-dark);
}

/* Grid 2 Cols (Experiências, Lanchas) */
.experiences-section, .sea-tours-section, .about-me-section, .testimonials-section, .faq-section {
  padding: 80px 0;
}
.grid-2-col {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.experience-card {
  flex: 0 0 calc(50% - 15px);
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  transition: transform var(--transition-speed);
}
.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.experience-card img {
  width: 45%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}
.exp-content {
  padding: 25px;
  width: 55%;
}
.exp-content h3 {
  color: var(--color-accent-dark);
  font-size: 22px;
  margin-bottom: 10px;
}
.exp-content p {
  font-size: 14px;
  color: #444;
}
.experience-card.full-width {
  flex: 0 0 100%;
}
.experience-card.full-width img {
  width: 30%;
}
.experience-card.full-width .exp-content {
  width: 70%;
}

/* About Me */
.about-grid {
  display: flex;
  gap: 50px;
  align-items: center;
}
.about-grid img {
  width: 45%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.about-text {
  width: 55%;
}
.about-text p {
  font-size: 17px;
  margin-bottom: 20px;
}

/* Testimonials Carousel */
.testimonials-section { background: var(--color-light-teal); }
.carousel-track-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}
.carousel-track-wrapper::-webkit-scrollbar { height: 8px; }
.carousel-track-wrapper::-webkit-scrollbar-thumb { background: #04CCAF; border-radius: 4px; }
.carousel-track {
  display: flex;
  gap: 20px;
  align-items: center;
}
.carousel-track img {
  flex-shrink: 0;
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* FAQ Accordion */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
}
.accordion-btn {
  width: 100%;
  background: transparent;
  color: var(--color-highlight);
  border: none;
  padding: 20px;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
.accordion-btn:hover { background: rgba(255,255,255,0.05); }
.accordion-btn i { font-size: 14px; transition: transform 0.3s; }
.accordion-btn.active i { transform: rotate(180deg); }
.accordion-content {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}

/* Footer */
.footer-content {
  display: flex;
  justify-content: space-between;
  padding: 30px 20px;
  color: #bbb;
}
.footer-content h4 { font-weight: 400; font-size: 14px; color: #bbb;}

/* Media Queries */
@media (max-width: 991px) {
  .hero-container { flex-direction: column; }
  .hero-content, .hero-slider { max-width: 100%; width: 100%; flex: none; }
  .hero-slider { height: 350px; margin-top: 20px; }
  .hero-content { padding-right: 0; text-align: center; margin-bottom: 20px; }
  .hero-content h1 { font-size: 32px; }
  
  .benefit-card { flex: 0 0 100%; margin-bottom: 20px; }
  
  .choose-me-grid { flex-direction: column; }
  .modern-why-grid { grid-template-columns: 1fr; gap: 10px; }
  .m-card.card-span { grid-column: span 1; }
  
  .experience-card { flex: 0 0 100%; flex-direction: column; }
  .experience-card img, .exp-content { width: 100%; }
  .experience-card.full-width img, .experience-card.full-width .exp-content { width: 100%; }
  
  .about-grid { flex-direction: column; }
  .about-grid img, .about-text { width: 100%; }
  
  .footer-content { flex-direction: column; text-align: center; gap: 15px; }
}
