: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;
  min-height: 600px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  width: 100%;
  margin: 0;
  padding: 0;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  position: relative;
  margin: 0;
  padding: 0;
}

.slide {
  width: 100%;
  height: 100%;
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.slide.s1 {
  background-image: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.slide.s2 {
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2073&q=80');
}

.slide.s3 {
  background-image: url('https://images.unsplash.com/photo-1512343879784-a960bf40e7f2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.hero-carousel .overlay {
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
  pointer-events: none;
}

.hero-carousel .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  margin: 0 auto;
  width: 100%;
}

.hero-carousel .hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  padding: 0;
  animation: fadeInDown 0.8s ease-out;
}

/* Círculo de fundo removido */
.hero-logo-wrapper::before {
  display: none;
}

.hero-logo {
  height: 320px;
  width: auto;
  max-width: 1000px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6)) brightness(1.1) contrast(1.2);
  -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6)) brightness(1.1) contrast(1.2);
  transition: var(--transition);
}

.hero-logo-wrapper:hover .hero-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.7)) brightness(1.2) contrast(1.3);
  -webkit-filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.7)) brightness(1.2) contrast(1.3);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-carousel .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: white;
  margin-top: 0;
}

.hero-carousel .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: white;
}

.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);
}

.btn-brilho {
    position: relative;
    background-image: linear-gradient(
        120deg,
        #a67c00 0%,
        #bf9b30 25%,
        #fff5cc 50%,
        #bf9b30 75%,
        #a67c00 100%
    );
    background-size: 200% auto;
    color: white;
    border: none;
    animation: brilho-btn 3s ease-in-out infinite;
    transition: background 0.5s, transform 0.3s;
}

@keyframes brilho-btn {
    0% {
        background-position: 200% center;
    }
    50% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.dourado-brilhante {
    font-size: 30px;
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    background: linear-gradient(120deg,
        #a67c00 0%,
        #bf9b30 25%,
        #fff5cc 50%,
        #bf9b30 75%,
        #a67c00 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(255, 240, 200, 0.4);
    animation: brilho-texto 3s ease-in-out infinite;
}

@keyframes brilho-texto {
    0% {
        background-position: 200% center;
    }
    25% {
        background-position: 150% center;
    }
    50% {
        background-position: 0% center;
    }
    75% {
        background-position: 150% center;
    }
    100% {
        background-position: 200% center;
    }
}

.header {
    display: none;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) brightness(0.3) contrast(1.8) saturate(1.3);
    -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) brightness(0.3) contrast(1.8) saturate(1.3);
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.6)) brightness(0.4) contrast(1.9) saturate(1.4);
    -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.6)) brightness(0.4) contrast(1.9) saturate(1.4);
}

.footer-logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
    padding: 0;
    width: 100%;
}

/* Removido o círculo de fundo para melhor alinhamento */
.footer-logo-wrapper::before {
    display: none;
}

.footer-logo {
    height: 180px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4)) brightness(1.3) contrast(1.4);
    -webkit-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4)) brightness(1.3) contrast(1.4);
    transition: var(--transition);
    display: block;
}

.footer-logo-wrapper:hover .footer-logo {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5)) brightness(1.4) contrast(1.5);
    -webkit-filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5)) brightness(1.4) contrast(1.5);
}

.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);
}

.instagram-reels h2 {
    text-align: center;
    margin-bottom: 30px;
}

.reels-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 0 20px;
}

.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%;
    flex: 1;
    min-width: 0;
    max-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;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Quando contém Instagram embed, ajustar overflow e altura */
.reel-media.has-instagram-embed {
    overflow: visible;
    height: auto;
    min-height: 400px;
    align-items: flex-start;
    padding: 0;
}

.reel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.reel-card:hover .reel-media img {
    transform: scale(1.05);
}

/* Instagram Embed Styles */
.reel-media .instagram-media,
.reel-media blockquote.instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    overflow: visible !important;
    height: auto !important;
    min-height: 400px;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Garantir que o iframe do Instagram seja responsivo */
.reel-media .instagram-media iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* Remover bordas e sombras de elementos internos do Instagram embed */
.reel-media .instagram-media,
.reel-media .instagram-media *,
.reel-media blockquote.instagram-media,
.reel-media blockquote.instagram-media * {
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 0 !important;
}

.reel-media .instagram-media a,
.reel-media .instagram-media blockquote,
.reel-media .instagram-media div,
.reel-media .instagram-media span {
    border: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    outline: none !important;
    border-radius: 0 !important;
}

/* Remover bordas do iframe e elementos renderizados pelo Instagram */
.reel-media iframe[src*="instagram.com"],
.reel-media iframe {
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 0 !important;
}

