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

 :root {
     --azul-profundo: #000985;
     --dourado-claro: #f5cc00;
     --branco: #ffffff;
     --font-heading: 'Playfair Display', serif;
     --font-body: 'Inter', sans-serif;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font-body);
     font-weight: 300;
     color: #1a1a1a;
     line-height: 1.6;
 }

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

 /* Header */
 .header {
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 10000;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     border-bottom: 1px solid rgba(0, 0, 0, 0.08);
 }

 .header-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 80px;
 }

 .logo {
     font-family: var(--font-heading);
     font-size: 22px;
     font-weight: 600;
     color: var(--azul-profundo);
     text-decoration: none;
 }

 .nav-desktop {
     display: flex;
     gap: 32px;
 }

 .nav-link {
     position: relative;
     font-size: 14px;
     font-weight: 400;
     color: var(--azul-profundo);
     text-decoration: none;
 }

 .nav-link::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: -6px;
     width: 0;
     height: 2px;
     background: var(--dourado-claro);
     transition: width 0.3s;
 }

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

 .header-actions {
     display: flex;
     align-items: center;
     gap: 16px;
 }

 .icon-btn {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     background: #f2f2f2;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--azul-profundo);
     text-decoration: none;
 }

 /* Language Switch */
 .lang-switch {
     position: relative;
     display: flex;
     background: #f1f1f1;
     border-radius: 999px;
     padding: 4px;
     width: 120px;
     height: 36px;
 }

 .lang-option {
     flex: 1;
     z-index: 2;
     border: none;
     background: none;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 5px;
     color: #7a7a7a;
     transition: color 0.25s;
 }

 .lang-option .country {
     font-size: 8px;
     font-weight: 600;
 }

 .lang-option .lang {
     font-size: 12px;
     font-weight: 700;
 }

 .lang-option.active {
     color: #ffffff;
 }

 .lang-slider {
     position: absolute;
     top: 4px;
     left: 4px;
     width: calc(50% - 2px);
     height: 28px;
     background: var(--azul-profundo);
     border-radius: 999px;
     transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
     z-index: 1;
 }

 .lang-slider.slide-right {
     transform: translateX(100%);
 }

 .menu-btn {
     display: none;
     font-size: 22px;
     background: none;
     border: none;
     cursor: pointer;
     color: var(--azul-profundo);
 }

 .mobile-menu {
     position: fixed;
     top: 80px;
     left: 0;
     width: 100%;
     overflow: hidden;
     max-height: 0;
     transition: max-height 0.35s ease;
     background: white;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     z-index: 9999;
 }

 .mobile-menu.active {
     max-height: 400px;
 }

 .mobile-nav {
     padding: 24px;
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 .mobile-nav a {
     font-size: 16px;
     font-weight: 400;
     color: #666;
     text-decoration: none;
     padding-bottom: 8px;
     border-bottom: 1px solid #eee;
 }

 /* Hero */
 .hero {
     position: relative;
     height: 100vh;
     min-height: 600px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(16, 20, 59, 0.7), rgba(10, 22, 184, 0.5)), url('hero-bg.jpg');
     background-size: cover;
     background-position: center;
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 10;
     text-align: center;
     max-width: 900px;
     padding: 0 20px;
 }

 .hero-line {
     display: block;
     width: 77px;
     height: 1px;
     background: linear-gradient(90deg, #d8a900, var(--dourado-claro));
     margin: 0 auto 16px;
 }

 .hero-title {
     font-family: var(--font-heading);
     font-size: clamp(48px, 8vw, 80px);
     font-weight: 700;
     color: white;
     margin-bottom: 20px;
 }

 .hero-subtitle {
     font-family: var(--font-heading);
     font-size: clamp(18px, 3vw, 24px);
     font-weight: 400;
     font-style: italic;
     color: white;
     margin-bottom: 25px;
 }

 .hero-description {
     font-size: clamp(14px, 2vw, 16px);
     font-weight: 300;
     color: rgba(255, 255, 255, 0.95);
     margin: 0 auto 35px;
     line-height: 1.8;
     max-width: 700px;
 }

 .btn {
     display: inline-block;
     padding: 14px 40px;
     font-size: 16px;
     font-weight: 500;
     text-decoration: none;
     border-radius: 10px;
     transition: all 0.3s;
 }

 .btn-primary {
     background: linear-gradient(135deg, #d8a900, #e6b800);
     color: #1a1a1a;
     box-shadow: 0 10px 25px rgba(245, 196, 0, 0.25);
 }

 .btn-primary:hover {
     transform: translateY(-3px);
 }

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

 .btn-outline:hover {
     background: var(--azul-profundo);
     color: white;
 }

 /* Gallery */
 .gallery-section {
     padding: 100px 20px;
     position: relative;
     z-index: 1;
 }

 .section-header {
     text-align: center;
     margin-bottom: 60px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 20px;
 }

 .section-header.column {
     flex-direction: column;
     gap: 10px;
 }

 .section-header h2 {
     font-family: var(--font-heading);
     font-size: clamp(32px, 5vw, 48px);
     font-weight: 700;
     color: var(--azul-profundo);
 }

 .decorative-line {
     width: 60px;
     height: 2px;
     background: linear-gradient(90deg, #d8a900, var(--dourado-claro));
 }

 .gallery-carousel {
     position: relative;
     max-width: 1400px;
     margin: 0 auto;
 }

 .gallery-track {
     display: flex;
     gap: 20px;
     overflow-x: auto;
     scroll-behavior: smooth;
     scrollbar-width: none;
     padding: 10px 0;
 }

 .gallery-track::-webkit-scrollbar {
     display: none;
 }

 .gallery-item {
     flex: 0 0 auto;
     width: 350px;
     cursor: pointer;
     transition: transform 0.3s;
 }

 .gallery-item:hover {
     transform: translateY(-10px);
 }

 .gallery-item img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     border-radius: 10px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
 }

 .gallery-caption {
     margin-top: 10px;
     font-size: 14px;
     font-weight: 400;
     color: var(--azul-profundo);
     text-align: center;
 }

 .carousel-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 50px;
     height: 50px;
     background: white;
     border: none;
     border-radius: 50%;
     color: var(--azul-profundo);
     cursor: pointer;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
     z-index: 10;
     transition: all 0.3s;
 }

 .carousel-btn:hover {
     background: var(--azul-profundo);
     color: white;
 }

 .carousel-btn-prev {
     left: -25px;
 }

 .carousel-btn-next {
     right: -25px;
 }

 /* Lightbox */
 .lightbox {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.95);
     z-index: 10000;
     align-items: center;
     justify-content: center;
 }

 .lightbox.active {
     display: flex;
 }

 .lightbox img {
     max-width: 90%;
     max-height: 90%;
     object-fit: contain;
 }

 .lightbox-close,
 .lightbox-prev,
 .lightbox-next {
     position: absolute;
     background: rgba(255, 255, 255, 0.1);
     border: none;
     color: white;
     cursor: pointer;
     padding: 15px;
     border-radius: 5px;
     transition: background 0.3s;
 }

 .lightbox-close:hover,
 .lightbox-prev:hover,
 .lightbox-next:hover {
     background: rgba(255, 255, 255, 0.2);
 }

 .lightbox-close {
     top: 20px;
     right: 20px;
     font-size: 24px;
 }

 .lightbox-prev {
     left: 20px;
 }

 .lightbox-next {
     right: 20px;
 }

 /* Dicas */
 .dicas-section {
     padding: 100px 20px;
     background: #f8f8f8;
 }

 .dicas-subtitle {
     font-size: 16px;
     font-weight: 300;
     color: #555;
 }

 .dicas-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 32px;
     margin-top: 60px;
 }

 .dica-card-img {
     background: white;
     border-radius: 14px;
     overflow: hidden;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s;
 }

 .dica-card-img:hover {
     transform: translateY(-8px);
 }

 .dica-card-img {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dica-img img {
    height: 220px; /* já tem, só garantindo */
}

.dica-card-img h3 {
    min-height: 48px;   /* ajusta conforme teu design */
}

.dica-card-img p {
    min-height: 60px;   /* ajusta conforme teu design */
}

.dica-link {
    display: block;
    height: 100%;       /* faz o link respeitar a altura do grid */
}


 .dica-img {
     position: relative;
 }

 .dica-img img {
     width: 100%;
     height: 220px;
     object-fit: cover;
 }

 .dica-badge {
     position: absolute;
     top: 14px;
     right: 14px;
     background: var(--dourado-claro);
     width: 36px;
     height: 36px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .dica-card-img h3 {
     font-family: var(--font-heading);
     font-size: 18px;
     font-weight: 600;
     color: var(--azul-profundo);
     padding: 18px 18px 6px;
 }

 .dica-card-img p {
     font-size: 14px;
     font-weight: 300;
     color: #555;
     padding: 0 18px 22px;
 }

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

 .dica-link {
    display: block;        /* não quebra o layout */
    text-decoration: none; /* tira o sublinhado */
    color: inherit;        /* não muda cor do texto */
}

 /* Heritage */
 .heritage-section {
     background: #ffffff;
     color: #000985;
     padding: 100px 20px 80px;
     text-align: center;
 }

 .heritage-feedback {
     margin-bottom: 50px;
 }

 .feedback-text {
     font-size: 20px;
     font-style: italic;
     max-width: 800px;
     margin: 0 auto 20px;
     line-height: 1.6;
     opacity: 0.95;
 }

 .feedback-author {
     font-size: 14px;
     opacity: 0.75;
     letter-spacing: 0.3px;
 }

 .heritage-divider {
     display: block;
     width: 60px;
     height: 2px;
     background: #f5cc00;
     margin: 50px auto;
 }

 /* Footer */
 .footer {
     background: #000985;
     color: #ffffff;
     padding: 80px 60px 30px;
 }

 .footer-container {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 60px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .footer h4 {
     font-size: 20px;
     margin-bottom: 12px;
     font-weight: 600;
 }

 .footer-line {
     display: block;
     width: 40px;
     height: 2px;
     background: #f5cc00;
     margin-bottom: 20px;
 }

 .footer p {
     font-size: 15px;
     line-height: 1.7;
     opacity: 0.9;
 }

 .footer-info p {
     margin-bottom: 10px;
 }

 .footer-col i {
     margin-right: 8px;
     font-size: 16px;
     opacity: 0.9;
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.2);
     margin-top: 60px;
     padding-top: 20px;
     text-align: center;
     font-size: 13px;
     opacity: 0.8;
 }

 .footer-col i {
     margin-right: 8px;
     font-size: 16px;
     opacity: 0.9;
 }


 /* WhatsApp */
 .whatsapp-float {
     position: fixed;
     bottom: 24px;
     right: 24px;
     width: 56px;
     height: 56px;
     background: #25d366;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
     z-index: 999;
     transition: transform 0.3s;
 }

 .whatsapp-float:hover {
     transform: scale(1.1);
 }

 .whatsapp-icon {
     width: 28px;
     height: 28px;
     fill: white;
 }

 @media (max-width: 900px) {
     .nav-desktop {
         display: none;
     }

     .menu-btn {
         display: block;
     }

     .carousel-btn-prev {
         left: 10px;
     }

     .carousel-btn-next {
         right: 10px;
     }

     .gallery-item {
         width: 280px;
     }
 }

 @media (max-width: 768px) {
     .footer-container {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .footer-line {
         margin: 10px auto 20px;
     }
 }