:root {
    --blue: #0d1b2a; /* Azul escuro */
    --orange: #d4af37; /* Dourado */
    --white: #FFFFFF;
    --light-gray: #f8f9fa;
    --dark-gray: #0D1B2A;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}





.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.slide {
  width: 100%;
  height: 80%;
  flex-shrink: 0;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.s1 {
  background-image: url('img/6.jpg');
}

.s2 {
  background-image: url('img/11.jpg');
}

.s3 {
  background-image: url('img/9.jpg');
}

.overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn-primary {
  background: #25d366;
  border: none;
  padding: 15px 30px;
  color: white;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.carousel-controls {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 8px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Efeito bolinha ativa */
#slide1:checked ~ .slides {
  transform: translateX(0%);
}

#slide2:checked ~ .slides {
  transform: translateX(-100%);
}

#slide3:checked ~ .slides {
  transform: translateX(-200%);
}

#slide1:checked ~ .carousel-controls #dot1,
#slide2:checked ~ .carousel-controls #dot2,
#slide3:checked ~ .carousel-controls #dot3 {
  background: #25d366;
}





h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #e9b200;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

:root {
    --blue: #0b2c3c;
    --orange: #ac8402;
    --white: #FFFFFF;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

.btn:hover {
    background-color: #5f5102;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background-color: var(--orange);
}

.btn-header {
    background-color: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
}

.btn-header:hover {
    background-color: var(--orange);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    margin-top: 2rem;
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #f09433 100%);
    transform: translateY(-2px);
}

.header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--blue);
}

.logo h1 span {
    color: var(--orange);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
    padding-top: 70px;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeIn 1s ease-in-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.benefits h2 span {
    color: var(--blue);
}

.benefits h2 span.orange {
    color: var(--orange);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.benefit-card .icon {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

.instagram-reels {
    padding: 5rem 0;
    background-color: white;
}

.instagram-reels h2 span {
    color: var(--blue);
}

.instagram-reels h2 span.orange {
    color: var(--orange);
}

.reels-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.reels-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none; 
    scrollbar-width: none;  
    padding: 1.5rem 0;
    margin: 0 auto;
    width: 100%;
}

.reels-carousel::-webkit-scrollbar {
    display: none;
}

.reel-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.reel-media {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.reel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.reel-card:hover .reel-media img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reel-card:hover .play-button {
    opacity: 1;
}

.play-button i {
    color: var(--orange);
    font-size: 1.2rem;
}

.reel-info {
    padding: 1rem;
}

.reel-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.reel-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.reel-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background-color: var(--orange);
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.carousel-prev {
    left: -20px;
}

.carousel-next {
    right: -20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dots .dot.active {
    background-color: var(--blue);
}

.instagram-follow {
    text-align: center;
    margin-top: 2rem;
}


.testimonials {
    padding: 5rem 0;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-width: 300px;
    flex: 1 0 300px;
    scroll-snap-align: start;
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.destination {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.rating {
    color: var(--orange);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: var(--blue);
}


.how-it-works {
    padding: 5rem 0;
    background: #002c53;
    color: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: #206991; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}


  .step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background-image: linear-gradient(
    120deg,
        #a67c00 0%,
        #bf9b30 25%,
        #fff5cc 50%,
        #bf9b30 75%,
        #a67c00 100%
  );
  background-size: 200% auto;
  width: 30px;
  height: 30px;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: bold;
  animation: step-number 3s ease-in-out infinite;
  transition: background 0.5s, transform 0.3s;
}

@keyframes step-number {
  0% {
    background-position: 200% center;
  }
  50% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* .step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #8d8b26;
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
} */


.guarantees {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guarantee-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

.cta-final {
    position: relative;
    padding: 7rem 0;
    background-image: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.cta-final .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 1.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--orange);
    bottom: 0;
    left: 0;
}

.footer-col h3 span {
    color: var(--orange);
}

.footer-col p {
    margin-bottom: 0.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}


.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


.visitor-counter {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    z-index: 998;
    animation: pulse 2s infinite;
}

.visitor-counter i {
    color: var(--orange);
    margin-right: 5px;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s, transform 0.8s;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .reel-card {
        flex: 0 0 260px;
    }
    .reel-media {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .steps {
        gap: 3rem;
    }
    .visitor-counter {
        left: 50%;
        transform: translateX(-50%);
        bottom: 100px;
    }
    .reel-card {
        flex: 0 0 220px;
    }
    .reel-media {
        height: 300px;
    }
    .carousel-arrow {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 500px;
    }
    .hero-content {
        text-align: center;
    }
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .reel-card {
        flex: 0 0 200px;
    }
    .reel-media {
        height: 270px;
    }
    .carousel-arrow {
        top: 45%;
        width: 30px;
        height: 30px;
    }
    .carousel-prev {
        left: -10px;
    }
    .carousel-next {
        right: -10px;
    }
}
