.text-colored {
    color: #EC692F;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.garantia {
    background: #EC692F;
}
.calculator-container {    
    position: absolute;
    top: 400px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 80%;
    justify-content: space-between;
    border: 3px solid #EC692F;
}
.calculator-container input, .calculator-container select {
    border: none;
    padding: 10px;
    border-radius: 8px;
    flex: 1;
}
.calculator-container button {
    background: #EC692F;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
}

.faq-section {
    /* Preto mais intenso e laranja mais suave (transparência) */
    background: linear-gradient(
        135deg,
        #0d0d0d 30%,
        #EC692F 100%
    );
    color: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.faq-content {
    font-size: 0.95rem;
}

/* Animação do mockup do celular */
.mockup-animation {
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(30px) rotate(-5deg);
    opacity: 0;
    filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.animate-mockup {
    transform: translateY(0) rotate(0);
    opacity: 1;
    filter: blur(0);
    box-shadow: 0 15px 35px rgba(236, 105, 47, 0.2);
}

/* Animação para os cards flutuantes */
.mockup-card {
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: scale(0.8);
}

.mockup-card-left {
    transform: translateX(-20px) scale(0.8);
}

.mockup-card-right {
    transform: translateX(20px) scale(0.8);
}

.animate-mockup-card {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Animação para os números das estatísticas */
.stat-number {
    display: inline-block;
    font-weight: bold;
    color: #EC692F;
}

.stat-container {
    position: relative;
    overflow: hidden;
}

.stat-container::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #EC692F, transparent);
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transition: transform 1.5s ease-out;
    -ms-transition: transform 1.5s ease-out;
    transition: transform 1.5s ease-out;
}

.stat-container.animated::after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

/* Destaque animado para botões de reserva */
.btn-reserva {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-animation: pulse-reserva 2s infinite;
    animation: pulse-reserva 2s infinite;
}

.btn-reserva::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-animation: shine-reserva 3s infinite;
    animation: shine-reserva 3s infinite;
}

.btn-reserva:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-animation: none;
    animation: none;
}

/* Ajuste específico para botões de reserva em cards */
.price-card .btn-reserva {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Ajuste para o badge de melhor opção */
.badge-melhor-opcao::before {
    content: 'Melhor Opção';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #EC692F;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 12px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: bounce-badge 2s infinite;
    z-index: 2;
}

/* Ajuste para o destaque extra durante rolagem */
.highlight-extra {
    -webkit-animation: highlight-pulse 0.5s ease-in-out 3 !important;
    animation: highlight-pulse 0.5s ease-in-out 3 !important;
    box-shadow: 0 0 20px rgba(236, 105, 47, 0.8) !important;
    z-index: 10;
}

/* Ajuste específico para o botão no menu principal quando destacado */
.btn-reserva-principal.highlight-extra {
    -webkit-animation: highlight-pulse-subtle 0.5s ease-in-out 3 !important;
    animation: highlight-pulse-subtle 0.5s ease-in-out 3 !important;
}

@keyframes pulse-reserva {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(236, 105, 47, 0.3);
    }
    50% {
        -webkit-transform: scale(1.03);
        -ms-transform: scale(1.03);
        transform: scale(1.03);
        box-shadow: 0 6px 20px rgba(236, 105, 47, 0.5);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(236, 105, 47, 0.3);
    }
}

@-webkit-keyframes pulse-reserva {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(236, 105, 47, 0.3);
    }
    50% {
        -webkit-transform: scale(1.03);
        transform: scale(1.03);
        box-shadow: 0 6px 20px rgba(236, 105, 47, 0.5);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(236, 105, 47, 0.3);
    }
}

@keyframes shine-reserva {
    0% {
        left: -100%;
        -webkit-transition-property: left;
        -ms-transition-property: left;
        transition-property: left;
    }
    20% {
        left: 100%;
        -webkit-transition-property: left;
        -ms-transition-property: left;
        transition-property: left;
    }
    100% {
        left: 100%;
        -webkit-transition-property: left;
        -ms-transition-property: left;
        transition-property: left;
    }
}

@-webkit-keyframes shine-reserva {
    0% {
        left: -100%;
        -webkit-transition-property: left;
        transition-property: left;
    }
    20% {
        left: 100%;
        -webkit-transition-property: left;
        transition-property: left;
    }
    100% {
        left: 100%;
        -webkit-transition-property: left;
        transition-property: left;
    }
}

/* Destaque especial para o botão de reserva principal */
.btn-reserva-principal {
    -webkit-animation: pulse-reserva-principal 2s infinite;
    animation: pulse-reserva-principal 2s infinite;
    position: relative;
    z-index: 1;
}

