/* Common mobile styles for header and footer */

:root {
      --primary: #174d95;
      --secondary: #2b4c7e;
      --white: #ffffff;
      --light: #f5f5f5;
      --text-dark: #333333;
      --text-light: #666666;
      --shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

* {
  margin: 0.1;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light);
  overflow-x: hidden;
}
/* Email link style to avoid blue color */
a[href^="mailto:"] {
  color: white;
  text-decoration: underline;
}
/* Header */
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 15px;
}

/* Center ver alojamentos button */
.form-group a.btn-primary {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container img {
  height: 40px;
}

.hamburger {
  background: none;
  border: none;
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  background-color: var(--white);
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mobile-nav.show {
  display: block;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 15px;
}

.mobile-nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}
    footer {
      background: var(--primary);
      color: white;
      padding: 30px 20px 20px;
      text-align: center;
    }

    .footer-section {
      margin-bottom: 25px;
    }

    .footer-section h3 {
      margin-bottom: 15px;
      font-size: 1.2rem;
    }

    .social-links {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 15px;
    }

    .social-links a {
      color: white;
      font-size: 1.5rem;
    }

    .quick-links {
      list-style: none;
    }

    .quick-links li {
      margin-bottom: 10px;
    }

    .quick-links a {
      color: white;
      text-decoration: none;
    }

    .footer-bottom {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,0.2);
      font-size: 0.9rem;
    }
    
    .whatsapp-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25D366;
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      z-index: 99;
      text-decoration: none;
    }
    
    .whatsapp-tooltip {
      display: none;
    }
    
    /* Vertical pricing list styles */
    .vertical-pricing-list {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .vertical-pricing-item {
      background: #f9fbff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      padding: 1rem;
      color: #0d47a1;
      font-weight: 600;
    }
    .vertical-pricing-item .duration {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: #08306b;
    }
    .vertical-pricing-item .price-label {
      font-weight: 500;
      font-size: 0.85rem;
      color: #555;
      margin-top: 0.3rem;
    }
    .vertical-pricing-item .price-value {
      font-size: 1rem;
      font-weight: 700;
      color: #0d47a1;
    }
    
    /* Tablet and desktop styles */
    @media (min-width: 768px) {
      .header-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 30px;
      }
      
      .logo-container {
        margin-bottom: 0;
        width: 200px;
      }
      
      .main-nav {
        width: auto;
        overflow-x: visible;
      }
      
      .main-nav ul {
        gap: 1rem;
      }
      
      .main-nav a {
        font-size: 1rem;
      }
      
      .language-dropdown {
        margin-top: 0;
      }
      
      main {
        max-width: 800px;
        padding: 30px 40px;
        margin: 40px auto;
      }
      
      h1 {
        font-size: 2.2rem;
      }
      
      .section-title {
        font-size: 1.6rem;
      }
      
      table {
        font-size: 1rem;
        min-width: auto;
      }
      
      th, td {
        padding: 12px 15px;
      }
      
      .footer-content {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
      }
      
      .whatsapp-button {
        width: 60px;
        height: 60px;
        font-size: 2rem;
      }
      
      .whatsapp-tooltip {
        display: block;
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        background: #333;
        color: white;
        padding: 8px 12px;
        border-radius: 4px;
        font-size: 0.9rem;
        white-space: nowrap;
        opacity: 0;
        transition: opacity 0.3s;
      }
      
      .whatsapp-button:hover .whatsapp-tooltip {
        opacity: 1;
      }
    }