/* Remover bordas de elementos específicos do Instagram embed */
.reel-media .instagram-media-rendered,
.reel-media [class*="instagram"],
.reel-media [id*="instagram"] {
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}


.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;
}

/* Avatar com inicial do cliente */
.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.client-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Cores diferentes para cada inicial */
.client-avatar[data-initial="B"] {
    background: linear-gradient(135deg, #0d1b2a 0%, #1e3a5f 100%);
}

.client-avatar[data-initial="D"] {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #0d1b2a;
}

.client-avatar[data-initial="M"] {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
}

.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;
}

/* Primeira coluna do footer com logo */
.footer-col:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Garantir que o logo-wrapper ocupe toda a largura disponível */
.footer-col:first-child .footer-logo-wrapper {
    width: 100%;
    max-width: 100%;
}

.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;
    }
    .hero-logo-wrapper {
        padding: 0;
        margin-bottom: 32px;
    }
    .hero-logo-wrapper::before {
        display: none;
    }
    .hero-logo {
        height: 300px;
        max-width: 950px;
    }
    .hero-carousel .hero-content h1 {
        font-size: 2.5rem;
    }
    .footer-logo-wrapper {
        padding: 0;
        margin-bottom: 1.3rem;
        width: 100%;
        justify-content: flex-start;
    }
    .footer-logo-wrapper::before {
        display: none;
    }
    .footer-logo {
        height: 160px;
        max-width: 100%;
    }
    .reel-card {
        flex: 0 0 260px;
    }
    .reel-media {
        height: 350px;
    }
    
    .reel-media.has-instagram-embed {
        min-height: 350px;
    }
    
    .reel-media .instagram-media,
    .reel-media blockquote.instagram-media {
        min-width: 100% !important;
        width: 100% !important;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .client-avatar {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-right: 0.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
    }
    .hero-logo-wrapper {
        padding: 20px;
        margin-bottom: 30px;
    }
    .hero-logo-wrapper::before {
        display: none;
    }
    .hero-logo {
        height: 280px;
        max-width: 900px;
    }
    .hero-carousel .hero-content h1 {
        font-size: 3rem;
    }
    .hero-carousel .hero-content p {
        font-size: 1.4rem;
    }
    .hero-carousel .btn-lg {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    .footer-logo-wrapper {
        padding: 0;
        margin-bottom: 1.2rem;
        width: 100%;
        justify-content: center;
    }
    .footer-logo-wrapper::before {
        display: none;
    }
    .footer-logo {
        height: 140px;
        max-width: 100%;
    }
    .footer-col:first-child {
        align-items: center;
        text-align: center;
    }
    .steps {
        gap: 3rem;
    }
    .visitor-counter {
        left: 50%;
        transform: translateX(-50%);
        bottom: 100px;
    }
    .reel-card {
        flex: 0 0 220px;
    }
    .reel-media {
        height: 300px;
    }
    
    .reel-media.has-instagram-embed {
        min-height: 300px;
    }
    
    .reel-media .instagram-media,
    .reel-media blockquote.instagram-media {
        min-width: 100% !important;
        width: 100% !important;
        min-height: 300px;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .client-avatar {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-right: 0.7rem;
    }
    
    .hero {
        min-height: 500px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-logo-wrapper {
        padding: 15px;
        margin-bottom: 25px;
    }
    .hero-logo-wrapper::before {
        display: none;
    }
    .hero-logo {
        height: 240px;
        max-width: 800px;
    }
    .hero-carousel .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    .hero-carousel .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    .hero-carousel .btn-lg {
        font-size: 1.05rem;
        padding: 0.95rem 1.8rem;
    }
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-img {
        height: 35px;
        max-width: 120px;
    }
    
    .footer-logo-wrapper {
        padding: 0;
        margin-bottom: 1.2rem;
        width: 100%;
        justify-content: center;
    }
    .footer-logo-wrapper::before {
        display: none;
    }
    .footer-logo {
        height: 120px;
        max-width: 100%;
    }
    .footer-col:first-child {
        align-items: center;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .reel-card {
        flex: 0 0 200px;
    }
    .reel-media {
        height: 270px;
    }
    
    .reel-media.has-instagram-embed {
        min-height: 270px;
    }
    
    .reel-media .instagram-media,
    .reel-media blockquote.instagram-media {
        min-width: 100% !important;
        width: 100% !important;
        min-height: 270px;
    }
    .carousel-arrow {
        top: 45%;
        width: 30px;
        height: 30px;
    }
    .carousel-prev {
        left: -10px;
    }
    .carousel-next {
        right: -10px;
    }
}