.btn-reserva-principal::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 16px;
    background: linear-gradient(45deg, #EC692F, #ff9f5a, #EC692F);
    background-size: 200% 200%;
    z-index: -1;
    animation: gradient-border 3s ease infinite;
    opacity: 0.5;
}

/* Ajuste específico para o botão no menu principal */
.btn-reserva-principal.block {
    background-color: white !important;
    color: #EC692F !important;
    font-weight: bold;
    z-index: 5;
}

.btn-reserva-principal.block:hover {
    background-color: #d85b27 !important;
    color: white !important;
}

@keyframes pulse-reserva-principal {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes gradient-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Badge de "Melhor Opção" */
.badge-melhor-opcao {
    position: relative;
}

@keyframes bounce-badge {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-3px);
    }
}

/* Animações para estatísticas */
.stat-container {
    position: relative;
}

.stat-container::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #EC692F;
    transition: width 1.5s ease;
}

.stat-container.animated::after {
    width: 50px;
}

/* Animações para o mockup */
.mockup-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-mockup {
    opacity: 1;
    transform: translateY(0);
}

.mockup-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-mockup-card {
    opacity: 1;
    transform: translateY(0);
}

.mockup-card-left {
    transform: translateX(-20px);
}

.mockup-card-right {
    transform: translateX(20px);
}

/* Estilos responsivos para o carrossel */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px !important;
    }
    
    .swiper-slide .absolute.bottom-0 {
        padding: 10px;
    }
    
    .swiper-slide .text-xl {
        font-size: 1rem;
    }
    
    .swiper-slide .text-sm {
        font-size: 0.75rem;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

/* Correção para o carrossel da seção "Nossa Estrutura" */
.swiper.mySwiper {
    width: 100%;
    height: 400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
    max-width: 100vw;
}

.swiper.mySwiper .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper.mySwiper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    overflow: hidden;
}

.swiper.mySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.swiper.mySwiper .swiper-button-next,
.swiper.mySwiper .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(236, 105, 47, 0.2);
    border-radius: 50%;
    color: white !important;
}

.swiper.mySwiper .swiper-button-next:hover,
.swiper.mySwiper .swiper-button-prev:hover {
    background-color: rgba(236, 105, 47, 0.5);
}

.swiper.mySwiper .swiper-button-next:after,
.swiper.mySwiper .swiper-button-prev:after {
    font-size: 18px !important;
}

.swiper.mySwiper .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper.mySwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background-color: white;
    opacity: 0.5;
    margin: 0 4px;
}

.swiper.mySwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #EC692F;
}

/* Estilos para a seção de preços */
.price-card-highlight {
  animation: pulse-border 2s infinite;
  position: relative;
  z-index: 1;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 105, 47, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(236, 105, 47, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(236, 105, 47, 0);
  }
}

/* Efeito de hover nos cards de preço */
#preco .grid > div {
  transition: all 0.3s ease;
}

#preco .grid > div:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Badge de mais popular */
.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #EC692F;
  color: white;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  border-bottom-left-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Ícones nos cards de preço */
.price-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

@keyframes highlight-pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes highlight-pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes highlight-pulse-subtle {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes highlight-pulse-subtle {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Estilos do Footer */
footer {
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #EC692F, transparent);
}

footer a {
    transition: all 0.3s ease;
}

footer .social-icons a {
    transform: translateY(0);
    transition: all 0.3s ease;
}

footer .social-icons a:hover {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .calculator-container {
        flex-direction: column;
        align-items: stretch;
        top: 0;
        padding: 15px;
    }
    .calculadora {
        flex-wrap: wrap;
    }

    .faq-section {
        flex-direction: column;
        text-align: center;
    }
    .faq-section .md\:w-1\/3,
    .faq-section .md\:w-2\/3 {
        width: 100% !important;
        max-width: 100% !important;
    }
    .faq-section .md\:w-1\/3 {
        margin-bottom: 2rem;
        text-align: center;
    }
    .faq-content {
        text-align: left;
    }

    .encimaCell{
        text-align: center;
    }

    footer .grid {
        gap: 2rem;
    }
    
    footer .text-center {
        text-align: center !important;
    }
    
    footer .flex-col {
        flex-direction: column;
    }
    
    footer .space-y-4 > * + * {
        margin-top: 1rem;
    }
}

/* Correção para o problema de barra horizontal */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100%;
}

/* Correção para o nav fixo */
nav.fixed {
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
}

@media (max-width: 768px) {
    .swiper.mySwiper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
    }
    
    .swiper.mySwiper .swiper-slide {
        width: 100% !important;
    }
    
    .swiper.mySwiper .swiper-slide img {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px !important;
    }
    
    /* Outras correções para mobile */
    .max-w-screen-xl,
    .max-w-6xl,
    .max-w-7xl {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }
    
    #estrutura .relative {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
}