/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a73e8;
  --primary-dark: #1557b0;
  --primary-light: #4dabf7;
  --secondary: #f8f9fa;
  --text-primary: #333;
  --text-secondary: #666;
  --text-muted: #888;
  --white: #fff;
  --border: #e0e0e0;
  --success: #34a853;
  --success-bg: #e6f4ea;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Account for fixed header */
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.3;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.divider {
  width: 80px;
  height: 3px;
  background-color: var(--primary);
  margin: 15px auto 25px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: "Montserrat", sans-serif;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 6px rgba(26, 115, 232, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(26, 115, 232, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background-color: #e2e6ea;
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-block {
  display: block;
  width: 100%;
}

.btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo img {
  height: 60px;
  transition: var(--transition);
  border-radius: 55px;
}

.logo{
  mix-blend-mode: multiply;
  border-radius: 20px;
}


.logo:hover img {
  opacity: 0.9;
}

.nav-desktop ul {
  display: flex;
  gap: 30px;
}

.nav-desktop a {
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--primary);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.phone i {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
}

.menu-toggle:hover {
  color: var(--primary);
}

.nav-mobile {
  display: none;
  background-color: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-mobile a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--primary);
}

.phone.mobile {
  margin: 15px 0;
}

.mobile-btn {
  margin-top: 15px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  background-image: url("img/fundo5.webp");
  background-size: cover;
  background-position: center;
  color: var(--white);
  margin-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
 
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.3s;
  margin-top: 120px;
}

.hero h1 span {
  color: var(--primary-light);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.6s;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.9s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--white);
}

.about-content {
  display: flex;
  gap: 60px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-content.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.about-image:hover {
  transform: scale(1.02);
}

.about h3 {
  font-size: 1.5rem;
  margin: 25px 0 15px;
  color: var(--primary);
}

.about p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.about p.lead {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-primary);
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat i {
  color: var(--primary);
  font-size: 1.2rem;
}

.stat span {
  font-weight: 600;
  color: var(--text-primary);
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--secondary);
}

.tabs {
  width: 100%;
}

.tab-header {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--border);
}

.tab-btn {
  background: none;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--primary);
}

.tab-btn.active {
  color: var(--primary);
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
}

.tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
}

.card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-body {
  padding: 25px;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.card-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-content.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.contact-form {
  background-color: var(--secondary);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.success-message {
  display: none;
  text-align: center;
  padding: 30px;
  background-color: var(--success-bg);
  border-radius: 8px;
  margin-top: 20px;
}

.success-message i {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 15px;
}

.success-message h4 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.success-message p {
  color: var(--text-secondary);
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.contact-details h3,
.business-hours h3,
.social-media h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.2rem;
  color: var(--primary);
  margin-top: 5px;
}

.info-item h4 {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.info-item p {
  color: var(--text-secondary);
}

.business-hours {
  margin: 30px 0;
}

.business-hours p {
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.social-media {
  margin-top: auto;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: var(--text-primary);
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 70px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about .footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-destinations h4,
.footer-newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links ul,
.footer-destinations ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-destinations a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover,
.footer-destinations a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 4px 0 0 4px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
  border-radius: 0 4px 4px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-desktop,
  .contact-info {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .about-content {
    flex-direction: column;
  }

  .about-text {
    order: 2;
  }

  .about-image {
    order: 1;
    margin-bottom: 40px;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .tab-header {
    flex-direction: column;
    border-bottom: none;
  }

  .tab-btn {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }

  .tab-btn.active::after {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-direction: column;
    gap: 15px;
  }
}


#chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
#chatbot-toggle {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}
#chatbot {
  display: none;
  width: 300px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  position: fixed;
  bottom: 80px;
  right: 20px;
}
#chatbot.active {
  display: block;
}
#chatbot-header {
  background: #007bff;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#chatbot-messages {
  padding: 10px;
  height: 200px;
  overflow-y: auto;
  font-size: 14px;
}
#chatbot-input-container {
  display: flex;
  border-top: 1px solid #ccc;
  padding: 5px;
}
#chatbot-input {
  flex: 1;
  border: none;
  padding: 5px;
  font-size: 14px;
}
#chatbot-send {
  background: #007bff;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}
.message {
  margin: 5px 0;
  padding: 5px;
  border-radius: 5px;
}
.user {
  background: #e0e0e0;
  text-align: right;
}
.bot {
  background: #d1e7fd;
}
