/*
Theme Name: Olympea
Theme URI: https://filipeguerra.com.br/ 
Author: Filipe Guerra
Author URI:  https://filipeguerra.com.br/
Version: 1.0
*/


@import url('/wp-content/themes/olympea/bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Poppins:wght@400;600;700&display=swap');


:root {
    --primary-color: #0c1014;
    --secondary-color: #06e7f1;
    --tertiary-color: #787675;
    --text-color: #FFFFFF;
    --transition: all 0.3s ease;
    /* Novas Fontes */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --card-height: 400px;
    --card-width: calc(var(--card-height) / 1.5);


    --electric-border-color: #00fffb;
    --electric-light-color: oklch(from var(--electric-border-color) l c h);
    --gradient-color: oklch(
        from var(--electric-border-color) 0.3 calc(c / 2) h / 0.4
    );
    --color-neutral-900: oklch(0.185 0 0);

    --electric-border-color1: #f2ff00;
    --electric-light-color1: oklch(from var(--electric-border-color1) l c h);
    --gradient-color1: oklch(
        from var(--electric-border-color1) 0.3 calc(c / 2) h / 0.4
    );
    --color-neutral-9001: oklch(0.185 0 0);


    --gradiente-azul: linear-gradient(180deg, var(--secondary-color), white);

}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 75px;
}

@media (min-width: 992px) { 
  html { scroll-padding-top: 45px; }
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    overflow-x: hidden;    
    line-height: 1.6;
}

/* ========================================
   TIPOGRAFIA
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.text-cyan {
    color: var(--secondary-color);
}

.text-white {
    color: var(--text-color);
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    background: rgba(12, 16, 20, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(6, 231, 241, 0.1);
    box-shadow: 0 5px 20px rgba(6, 231, 241, 0.1);
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(6, 231, 241, 0.3);
}


.navbar-nav .nav-link {
    color: var(--text-color) !important;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.2px;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-toggler {
    border: 2px solid var(--secondary-color);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(6, 231, 241, 0.25);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0c1014 0%, #1a1f24 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(6, 231, 241, 0.03) 2px,
            rgba(6, 231, 241, 0.03) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(6, 231, 241, 0.03) 2px,
            rgba(6, 231, 241, 0.03) 4px
        );
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6, 231, 241, 0.1) 0%, transparent 90%);
}

.hero-content {
    position: relative;
    z-index: 10;
    background-color:rgba(0,0,0,0.7);
}

@media (min-width: 992px) { 
  .hero-content {
    background-color: transparent;
  }
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 0 0 30px rgba(6, 231, 241, 0.5);
}

.hero-title span {
    display: inline-block;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
    border-top: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding: 1rem 0;
    display: inline-block;
}

.hero-home {
background: url(/wp-content/themes/olympea/assets/images/hero.webp) no-repeat; background-size: cover; 
background-position: 5% center;

}

.hero-warrior {
  background: url(/wp-content/themes/olympea/assets/images/hero-warrior.webp) no-repeat;
  background-position: 58% center;
  background-size: cover;
  min-height:700px;
  margin-top: 75px;
}

@media (min-width: 992px) { 
  .hero-home {
     background-position: center;
  }

  .hero-warrior {
	background-position: center;
        margin-top: 100px;
  }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.bg-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a1f24 100%);
    overflow: hidden;
    /* Adicionando um sutil background de imagem para o tema Crossfit */
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHJlY3Qgd2lkdGg9IjEwMCIgaGVpZ2h0PSIxMDAiIGZpbGw9IiMwYzEwMTQiLz48cGF0aCBkPSJNMjUgMGg1MHYyNUgyNVYwem0wIDc1aDUwVjEwMEgyNVY3NXoiIGZpbGw9IiMwNmU3ZjEiIGZpbGwtb3BhY2l0eT0iMC4wMyIvPjxwYXRoIGQ9Ik0wIDI1aDI1djUwSDBWMjV6bTc1IDI1aDI1djUwSDc1VjUweiIgZmlsbD0iIzA2ZTdmMSIgZmlsbC1vcGFjaXR5PSIwLjA1Ii8+PC9zdmc+');
    background-size: 50px 50px;    
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--secondary-color);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateY(20px);
        opacity: 1;
    }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary-custom {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border-radius: 0;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary-custom:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 231, 241, 0.4);
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-outline-custom {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 1rem 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 0;
}

