* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-light-gray: #f5f5f5;
    --color-gray: #888888;
    --color-dark-gray: #333333;
    --color-border: #e0e0e0;
    --color-orange: #ff9500;
    --color-dark-blue: #1a3a52;
    --color-cream: #faf8f5;
    --color-muted-blue: #5a7a94;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-dark-gray);
    background-color: var(--color-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ANNOUNCEMENT BAR */
.announcement-bar {
  width: 100%;
  background: #0f2d4a; /* dark blue */
  color: #fff;
  overflow: hidden;
  height: 40px;

  position: relative;
  z-index: 1000;
}

.announcement-track {
  display: flex;
  white-space: nowrap;
  position: absolute;
}

.announcement-track span {
  display: inline-block;
  padding-left: 100%;
  animation: scrollBanner 18s linear infinite;
  font-size: 14px;
  line-height: 40px;
  font-weight: 500;
}

/* SCROLL ANIMATION */
@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.announcement-bar:hover .announcement-track span {
  animation-play-state: paused;
}


/* NAVBAR */
.navbar {
    background-color: var(--color-white);
    padding: 0;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.navbar-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo-img {
  height: 40px; /* adjust if needed */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Hover effect (optional but nice) */
.navbar-logo-img:hover {
  transform: scale(1.05);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .navbar-logo-img {
    height: 32px;
  }
}


.navbar-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.navbar-item {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-link {
    color: var(--color-dark-gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.navbar-link:hover {
    color: var(--color-black);
}

.chevron-icon {
    transition: transform 0.3s ease;
}

.dropdown-trigger.active .chevron-icon {
    transform: rotate(180deg);
}

/* MEGA DROPDOWN */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    min-width: 1200px;
    margin-top: 10px;
}

.dropdown-trigger:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-dropdown-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 40px;
    gap: 40px;
}

.mega-column {
    display: flex;
    flex-direction: column;
}

.mega-column-title {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mega-item {
    display: flex;
    gap: 12px;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.mega-item:hover {
    background-color: var(--color-light-gray);
}

.mega-item-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.mega-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-item-text strong {
    font-size: 14px;
    color: var(--color-black);
    font-weight: 600;
}

.mega-item-text span {
    font-size: 13px;
    color: var(--color-gray);
    line-height: 1.4;
}

/* PROMO CARD */
.mega-promo {
    display: flex;
    align-items: flex-start;
}

.promo-card {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promo-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
}

.promo-text {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.95;
}

.promo-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

.promo-link:hover {
    opacity: 0.8;
}

/* SIMPLE DROPDOWN (Ajuda) */
.simple-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
    margin-top: 10px;
    min-width: 180px;
}

.dropdown-trigger:hover .simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.simple-dropdown-menu {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.simple-dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--color-dark-gray);
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.simple-dropdown-menu li a:hover {
    background-color: var(--color-light-gray);
    color: var(--color-black);
}

/* NAVBAR BUTTON */
.navbar-btn {
    background-color: var(--color-orange);
    color: var(--color-black);
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.navbar-btn:hover {
    background-color: #ff8c00;
    box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
}

/* HEADER */
.header {
    background-color: var(--color-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-black);
}

/* BUTTONS */
.btn {
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 0;
    display: inline-block;
}

.btn-dark {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-dark:hover {
    background-color: var(--color-dark-gray);
}

/* HERO SECTION */
.hero {
    padding: 100px 0;
    text-align: center;
    background-color: var(--color-cream);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    margin-bottom: 60px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.2;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-title-line {
    display: block;
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-description {
    font-size: 16px;
    color: var(--color-muted-blue);
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-description:last-of-type {
    animation-delay: 0.5s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 50px 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 8px;
    display: inline-block;
}

.btn-primary {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(26, 58, 82, 0.15);
}

.btn-primary:hover {
    background-color: #0f2438;
    box-shadow: 0 8px 25px rgba(26, 58, 82, 0.25);
    transform: translateY(-3px);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(26, 58, 82, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-dark-blue);
    border: 2px solid var(--color-dark-blue);
}

.btn-secondary:hover {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(26, 58, 82, 0.15);
    transform: translateY(-3px);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.hero-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    animation: fadeIn 0.8s ease-out 0.7s forwards;
    opacity: 0;
}

.image-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1 / 1;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    background-color: var(--color-light-gray);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.image-card-2 {
    animation: slideUpFade 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.image-card-1 {
    animation: slideUpFade 0.8s ease-out 0.75s forwards;
    opacity: 0;
}

.image-card-3 {
    animation: slideUpFade 0.8s ease-out 0.85s forwards;
    opacity: 0;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* SOBRE NÓS SECTION */
.sobre-nos {
    padding: 80px 0;
    background-color: #f8f8f7;
}

.sobre-nos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-nos-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sobre-nos-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 10px;
    animation: slideLeftFade 0.8s ease-out forwards;
    opacity: 0;
}

.sobre-nos-text {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
    margin: 0;
    animation: slideLeftFade 0.8s ease-out forwards;
    opacity: 0;
}

.sobre-nos-text:nth-of-type(1) {
    animation-delay: 0.1s;
}

.sobre-nos-text:nth-of-type(2) {
    animation-delay: 0.2s;
}

.sobre-nos-text:nth-of-type(3) {
    animation-delay: 0.3s;
}

.sobre-nos-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
    width: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    padding: 20px;
    background-color: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeinStagger 0.6s ease-out forwards;
    opacity: 0;
}

.brand-image {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.brand-logo:hover {
    transform: scale(1.08);
}

.brand-logo:hover .brand-image {
    opacity: 1;
}

.brand-logo:nth-child(1) {
    animation-delay: 0.1s;
}

.brand-logo:nth-child(2) {
    animation-delay: 0.2s;
}

.brand-logo:nth-child(3) {
    animation-delay: 0.25s;
}

.brand-logo:nth-child(4) {
    animation-delay: 0.35s;
}

.brand-logo:nth-child(5) {
    animation-delay: 0.4s;
}

.brand-logo:nth-child(6) {
    animation-delay: 0.5s;
}

.brand-logo:nth-child(7) {
    animation-delay: 0.55s;
}

.brand-logo:nth-child(8) {
    animation-delay: 0.65s;
}

.brand-logo:nth-child(9) {
    animation-delay: 0.7s;
}

.brand-logo:nth-child(10) {
    animation-delay: 0.8s;
}

@keyframes slideLeftFade {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeinStagger {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* FEATURES SECTION */
.features {
    padding: 100px 0;
    background-color: var(--color-white);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
}

.features-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.features-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.feature-card {
    padding: 40px 30px;
    background-color: var(--color-white);
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    animation: fadeInStagger 0.6s ease-out forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(26, 58, 82, 0.12);
    border-color: var(--color-orange);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--color-dark-blue);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15);
    color: var(--color-orange);
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

.features-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.btn-orange {
    background-color: var(--color-orange);
    color: var(--color-black);
    padding: 14px 42px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 149, 0, 0.2);
}

.btn-orange:hover {
    background-color: #ff8c00;
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.35);
    transform: translateY(-4px);
}

.btn-orange:active {
    transform: translateY(-2px);
}

@keyframes fadeInStagger {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: 100px 0;
    background-color: var(--color-white);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.testimonials-subtitle {
    font-size: 14px;
    color: var(--color-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: block;
}

.testimonials-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 50px 40px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    position: relative;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.35s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-orange);
    box-shadow: 0 12px 32px rgba(26, 58, 82, 0.08);
}

.testimonial-accent {
    width: 12px;
    height: 12px;
    background-color: var(--color-orange);
    border-radius: 50%;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 16px;
    color: #333333;
    margin-bottom: 25px;
    line-height: 1.8;
    font-style: italic;
    quotes: none;
}

.testimonial-text::before {
    content: '"';
    font-size: 32px;
    color: var(--color-orange);
    opacity: 0.3;
    margin-right: 5px;
}

.testimonial-divider {
    height: 1px;
    background: linear-gradient(to right, var(--color-orange), transparent);
    margin: 25px 0;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin: 0;
}

.testimonial-author-role {
    font-size: 13px;
    color: var(--color-gray);
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CLUBS SECTION */
.clubs {
    padding: 100px 0;
    background-color: var(--color-white);
}

.clubs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.clubs-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.clubs-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0;
    animation: slideLeftFade 0.8s ease-out forwards;
    opacity: 0;
}

.clubs-text {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
    margin: 0;
    animation: slideLeftFade 0.8s ease-out forwards;
    opacity: 0;
}

.clubs-text:nth-of-type(1) {
    animation-delay: 0.1s;
}

.clubs-text:nth-of-type(2) {
    animation-delay: 0.2s;
}

.btn-clubs {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(26, 58, 82, 0.15);
    animation: slideLeftFade 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

.btn-clubs:hover {
    background-color: #0f2438;
    box-shadow: 0 8px 25px rgba(26, 58, 82, 0.25);
    transform: translateY(-4px);
}

.btn-clubs:active {
    transform: translateY(-2px);
}

.clubs-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clubs-image-wrapper {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(26, 58, 82, 0.15);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.clubs-image-wrapper:hover {
    transform: scale(1.03);
    box-shadow: 0 24px 50px rgba(26, 58, 82, 0.2);
}

.clubs-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

@keyframes slideLeftFade {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* FAQ SECTION */
.faq {
    padding: 100px 0;
    background-color: var(--color-white);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.faq-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.25s; }
.faq-item:nth-child(4) { animation-delay: 0.35s; }
.faq-item:nth-child(5) { animation-delay: 0.4s; }
.faq-item:nth-child(6) { animation-delay: 0.5s; }

.faq-item:hover {
    border-color: var(--color-orange);
    box-shadow: 0 8px 24px rgba(26, 58, 82, 0.08);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background-color: var(--color-white);
    border: none;
    text-align: left;
    font-weight: 700;
    color: var(--color-dark-blue);
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question-text {
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
}

.faq-question.active .faq-icon {
    color: var(--color-orange);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    background-color: var(--color-white);
    font-size: 14px;
    color: #555555;
    line-height: 1.8;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
    padding: 24px;
}

.faq-answer p {
    margin: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CONTACT SECTION */
.contacto {
    padding: 100px 0;
    background-color: var(--color-white);
}

.contacto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contacto-header {
    text-align: center;
    margin-bottom: 80px;
}

.contacto-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.contacto-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contacto-subtitle {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.contacto-block {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.contacto-block:nth-child(1) { animation-delay: 0.1s; }
.contacto-block:nth-child(2) { animation-delay: 0.2s; }
.contacto-block:nth-child(3) { animation-delay: 0.3s; }

.contacto-block:hover {
    border-color: var(--color-orange);
    box-shadow: 0 12px 32px rgba(26, 58, 82, 0.12);
    transform: translateY(-8px);
}

.contacto-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--color-dark-blue);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contacto-icon svg {
    width: 100%;
    height: 100%;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contacto-block:hover .contacto-icon {
    color: var(--color-orange);
    transform: scale(1.15);
}

.contacto-block-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.contacto-block-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contacto-block-hours {
    font-size: 13px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contacto-block-address {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.contacto-block-address {
  color: var(--color-orange); /* same orange as your buttons */
  text-decoration: underline;
  font-weight: 500;
  transition: 0.3s ease;
}

/* Hover effect (same style as links) */
.contacto-block-address:hover {
  text-decoration: underline;
  color: var(--color-dark-blue); /* slightly darker orange */
}

.contacto-block-address {
  cursor: pointer;
}

.contacto-link {
    display: inline-block;
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--color-orange);
}

.contacto-link:hover {
    color: var(--color-dark-blue);
    border-bottom-color: var(--color-dark-blue);
}

.contacto-info strong {
    color: var(--color-black);
    font-weight: bold;
}

/* CTA FINAL SECTION */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, #0f2438 100%);
    color: var(--color-white);
}

.cta-final-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.cta-final-text {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin: 0;
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
}

.cta-final-button {
    background-color: var(--color-orange);
    color: var(--color-black);
    padding: 16px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(255, 149, 0, 0.3);
    animation: slideUpFade 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.cta-final-button:hover {
    background-color: #ff8c00;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 149, 0, 0.4);
}

.cta-final-button:active {
    transform: translateY(-2px);
}

/* FOOTER */
.footer {
    background-color: #1a1a1a;
    color: var(--color-white);
    padding: 80px 0 40px;
    border-top: 1px solid #333333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #333333;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-white);
    margin: 0;
    letter-spacing: -0.5px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column a:hover {
    color: var(--color-orange);
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: #999999;
    margin: 0 0 10px;
}

.footer-promo {
    font-size: 13px;
    color: #777777;
    margin: 0;
}


@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 60px;
  height: 60px;

  background-color: #25D366;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 999;

  transition: all 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Click effect */
.whatsapp-float:active {
  transform: scale(0.95);
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #000;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  white-space: nowrap;
  transition: 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #f2f2f2;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  color: #1a2b44; /* dark blue */
  text-decoration: none;

  transition: all 0.3s ease;
}

/* Hover effects */
.footer-social a:hover {
  transform: translateY(-4px);
  background: #f97316; /* orange */
  color: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* FOOTER */
@media (max-width: 1200px) {
    .mega-dropdown {
        min-width: 900px;
    }

    .mega-dropdown-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .mega-promo {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        height: auto;
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .navbar-menu {
        gap: 20px;
        margin-top: 15px;
        width: 100%;
        flex-wrap: wrap;
    }

    .navbar-btn {
        margin-top: 15px;
    }

    .mega-dropdown {
        min-width: calc(100vw - 40px);
        left: 20px;
        transform: translateX(0);
    }

    .mega-dropdown.active {
        transform: translateX(0);
    }

    .mega-dropdown-content {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        gap: 12px;
        margin: 35px 0;
    }

    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .hero-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .image-card {
        aspect-ratio: 4 / 3;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 2fr;
        gap: 30px;
    }

    .features-title {
        font-size: 32px;
    }

    .features-label {
        font-size: 12px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .features-cta {
        margin-top: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-description {
        font-size: 15px;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .brands {
        gap: 15px;
    }

    .sobre-nos-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sobre-nos-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 25px;
    }

    .clubs-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .clubs-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .clubs-text {
        font-size: 15px;
    }

    .clubs-image-wrapper {
        max-width: 100%;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-subtitle {
        font-size: 15px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer.open {
        padding: 20px;
    }

    .contacto-title {
        font-size: 32px;
    }

    .contacto-subtitle {
        font-size: 15px;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contacto-block {
        padding: 30px 25px;
    }

    .about,
    .features,
    .testimonials,
    .clubs,
    .faq,
    .contacto,
    .sobre-nos {
        padding: 60px 0;
    }

    .cta-final {
        padding: 70px 0;
    }

    .cta-final-text {
        font-size: 40px;
    }

    .cta-final-button {
        padding: 14px 40px;
        font-size: 15px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-column-title {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
    }

    .hero-images {
        grid-template-columns: 1fr;
    }

    .navbar-logo a {
        font-size: 18px;
    }

    .sobre-nos-title {
        font-size: 26px;
    }

    .sobre-nos-text {
        font-size: 14px;
    }

    .features-title {
        font-size: 26px;
    }

    .features-label {
        font-size: 11px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .feature-title {
        font-size: 14px;
    }

    .feature-text {
        font-size: 13px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    .brand-logo {
        min-height: 60px;
        padding: 15px;
    }

    .logo-placeholder {
        font-size: 12px;
    }

    .testimonials-title {
        font-size: 26px;
    }

    .testimonials-subtitle {
        font-size: 12px;
    }

    .testimonials-description {
        font-size: 14px;
    }

    .testimonials-grid {
        gap: 30px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .testimonial-author-name {
        font-size: 14px;
    }

    .testimonial-author-role {
        font-size: 12px;
    }

    .clubs-title {
        font-size: 26px;
    }

    .clubs-text {
        font-size: 14px;
    }

    .btn-clubs {
        padding: 12px 28px;
        font-size: 14px;
    }

    .clubs-image-wrapper {
        max-width: 100%;
    }

    .faq-title {
        font-size: 26px;
    }

    .faq-label {
        font-size: 12px;
    }

    .faq-subtitle {
        font-size: 14px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-question {
        padding: 18px;
        font-size: 14px;
    }

    .faq-question-text {
        font-size: 13px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
        font-size: 18px;
    }

    .contacto-title {
        font-size: 26px;
    }

    .contacto-label {
        font-size: 12px;
    }

    .contacto-subtitle {
        font-size: 14px;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contacto-block {
        padding: 25px 20px;
    }

    .contacto-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .contacto-block-title {
        font-size: 14px;
    }

    .contacto-block-text,
    .contacto-block-hours,
    .contacto-block-address {
        font-size: 13px;
    }

    .contacto-link {
        font-size: 14px;
    }

    .cta-final {
        padding: 60px 0;
    }

    .cta-final-text {
        font-size: 32px;
        line-height: 1.1;
    }

    .cta-final-button {
        padding: 12px 32px;
        font-size: 14px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer-logo h3 {
        font-size: 18px;
    }

    .footer-column a {
        font-size: 12px;
    }

    .footer-copyright,
    .footer-promo {
        font-size: 12px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
}