   /*
   Theme Name: Meu Tema Fisio
   Author: Gustavo Amaral Guimarães
   Version: 1.0
   */

   html {
    scroll-behavior: smooth;
}
.hero-gradient-rosa {
    background: linear-gradient(135deg, #ec6c6c 0%, #f39696 100%);
    position: relative;
    overflow: hidden;
}
.hero-gradient {
    background: linear-gradient(135deg, #e9bdba 0%, #ff8579 100%);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,0 L100,50 L50,100 L0,50 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.1;
}

.benefit-card {
    background: rgba(238, 168, 168, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.template-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.template-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(25, 124, 190, 0.1), rgba(75, 161, 197, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.template-card:hover::after {
    opacity: 1;
}

.promo-banner {
    background: linear-gradient(90deg, #e0a6a6 0%, #fa6363 100%);
    color: rgb(14, 0, 0);
    padding: 0.75rem 1rem;
    position: relative;
    z-index: 50;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* Remover overflow e ::before */
.promo-banner::before {
    display: none !important;
}
.promo-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.promo-banner a {
    color: #f7f7f7;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
}
.promo-banner a:hover {
    color: #FBBF24;
    background: rgba(255, 255, 255, 0.2);
}
.promo-banner i {
    color: #FCD34D;
    animation: pulse 2s infinite;
}
.promo-banner .close-btn {
    position: relative;
    z-index: 10;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 1rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: background 0.2s;
}
.promo-banner .close-btn:hover {
    background: rgba(255,255,255,0.15);
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.document-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(25, 124, 190, 0.1);
    transition: all 0.3s ease;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(25, 124, 190, 0.3);
}

.document-icon {
    background: linear-gradient(135deg, #ff8579 0%, #ff8579 100%);
    color: rgb(255, 255, 255);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.document-card:hover .document-icon {
    transform: scale(1.1);
}

.price-tag {
    background: linear-gradient(135deg, #197CBE 0%, #4ba1c5 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.price-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(25, 124, 190, 0.3);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #be19a8 0%, #c54bb5 100%);
    border-radius: 3px;
}

.feature-icon {
    background: linear-gradient(135deg, #ff8579 0%, #ff8579 100%);
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.template-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: transparent;
    box-shadow: none;
}

.template-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.template-card img {
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    will-change: transform;
    border-radius: 0;
}

.template-card:hover img {
    transform: scale(1.03);
}

/* Removendo os efeitos de overlay */
.template-card::after {
    display: none;
}

.template-card .overlay-content {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

/* Ajustando os cards de posts gerais */
.general-post-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
}

.general-post-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.general-post-card img {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    will-change: transform;
    border-radius: 0;
}

.general-post-card:hover img {
    transform: scale(1.05);
}

/* Removendo os efeitos de overlay dos posts gerais */
.general-post-card::before {
    display: none;
}

.general-post-card .content-overlay {
    display: none;
}

.general-post-card .post-title,
.general-post-card .post-description {
    display: none;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Estilos para a seção de benefícios */
.benefit-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border-radius: 0;
    padding: 2rem;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #197CBE 0%, #4ba1c5 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #197CBE 0%, #4ba1c5 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: translateY(-5px);
}

.benefit-icon i {
    font-size: 1.75rem;
    color: white;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #4a5568;
    line-height: 1.6;
}

/* Estilos específicos para cards de stories */
.template-card.story-card {
    max-width: 300px;
    margin: 0 auto;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    box-shadow: none;
}

.template-card.story-card:hover {
    transform: scale(1.05);
}

.template-card.story-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 9/16;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
}

.template-card.story-card:hover img {
    transform: scale(1.03);
}

/* Removendo o efeito de escurecimento para stories */
.template-card.story-card::after {
    display: none;
}

/* Removendo o background do container do story */
.template-card.story-card .relative {
    background: transparent;
    border-radius: 0;
}

.template-card .relative {
    background: transparent;
    border-radius: 0;
}

.general-post-card .relative {
    background: transparent;
    border-radius: 0;
}

/* Estilos para o Swiper */
.swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    width: 300px;
    height: auto;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide:hover {
    transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #197CBE;
    background: rgba(255, 255, 255, 0.9);
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    max-width: 56px;
    max-height: 56px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 0;
    box-sizing: border-box;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 2.1rem;
    line-height: 1;
    width: 1em;
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

.swiper-pagination-bullet-active {
    background: #197CBE;
}

@media (max-width: 768px) {
    .swiper-slide {
        width: 280px;
    }
}

/* Ajustes para centralização dos slides */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.template-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    aspect-ratio: 1/1;
}

.template-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    will-change: transform;
    border-radius: 0;
}

/* Ajustes específicos para cards de stories */
.template-card.story-card {
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 9/16;
}

.template-card.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 9/16;
}

/* Ajustes para posts gerais */
.general-post-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1/1;
}

.general-post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ajustes para o container das imagens */
.template-card .relative,
.general-post-card .relative {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
}

/* Ajustes para os carrosséis específicos */
.swiper.chamadasSwiper .swiper-slide,
.swiper.edicaoSwiper .swiper-slide {
    width: 300px;
    aspect-ratio: 1/1;
    opacity: 0.4;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

/* Estilos específicos para carrosséis com 2 slides */
.swiper.chamadasSwiper,
.swiper.edicaoSwiper {
    max-width: 350px;
    margin: 0 auto;
    padding: 24px 0;
}
@media (min-width: 768px) {
    .swiper.chamadasSwiper, .swiper.edicaoSwiper {
        display: none !important;
    }
}
@media (max-width: 767px) {
    .desktop-duo {
        display: none !important;
    }
}

.swiper.chamadasSwiper .swiper-slide-active,
.swiper.edicaoSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.swiper.chamadasSwiper .swiper-button-next,
.swiper.chamadasSwiper .swiper-button-prev,
.swiper.edicaoSwiper .swiper-button-next,
.swiper.edicaoSwiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.swiper.chamadasSwiper .swiper-button-next:after,
.swiper.chamadasSwiper .swiper-button-prev:after,
.swiper.edicaoSwiper .swiper-button-next:after,
.swiper.edicaoSwiper .swiper-button-prev:after {
    font-size: 1.2rem;
    color: #197CBE;
}

.swiper.chamadasSwiper .swiper-button-next:hover,
.swiper.chamadasSwiper .swiper-button-prev:hover,
.swiper.edicaoSwiper .swiper-button-next:hover,
.swiper.edicaoSwiper .swiper-button-prev:hover {
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

.swiper.chamadasSwiper .swiper-pagination,
.swiper.edicaoSwiper .swiper-pagination {
    bottom: 0;
}

.swiper.chamadasSwiper .swiper-pagination-bullet,
.swiper.edicaoSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #197CBE;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper.chamadasSwiper .swiper-pagination-bullet-active,
.swiper.edicaoSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Estilos para a seção de preços */
.premium-pack-card {
    background: linear-gradient(135deg, #197CBE 0%, #1565A3 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(25, 124, 190, 0.2);
    width: 100%;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    padding-top: 2.5rem;
}

.title-banner {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.25rem;
    text-align: center;
    position: relative;
    margin-bottom: 1rem;
}

.title-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #197CBE, #197CBE);
}

.title-banner h3 {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-wrapper {
    color: white;
    padding: 0 2rem 2rem;
}

.content-wrapper ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.content-wrapper li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-wrapper li:last-child {
    border-bottom: none;
}

.content-wrapper li span {
    color: #4ADE80;
    margin-right: 0.75rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    margin: 0 -2rem -2rem;
    padding: 2rem;
    border-radius: 0 0 20px 20px;
}

.pricing-section .line-through {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.pricing-section .text-4xl {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-section .text-base {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.pricing-section a {
    display: inline-block;
    background: white;
    color: #197CBE;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-section a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.title-banner-highlight {
    background: #fff;
    color: #197CBE;
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    padding: 1.2rem 2rem 1.2rem 2rem;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 4px 16px 0 rgba(25,124,190,0.10);
    margin: 0 auto -1.5rem auto;
    max-width: 80%;
    position: relative;
    top: -1.5rem;
    z-index: 2;
    letter-spacing: 1px;
    border-bottom: 3px solid #4ADE80;
}

.title-banner-highlight h3 {
    color: #197CBE;
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card de oferta estilo minimalista */
.offer-style {
    background: #197CBE;
    border-radius: 18px;
    padding: 0 1.5rem 2rem 1.5rem;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: 0 4px 24px 0 rgba(25,124,190,0.10), 0 12px 32px 0 rgba(25,124,190,0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: -60px;
    z-index: 10;
}

.offer-banner {
    background: #6EC1F6;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    border-radius: 18px 18px 0 0;
    padding: 0.9rem 1rem;
    width: 100%;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.offer-benefits {
    list-style: disc inside;
    color: #fff;
    font-size: 1.05rem;
    margin: 0 0 1.5rem 0;
    padding: 0 0 0 1rem;
    text-align: left;
}
.offer-benefits li {
    margin-bottom: 0.5rem;
    padding-left: 0.2rem;
}

.offer-price-box {
    width: 100%;
    text-align: center;
    margin: 1.2rem 0 1.5rem 0;
}
.offer-small {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.offer-small .line-through {
    text-decoration: line-through;
    color: #e0e7ef;
    font-weight: 400;
}
.offer-price {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0.2rem 0 0.2rem 0;
    letter-spacing: 1px;
}
.offer-parcelado {
    color: #e0e7ef;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.offer-btn {
    display: block;
    width: 100%;
    background: #fff;
    color: #197CBE;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 10px;
    padding: 0.9rem 0;
    text-align: center;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(25,124,190,0.08);
}
.offer-btn:hover {
    background: #e6f1fa;
    color: #1565A3;
}

/* NOVO CARD DE OFERTA - VISUAL FIEL AO EXEMPLO */
.pricing-offer-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  margin-top: 2.5rem;
  z-index: 20;
}

.pricing-offer-card {
  background: #ee7469;
  border-radius: 22px;
  box-shadow: 0 10px 40px 0 rgba(221, 98, 94, 0.644), 0 2px 8px 0 rgba(233, 209, 104, 0.966);
  max-width: 340px;
  width: 100%;
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-offer-banner {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: #494747;
  color: #fff;
  font-weight: 800;
  font-size: 1.08rem;
  border-radius: 14px;
  padding: 0.85rem 2.2rem;
  box-shadow: 0 4px 16px 0 rgba(235, 212, 211, 0.1);
  letter-spacing: 0.5px;
  z-index: 2;
  text-align: center;
  white-space: nowrap;
}

.pricing-offer-benefits {
  list-style: disc inside;
  color: #ffffff;
  font-size: 1.04rem;
  margin: 2.2rem 0 1.3rem 0;
  padding: 0 0 0 1rem;
  text-align: left;
  width: 100%;
}
.pricing-offer-benefits li {
  margin-bottom: 0.45rem;
  padding-left: 0.1rem;
  line-height: 1.5;
}

.pricing-offer-pricebox {
  width: 100%;
  text-align: center;
  margin: 1.2rem 0 1.5rem 0;
}
.pricing-offer-small {
  color: #fff;
  font-size: 1.01rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.pricing-offer-line {
  text-decoration: line-through;
  color: #e0e7ef;
  font-weight: 400;
}
.pricing-offer-price {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 900;
  margin: 0.2rem 0 0.2rem 0;
  letter-spacing: 1px;
}
.pricing-offer-parcelado {
  color: #e0e7ef;
  font-size: 1.01rem;
  margin-bottom: 0.5rem;
}
.pricing-offer-btn {
  display: block;
  width: 100%;
  background: #fff;
  color: #197CBE;
  font-weight: 800;
  font-size: 1.13rem;
  border-radius: 12px;
  padding: 1rem 0;
  text-align: center;
  text-decoration: none;
  margin-top: 0.7rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(25,124,190,0.08);
  letter-spacing: 0.5px;
  animation: pulse-offer-btn 1.5s infinite;
}
.pricing-offer-btn:hover {
  background: #e6f1fa;
  color: #1565A3;
}

@media (max-width: 500px) {
  .pricing-offer-card {
    max-width: 98vw;
    padding: 2.2rem 0.5rem 1.5rem 0.5rem;
  }
  .pricing-offer-banner {
    font-size: 0.98rem;
    padding: 0.7rem 0.7rem;
  }
}

@keyframes pulse-offer-btn {
  0% { box-shadow: 0 0 0 0 rgba(25,124,190,0.18); }
  70% { box-shadow: 0 0 0 12px rgba(25,124,190,0.04); }
  100% { box-shadow: 0 0 0 0 rgba(25,124,190,0.18); }
}

/* Animação personalizada de pulsação */
@keyframes pulse-custom {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.animate-pulse-custom {
  animation: pulse-custom 2s infinite;
}

.line-through {
  text-decoration: line-through;
} 

/* Esconde todas as setas do Swiper por padrão */
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}


/* Mostra setas apenas nesses carrosséis específicos */
.templatesSwiper .swiper-button-next,
.templatesSwiper .swiper-button-prev,
.storiesSwiper .swiper-button-next,
.storiesSwiper .swiper-button-prev,
.postsSwiper .swiper-button-next,
.postsSwiper .swiper-button-prev,
.memesSwiper .swiper-button-next,
.memesSwiper .swiper-button-prev,
.feedbackSwiper .swiper-button-next,
.feedbackSwiper .swiper-button-prev,
.tecnicosSwiper .swiper-button-next,
.tecnicosSwiper .swiper-button-prev {
  display: flex !important;
}

/* garantir que o container seja o “referencial” das setas */
.tecnicosSwiper {
  position: relative;
}


/* Garante que as setas fiquem posicionadas dentro do swiper, não na tela toda */
.templatesSwiper,
.storiesSwiper,
.postsSwiper,
.memesSwiper,
.feedbackSwiper {
  position: relative;
}


.edicaoSwiper .swiper-button-next,
.edicaoSwiper .swiper-button-prev {
  display: flex !important;
}

/* Seção "Modelos em Dois Formatos" */
#templates h2 {
  color: #0F6EBB; /* título preto */
}

#templates h2 span {
  color: #0F6EBB; /* azul */
}

#templates p.subtitle-formatos {
  color: #050505; /* azul do texto */
}

/* Desktop mostra, mobile esconde */
.desktop-duo {
    display: none;
}

@media (min-width: 768px) {
    .desktop-duo {
        display: flex;
    }
    .formatosSwiper {
        display: none;
    }
}

/* Desktop aparece, mobile some */
.formatos-desktop {
  display: none;
}

/* Mobile carrossel */
@media (min-width: 768px) {
  .formatos-desktop {
    display: flex;
  }
  .formatosSwiper {
    display: none;
  }
}


/* Modelos em Dois Formatos – comportamento desktop x mobile */
.formatos-desktop {
  display: none;        /* some no mobile */
}

.formatosSwiper {
  display: block;       /* aparece no mobile */
}

@media (min-width: 768px) {
  .formatos-desktop {
    display: flex;      /* aparece no desktop */
  }
  .formatosSwiper {
    display: none;      /* some o carrossel no desktop */
  }
}


/* Modelos em Dois Formatos – controla o que aparece em cada tela */
#modelos-formatos .formatos-desktop {
  display: flex;
}

#modelos-formatos .formatos-mobile {
  display: none !important;  /* esconde carrossel no desktop */
}

@media (max-width: 768px) {
  #modelos-formatos .formatos-desktop {
    display: none !important;   /* some no mobile */
  }

  #modelos-formatos .formatos-mobile {
    display: block !important;  /* carrossel só no mobile */
  }
}

/* Mostrar 2 imagens no desktop */
#modelos-formatos .formatos-desktop {
  display: flex;
}

#modelos-formatos .formatos-mobile {
  display: none;
}

/* MOBILE — mostrar carrossel */
@media (max-width: 768px) {
  #modelos-formatos .formatos-desktop {
    display: none !important;
  }
  #modelos-formatos .formatos-mobile {
    display: block !important;
  }
}



/* Mostrar setas especificamente na seção Modelos em Dois Formatos */
.formatosSwiper .swiper-button-next,
.formatosSwiper .swiper-button-prev {
  display: flex !important;
}

/* Opcional: diminuir um pouco as setas se estiverem grandes */
.formatosSwiper .swiper-button-next,
.formatosSwiper .swiper-button-prev {
  width: 32px;
  height: 32px;
}

/* Reduz o tamanho das imagens no desktop */
.formatos-desktop .template-card img {
    max-width: 210px; /* Ajuste aqui (300–380px fica perfeito) */
}

/* Reduz a área total do container no desktop */
.formatos-desktop {
    max-width: 900px;  /* antes estava 1200px */
}

/* Para garantir que o fundo não fique gigante */
#templates {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Garante que as setas apareçam na seção Temas 2025 */
.temasSwiper .swiper-button-next,
.temasSwiper .swiper-button-prev {
  display: flex !important;
}