.btn-outline-custom:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 231, 241, 0.4);
}

.btn-partners { background-color: #000; border-radius: 15px; padding: 0.5rem; display: block; aspect-ratio: 1/1; box-shadow: 0 5px 20px rgba(6, 231, 241, 0.3); }

/* ========================================
   SECTIONS
   ======================================== */

.content-section {
    padding: 100px 0;
    position: relative;
}

.bg-dark-alt {
    background: linear-gradient(180deg, #0c1014 0%, #151a1f 100%);
}

.bg-plans { position: relative; overflow: hidden;
    background: url(/wp-content/themes/olympea/assets/images/background-plans.webp) no-repeat center; background-size: cover;
}

.box { position: relative; }
.box::after { content: ''; position: absolute; width: 150%; aspect-ratio: 1/1; margin-left: -20%; margin-top: -10%; background-color: #06e7f1; display: block;
        background: url(/wp-content/themes/olympea/assets/images/circulo.webp) no-repeat center; background-size: cover;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto 2rem;
    position: relative;
}

.title-underline::before,
.title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    width: 30px;
    height: 4px;
    background: var(--secondary-color);
}

.title-underline::before {
    left: -40px;
}

.title-underline::after {
    right: -40px;
}

.section-description {
    font-size: 1rem;
    color: var(--tertiary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========================================
   CARDS
   ======================================== */

.card-custom {
    background: linear-gradient(135deg, rgba(6, 231, 241, 0.05) 0%, rgba(6, 231, 241, 0.02) 100%);
    border: 1px solid rgba(6, 231, 241, 0.2);
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 231, 241, 0.1), transparent);
    transition: var(--transition);
}

.card-custom:hover::before {
    left: 100%;
}

.card-custom:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(6, 231, 241, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.card-text {
    color: var(--tertiary-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.card-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
}

.card-link:hover {
    letter-spacing: 2px;
}


/* ========================================
   PRICING CARDS (Planilhas)
   ======================================== */

.pricing-card {
    background: linear-gradient(135deg, rgba(6, 231, 241, 0.05) 0%, rgba(6, 231, 241, 0.02) 100%);
    border: 1px solid rgba(6, 231, 241, 0.2);
    padding: 1rem;
    text-align: start;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

@media (min-width: 992px) { 
.pricing-card { padding: 3rem 2rem; }
}

.pricing-card-bg {
    background: linear-gradient(135deg, rgba(6, 231, 241, 0.05) 0%, rgba(6, 231, 241, 0.02) 100%);
    border: 1px solid rgba(6, 231, 241, 0.2);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(6, 231, 241, 0.2);
}

.pricing-card.featured {
    border: 3px solid var(--secondary-color);
    background: linear-gradient(135deg, rgba(6, 231, 241, 0.1) 0%, rgba(6, 231, 241, 0.05) 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.pricing-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.pricing-subtitle {
    font-size: 0.9rem;
    color: var(--tertiary-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--tertiary-color);
    margin-top: 0.5rem;
}

.amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--text-color);
    line-height: 1;
}

@media (min-width: 992px) { 
.amount {
	font-size: 4.5rem;
}
}


.period {
    font-size: 1rem;
    color: var(--tertiary-color);
    align-self: flex-end;
    margin-bottom: 0.8rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(6, 231, 241, 0.1);
    color: var(--text-color);
    letter-spacing: 0.5px;
    font-weight: 400;
    padding-left: 20px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.pricing-features li.text-muted::before {
    content: '✗';
    color: var(--tertiary-color);
}

/* ========================================
   PRODUCT CARDS
   ======================================== */

.product-card {
    background: linear-gradient(135deg, rgba(6, 231, 241, 0.05) 0%, rgba(6, 231, 241, 0.02) 100%);
    border-left: 4px solid var(--secondary-color);
    padding: 3rem;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.product-card:hover {
    transform: translateX(10px);
    box-shadow: -10px 10px 40px rgba(6, 231, 241, 0.2);
}

.product-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    color: rgba(6, 231, 241, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.product-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

.product-description {
    color: var(--tertiary-color);
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}


/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #000000;
    padding: 0;
    border-top: 1px solid rgba(6, 231, 241, 0.2);
}

.footer-text {
    color: #FFF;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: end;
}

.social-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--secondary-color);
}

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

.link-phone, .link-map { text-decoration: none; color: #FFF; }
.link-phone i, .link-map i { color: var(--secondary-color); }
.link-phone:hover, .link-map:hover { color: var(--secondary-color); }

.policies { font-size: 0.8rem; color: #FFF; text-decoration: underline; }
.policies:hover { color: var(--secondary-color); } 
/* ========================================
   ANIMATIONS
   ======================================== */

[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

.navbar-dark .navbar-toggler { 
	background-color: rgba(255, 255, 255, .1);
} 

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
	background-color: rgba(255, 255, 255, .1);
	margin-bottom:0.2rem;
        padding: 0.8rem 1rem !important;
    }
    
    .product-number {
        font-size: 3rem;
    }
    
    .pricing-card {
        margin-bottom: 0rem;
    }
}

@media (max-width: 576px) {
    .content-section {
        padding: 60px 0;
    }
    
    .card-custom,
    .product-card {
        padding: 2rem;
    }
    
    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}


.bg-animate {
  animation:slide 3s ease-in-out infinite alternate;
  background-image: linear-gradient(-60deg, #000 50%, #06e7f1 50%);
  bottom:0;
  left:-50%;
  opacity:0.05;
  position:fixed;
  right:-50%;
  top:0;
  z-index:-1;
}

.bg2 {
  animation-direction:alternate-reverse;
  animation-duration:4s;
}

.bg3 {
  animation-duration:7s;
}



@keyframes slide {
  0% {
    transform:translateX(-20%);
  }
  100% {
    transform:translateX(20%);
  }
}


.cardd {
  width: var(--card-width);
  height: var(--card-height);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0 36px;
  perspective: 2500px;
  margin: 0 auto;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrapper {
  transition: all 0.5s;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.cardd:hover .wrapper {
  transform: perspective(900px) translateY(-5%) rotateX(25deg) translateZ(0);
  box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
}

.wrapper::before,
.wrapper::after {
  content: "";
  opacity: 0;
  width: 100%;
  height: 80px;
  transition: all 0.5s;
  position: absolute;
  left: 0;
}
.wrapper::before {
  top: 0;
  height: 100%;
  background-image: linear-gradient(
    to top,
    transparent 46%,
    rgba(12, 13, 19, 0.5) 68%,
    rgba(12, 13, 19) 97%
  );
}
.wrapper::after {
  bottom: 0;
  opacity: 1;
  background-image: linear-gradient(
    to bottom,
    transparent 46%,
    rgba(12, 13, 19, 0.5) 68%,
    rgba(12, 13, 19) 97%
  );
}

.cardd:hover .wrapper::before,
.wrapper::after {
  opacity: 1;
}

.cardd:hover .wrapper::after {
  height: 120px;
}
.title {
  width: 100%;
  transition: transform 0.5s;
}
.cardd:hover .title {
  transform: translate3d(0%, -50px, 100px);
}

.character {
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
  position: absolute;
  z-index: -1;
}

.cardd:hover .character {
  opacity: 1;
  transform: translate3d(0%, -30%, 100px);
}


.img-pb  {
    position: relative;
    display: flex;    
    align-items: center;
    vertical-align: middle;
    filter: gray;
    -webkit-filter: grayscale(1); 
    -webkit-transition: all .8s ease-in-out;  
}

.img-pb img { border-radius: 15px; }

.img-pb h2 {
    position: absolute;
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
    display: block;
    align-items: center;
    vertical-align: middle;
    opacity: 0.2;   
    color: white;
    transition: 1s;
    margin-left: -0.5rem;
    text-shadow: 0 0 30px rgba(6, 231, 241, 0.8);
}

@media (min-width: 992px) { 
	.img-pb h2 { font-size: 2.5rem; }
}

.img-pb:hover {
filter: none;
    -webkit-filter: grayscale(0);
}

.img-pb:hover h2 {
    color: white;
    opacity: 1;    
    transition: 1s;
}




/* SVG positioning */
.svg-container {
  position: absolute;
}

/* Card container */
.card-container {
  border-radius: 24px;
  position: relative;
  background: linear-gradient(
      -30deg,
      var(--gradient-color),
      transparent,
      var(--gradient-color)
    ),
    linear-gradient(
      to bottom,
      var(--color-neutral-900),
      var(--color-neutral-900)
    );
}

/* Inner container */
.inner-container {
  position: relative;
}

/* Border layers */
.border-outer {
  border: 2px solid  #00fffb;
  border-radius: 24px;
  padding-right: 4px;
  padding-bottom: 4px;
}

.main-card {
  width: auto;
  aspect-ratio: 1/1;
  border-radius: 24px;
  margin-top: -4px;
  margin-left: -4px;
  filter: url(#turbulent-displace);
  transition: .3s;
}

.card-container:hover .main-card {
  border: 2px solid var(--electric-border-color); 
}

.card-containerWarrior .main-card {
  border: 2px solid var(--electric-border-color); 
}

/* Glow effects */
.glow-layer-1 {
  border: 2px solid  var(--secondary-color);
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(1px);
}

.glow-layer-2 {
  border: 2px solid var(--electric-light-color);
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(4px);
}

/* Overlay effects */
.overlay-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  opacity: 1;
  mix-blend-mode: overlay;
  transform: scale(1.1);
  filter: blur(16px);
  background: linear-gradient(
    -30deg,
    white,
    transparent 30%,
    transparent 70%,
    white
  );
}

.overlay-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  opacity: 0.5;
  mix-blend-mode: overlay;
  transform: scale(1.1);
  filter: blur(16px);
  background: linear-gradient(
    -30deg,
    white,
    transparent 30%,
    transparent 70%,
    white
  );
}

/* Background glow */
.background-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  filter: blur(32px);
  transform: scale(1.1);
  opacity: 0.3;
  z-index: -1;
  background: linear-gradient(
    -30deg,
    var(--electric-light-color),
    transparent,
    var(--electric-border-color)
  );
}

/* Content container */
.content-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#como-funciona { overflow: hidden; }


/* Scrollbar glass component */
.scrollbar-glass {
  background: radial-gradient(
      47.2% 50% at 50.39% 88.37%,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    rgba(255, 255, 255, 0.04);
  position: relative;
  transition: background 0.3s ease;
  border-radius: 14px;
  width: fit-content;
  height: fit-content;
  padding: 8px 16px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.scrollbar-glass:hover {
  background: radial-gradient(
      47.2% 50% at 50.39% 88.37%,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    rgba(255, 255, 255, 0.08);
}

.scrollbar-glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1px;
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.48) 16.73%,
    rgba(255, 255, 255, 0.08) 30.2%,
    rgba(255, 255, 255, 0.08) 68.2%,
    rgba(255, 255, 255, 0.6) 81.89%
  );
  border-radius: inherit;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

.bg-light-image { background: url(/wp-content/themes/olympea/assets/images/lightning_background.webp) no-repeat center; background-size: cover; }



/* Como Funciona */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradiente-azul);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradiente-azul);
    background: url(/wp-content/themes/olympea/assets/images/circulo.webp) no-repeat center; background-size: cover;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin: 0 0.5rem;
    box-shadow: 0 15px 40px rgba(6, 231, 241, 0.2);
}

.step-content {
    flex: 1;
    background: white;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 440px;
    border: 2px solid var(--secondary-color);
}



.step-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
}

.step-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--tertiary-color);
}

.step-content p {
    color: #64748b;
}

@media (min-width: 992px) { 
.step-number { margin: 0 2rem; }
.step-content { padding: 2rem; }
.process-step { margin-bottom: 3rem;
 }
}

.accordion-item:not(:first-of-type) { border: 1px solid var(--secondary-color); }

.accordion-item { margin: 1rem 0; border-radius: var(--bs-accordion-inner-border-radius); border: 1px solid var(--electric-border-color); background-color: transparent; }

.accordion-button { font-size: 1.1rem; line-height: 1.3rem; background-color: transparent; color: white; }

.accordion-button::after { background-color: white; border-radius: 25px;  background-size: 70%;  background-position: center; }

.accordion-button:not(.collapsed) { background-color: transparent; color: var(--secondary-color); outline: none; box-shadow: none; border-bottom: 1px solid var(--secondary-color); }
.accordion-button:focus { box-shadow: none; }
.accordion-body { color: white; }

@media (min-width: 992px) { .accordion-button { font-size: 1.4rem; line-height: 1.6rem; } }

/*

html, body { font-family: "Montserrat", sans-serif; margin: 0; padding: 0; font-size: 12px; }

@media (min-width: 992px) { 
  html, body { font-size: 16px; }
}

body { background-color: var(--secondary-color); }

a { color: var(--primary-color); text-decoration: none; }

header { background: var(--primary-color); color: var(--secondary-color); font-size: 0.85rem; }
header .img-brand { max-width: 80px; }
header a { margin: 0; color: var(--secondary-color); text-decoration: none; }
header a span { margin:0 0.2rem; }

header ul, .blog-footer ul { list-style: none; margin: 0; padding: 0; }
header ul li, .blog-footer ul li { display: inline-block; margin: 0 0.2rem; }
header ul li:last-child { border-left: 1px solid var(--secondary-color); } 
header ul li:last-child a { padding-left: 0.5rem; }
header ul li a, .blog-footer ul li a { color: var(--secondary-color); text-decoration: none; }
header ul li .lk_social, .blog-footer ul li .lk_social { text-decoration: none; display: block; transition: 0.5s; }
header a:hover, .blog-footer a:hover { color: var(--quarternary-color); text-decoration: none !important; transform: scale(1.4) !important; transition: 0.5s !important; }

.navbar { background-color: var(--secondary-color); padding: 0; border-bottom: 1px solid #D2D2D5; }
.navbar .nav-link { background-color: var(--tertiary-color); color: var(--primary-color); border-radius: 6px; padding: 0.3rem 1rem; margin: 0.2rem 0; text-align: center; }
.navbar .nav-link:hover { color: var(--primary-color); text-decoration: underline; }
.navbar .navbar-nav { padding: 0.5rem 0; }

@media (min-width: 992px) { 
  .navbar { padding: 1rem 0; }
  .navbar .nav-link { background-color: transparent; color: var(--quinary-color); font-weight: 500; margin: 0 0.5rem; padding: 0.2rem; }
}

.navbar-toggler { background-color: var(--tertiary-color); }
.navbar-toggler .navbar-toggler-icon { background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")  }

.navbar-expand-lg .navbar-nav .dropdown-menu { border-top: 2px solid var(--primary-color); }

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: var(--quinary-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border-bottom: 1px solid #CCC;
}

.dropdown-menu .menu-item:last-child .dropdown-item {
    border-bottom: none;
} 

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--primary-color);
}

.bg-breadcrumb { background-color:var(--tertiary-color); }
.breadcrumb { margin-bottom: 0; padding: 0.5rem 1rem; border-radius: 0.25rem; font-size: 0.8rem; }
.breadcrumb .breadcrumb-item a { color: #666; text-decoration: none; }
.breadcrumb .active { color: var(--primary-color); font-weight: 600; }

.header-category { background-color: var(--primary-color); background-size: cover; }
.header-category h1 { color: white; text-transform: uppercase; font-size: 2.2rem; text-shadow: 0px 0px 5px rgba(0,0,0,0.5); } 
.header-category  .description { padding: 1rem 0; color: white; text-shadow: 0px 0px 5px rgba(0,0,0,0.5); }

.header-search { background-color: var(--tertiary-color); }
.header-search h1 { color: var(--primary-color); }

*/

.content-blog { background-color: #FFF; color: var(--primary-color); border-radius: 12px; font-size: 0.9rem; }

.blog-footer { background-color: var(--primary-color); color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }
.filters-posts h3 { color: var(--quinary-color); text-transform: uppercase; font-weight: 400; padding: 1rem 0 0 0; }
.filters-posts hr { height:2px; background-color: var(--primary-color); opacity: 1; }
.filters-posts .form-control{ padding: 0.25rem 0.5rem; border-color: var(--primary-color); }

.blog-header {
  line-height: 1;
  border-bottom: 1px solid #e5e5e5;
}

.blog-header-logo {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif/*rtl:Amiri, Georgia, "Times New Roman", serif*/;
  font-size: 2.25rem;
}

.blog-header-logo:hover {
  text-decoration: none;
}

/* ========================================
   TIPOGRAFIA
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.text-cyan {
    color: var(--secondary-color);
}

.text-white {
    color: var(--text-color);
}


.banner { border-radius:0; overflow: hidden; }
.banner .container { position: relative; }   
.swiper-banner .content-banner { position: relative; text-shadow: 5px 2px 5px rgba(0,0,0,1); }
.swiper-banner .content-banner .category::before { top: -22px; }

.swiper-banner .content-banner .content-banner-inner { position: relative; overflow: hidden; }

.swiper-banner .bg { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 0; filter: blur(5px); background-size: cover; background-position: center; }
.swiper-banner .img-slider { position: relative; width: 100%; height: 250px; display: block; background-size: cover; background-position: left center; }
.banner .swiper-slide { margin: 0; padding: 0; }

@media (min-width: 992px) { 
  .swiper-banner .img-slider { height: 450px; }
}

.banner .swiper-button-prev, .banner .swiper-button-next { top:3rem; left: 3rem; right: auto; border: 1px solid #FFF; background-color: rgba(255,255,255,0.5); }
.banner .swiper-button-next:after, .banner .swiper-button-prev:after { color: #FFF; }
.banner .swiper-button-next { left: 6rem; }
.banner .swiper-banner .category { opacity: 0.9; font-size: 0.8rem; color: rgba(255,255,255,0.8) !important; }
.banner .swiper-banner .date { color:white !important; font-weight: 400; }
.banner .swiper-banner .info { font-size: 1.4rem; color:white !important; font-weight: 400; }

.banner .swiper-banner .btn-category-banner { color: white; padding: 0.5rem 1rem;  margin-top: 1rem;  padding: 0.5rem 1rem; background-color: rgba(255, 255, 255, 0.2); }
.banner .swiper-banner .btn-category-banner .icon-arrow_forward { display: inline-block; line-height: 1.5rem;  margin: 0 0 0 0.2rem;  transform: rotate(-40deg); }
.banner .swiper-banner .btn-category-banner:hover { background-color: rgba(255, 255, 255, 0.3); }

.btn-archive { position: relative; display: block; min-height: 400px; background-color: var(--tertiary-color); background-size: auto 100%; transition: 0.5s; background-position: center; }
.btn-archive::after { content: ''; display: block; position: absolute; width: 100%; height: 100%; z-index: 1; background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%); transition: 0.5s; }
.btn-archive .info { position: absolute; bottom: 5%; left: 0; width: 100%; color: white; display: block; padding: 1.5rem; text-shadow: 0px 0px 5px rgba(0,0,0,0.5); z-index: 2;  }
.btn-archive .info .date { color:#B3B3B3 !important; font-weight: 400; }

.btn-archive:hover { background-size: auto 110%; transition: 0.5s; }

.most-popular-posts h3 { color: #2C2C2C; text-transform: uppercase; font-weight: 400; }
.most-popular-posts hr { height:2px; background-color: var(--primary-color); opacity: 1; }

.most-view { min-height: 420px; }
.inter-view { min-height: 210px; }

.large-post { min-height: 375px; }

.btn-outline-secondary, .page-link, .page-numbers { position: relative; border-color: #2C2C2C; color: #2C2C2C; padding: 0.2rem 1rem; }
.btn-outline-secondary span { display: inline-flex; padding:0; height: 30px; line-height: 0.5rem !important; align-items: center; }
.btn-outline-secondary .icon { margin: 0 0.5rem; }

.page-item { margin: 0 0.2rem; }

.page-item.active .page-link { background-color: var(--primary-color); border-color: var(--primary-color); color: white; }

.blog-pagination > .btn {
  border-radius: 0;
}

.content-blog .wp-caption { max-width: 100%; margin: 1.5rem 0; }
.content-blog .wp-caption a { background-color: var(--tertiary-color); color: white; display: block; border-radius: 12px; }
.content-blog .wp-caption a img { padding: 0.5rem;  border-radius: 20px; }
.content-blog .wp-caption a:hover { color: var(--quinary-color); }
.content-blog .wp-caption-text { 
    font-size: .9rem;
    background-color: var(--tertiary-color);
    border-radius: 10px;
    color: var(--primary-color);
    padding: .5rem;
    margin: .5rem 0;
    font-weight: 600; }
.content-blog .wp-caption-text a { color: var(--primary-color); padding: 0 0.5rem; display: inline-block; text-decoration: underline; }
.content-blog a { color: var(--primary-color); font-weight: 600; }


aside hr { background-color: #666; }

.list-publi { margin: 0; padding: 0; list-style: none; }
.list-publi li { margin: 0.5rem 0; padding: 0; }
.list-publi li a, .swiper-slide a { background-color:#FFF; color: #000; text-decoration: none; border-radius: 0; font-size: 0.8rem; padding: 0.5rem 0; transition: 0.5s; }
.list-publi li a:hover, .swiper-slide a:hover { background-color: #ececec; transition: 0.5s; }
.list-publi li a img, .swiper-slide a img { border-radius: 0; }
.list-publi li a .category, .swiper-slide a .category  { position: relative; font-size: 0.7rem; border: 1px solid #666; background-color: rgba(0,0,0,0.3); padding: 0.1rem 1rem; }
.list-publi li a .category, .swiper-slide a .category { text-decoration: none; }
.list-publi li a .category::before, .swiper-slide a .category::before { content: '•'; position: absolute; top: -15px; left: 5px; font-size: 1.8rem; display: block; }
.list-publi li a .info, .swiper-slide a .info, .btn-archive .info .title { padding: 0.3rem 0; }
.list-publi li a .date, .swiper-slide a .date, .btn-archive .info .date { color: #666; font-weight: 400; }

.comment-respond { font-size: 0.8rem; }

.social-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

.category { position: relative; border: 1px solid #666; background-color: rgba(0,0,0,0.3); padding: 0.2rem 1rem 0.2rem 1.2rem; }
.category a { text-decoration: none; font-size: 0.9rem; }
.category::before { content: '•'; position: absolute; top: -20px; left: 5px; font-size: 2.5rem; display: block; }

.cat-inspiracao-tendencias { border: 1px solid #FF6600 !important; background-color: rgba(255,112,0,0.3) !important; }
.cat-inspiracao-tendencias, .cat-inspiracao-tendencias a, .cat-inspiracao-tendencias::before { color: #FF6600 !important; }

.cat-sustentabilidade { border: 1px solid #6A994E !important; background-color: rgba(106,153,78,0.3) !important; }
.cat-sustentabilidade, .cat-sustentabilidade a, .cat-sustentabilidade::before { color: #6A994E !important; }

.cat-institucional { border: 1px solid var(--primary-color) !important; background-color: var(--tertiary-color) !important; }
.cat-institucional, .cat-institucional a, .cat-institucional::before { color: var(--primary-color) !important; }

.cat-dicas-eucatex { border: 1px solid #3A0CA3 !important; background-color: rgba(58,12,163,0.3) !important; }
.cat-dicas-eucatex, .cat-dicas-eucatex a, .cat-dicas-eucatex::before { color: #3A0CA3 !important; }

.cat-produtos { border: 1px solid #0096C7 !important; background-color: rgba(0,150,199,0.3) !important; }
.cat-produtos, .cat-produtos a, .cat-produtos::before { color: #0096C7 !important; }

.content-blog .date { font-size: 0.95rem; font-weight: 600; padding: 0 1rem; }

.swiper .container { position: relative; border-bottom: 2px solid var(--primary-color); }
.swiper h3 { text-transform: uppercase; font-weight: 400; }
.swiper-button-next, .swiper-button-prev { display: flex; align-items: center; width: 40px; height: 40px; top: 30px; border: 1px solid var(--primary-color); left: auto; right: 0; background-color: #efefef; border-radius: 50%; text-align: center; }
.swiper-button-prev { right: 50px; }
.swiper-button-next:after, .swiper-button-prev:after { font-size: 0.7rem; }

@media (min-width: 992px) { 
  .swiper-button-next, .swiper-button-prev { top: var(--swiper-navigation-top-offset,50%); }
}

.swiper-button-next:hover, .swiper-button-prev:hover { background-color: var(--primary-color); color: white; }

#social-links { text-align: center; }

#social-links a {
  border-radius: 5px;
  text-align: center;
  width: 45px;
  height: 40px;
  margin: 0 0.2rem;
  font-size: 1.5rem;
  display: inline-block; 
  line-height: 2.8rem;
  text-decoration: none;
  color: var(--quinary-color);
  display: inline-block;
}

#social-links a:hover { background-color: var(--primary-color); color:#FFF; }

aside { background-color: #FFF; border-radius: 0; }



/* Estilos para a galeria grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    width: 100%;
    max-width: 1200px;
}

/* Estilo para cada item da galeria */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0;
    display: block;
}

/* Efeito hover nos itens */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Container da imagem */
.gallery-icon {
    width: 100%;
    height: 100%;
    display: block;
}

/* Estilo para as imagens */
.gallery-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Efeito de zoom na imagem ao passar o mouse */
.gallery-item:hover .gallery-icon img {
    transform: scale(1.05);
}

/* Estilos responsivos para diferentes tamanhos de tela */
@media (max-width: 1200px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 18px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
        padding: 0 10px;
    }
}

/* Estilo adicional para a galeria com 4 colunas específicas */
.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .gallery-columns-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Ajuste para altura das imagens (quadradas) */
.gallery-icon.landscape {
    aspect-ratio: 1/1; /* Torna as imagens quadradas */
}

/* Corrige o estilo inline incorreto no primeiro item */
.gallery-item[style*="display: inte;"] {
    display: block !important;
}

/* Estilos para acessibilidade */
.gallery-icon a:focus {
    outline: 2px solid #4d90fe;
    outline-offset: 2px;
}

/* Remove estilos padrão do figure */
.gallery-item figure {
    margin: 0;
}


.plan-card {
    position: relative;
    background: linear-gradient(180deg, #0b1f24, #071418);
    overflow: hidden;
    height: 100%;
    display: flex;
    font-size: 1rem;
    flex-direction: column;
border: 1px solid var(--secondary-color);
    color: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,.4);
}

.plan-image img {
    width: 100%;
    height: 225px;
    object-fit: cover;
}

.plan-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}

.plan-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: #00f0ff;
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    width: fit-content;
    margin: 0 auto 10px;
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.plan-description {
    color: #b9d6dc;
    margin-bottom: 15px;
}

.plan-price {
    margin-bottom: 10px;
}

.plan-price .currency {
    font-size: 16px;
    opacity: .7;
}

.plan-price .value {
    font-size: 36px;
    font-weight: 700;
}

.plan-type {
    font-size: 13px;
    color: #7fdde5;
    margin-bottom: 20px;
}

.plan-button {
    margin-top: auto;
    background: #00f0ff;
    color: #000;
    padding: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background .3s ease;
}

.plan-button:hover {
    background: #00c9d6;
    color: #000;
}

.social-widget {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-widget a {
    width: 40px;
    height: 40px;
    background: #222;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-widget a:hover {
    background: #f7941d;
    transform: translateY(-3px);
}

#menu-menu-warrior-1, #menu-menu-principal-1 { list-style: none; margin: 0; padding: 0; }

#menu-menu-warrior-1 li a, #menu-menu-principal-1 li a {     color: #FFF;
    text-decoration: none;
    font-weight: 600;
position:relative;
    margin: 0 0.5rem; transition: var(--transition) }

#menu-menu-warrior-1 li a:hover, #menu-menu-principal-1 li a:hover { color:var(--secondary-color);  ;
}

#menu-menu-warrior-1 li a::before, #menu-menu-principal-1 li a::before {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

#menu-menu-warrior-1 li a:hover::before, #menu-menu-principal-1 li a:hover::before {
    width: 100%;
}

#menu-menu-warrior-1 li a:hover, #menu-menu-principal-1  li a:hover {
    color: var(--secondary-color) !important;
}

.video-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid var(--secondary-color);
}

/* Botão flutuante */
.mute-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0,0,0,.6);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: .5rem .7rem;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity .3s ease, background .3s ease;
  z-index: 2;
}

/* quando o som estiver ATIVO */
.mute-btn.is-unmuted {
  opacity: 0.2;
  background: transparent;
}

.mute-btn.is-unmuted:hover {
  opacity: 1;
  background: rgba(0,0,0,.4);
}

