@import url('https://fonts.googleapis.com/css2?family=Calistoga&family=Chango&family=Chela+One&family=Courgette&family=Edu+AU+VIC+WA+NT+Hand:wght@400..700&family=Grand+Hotel&family=Leckerli+One&family=Pattaya&family=Playwrite+NO&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=REM:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rufina:wght@400;700&family=Satisfy&family=Sevillana&family=Titan+One&display=swap');
:root {
    --primary-color: #FF1493;
    --primary-dark: #C60C7B;
    --secondary-color: #FF69B4;
    --text-color: #333;
    --light-bg: #FFF5FA;
    --dark-bg: #1A0F14;
    --dark-pink: #8B0D5B;
    --light-pink: #FF1493;
    --pink-glass-bg: rgba(255, 20, 147, 0.2);
    --pink-glass-border: rgba(255, 20, 147, 0.3);
    --vibrant-pink: #FF1493;
            --pink-glass-bg: rgba(255, 20, 147, 0.1);
        }
    


/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #FFF0F5;
    color: var(--dark-pink);
    margin: 0;
    padding: 0;
    
}

h1{
    color: var(--primary-dark);
    font-family: "Poppins", serif;
    font-size: 3vw;
    font-style: normal;
 
}

.glass-card h2{
    color: var(--primary-dark);
    font-family: "Poppins", serif;
    font-weight: bold;
    font-size: 2vw;
    font-style: normal;
 
}


h4{
    color: var(--primary-dark);
    font-family: "Chango", serif;
    font-size: 1.5vw;
    font-style: normal;

}

h3, h4, h5, h6 {
    color: var(--primary-dark);
    font-family: "Chango", serif;
    font-weight: 400;
    font-style: normal;
      
}

h2 {
    color: var(--light-bg);
    font-family: "Chango", serif;
    font-weight: 400;
    font-style: normal;
  }


  .btn-primary {
    background-color: #FF1493; /* Rosa escuro (Deep Pink) */
    border-color: #FF69B4; /* Rosa mais claro para borda */
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: #C71585; /* Rosa mais escuro no hover */
    border-color: #FF1493;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
    color: #fff;
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 20, 147, 0.3);
}

/* Efeito de brilho ao passar o mouse */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, #FFE6F3 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
}


.hero-image {
    height: 450px;
    margin-left: 40px;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Problem & Solution Cards */
.bg-custom {
    background-color: var(--vibrant-pink);
    color: white;
}

.curly-icon {
    position: absolute;
    opacity: 0.1;
    z-index: -1;
}

.section-title {
    color: var(--dark-pink);
    font-weight: bold;
}

.problem-card, .solution-card {
    backdrop-filter: blur(10px);
    background-color: var(--light-bg);
    border: 1px solid rgba(20, 255, 251, 0.979);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px 0 rgba(255, 20, 147, 0.15);
    transition: transform 0.3s ease;
}

.problem-card:hover, .solution-card:hover {
    transform: scale(1.02);
}

.problem-card h3, .solution-card h3 {
    margin-top: -50px;
    background-color: #09dfee;
    color:var(--vibrant-pink);
    width: 90%;
    border-bottom: 2px solid rgba(20, 255, 251, 0.979);
    padding-bottom: 10px;
    font-family: "Poppins", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
}

.problem-card ul, .solution-card ul {
    list-style-type: none;
    padding: 0;
}

.problem-card li, .solution-card li {
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.problem-card li::before, .solution-card li::before {
    content: '•';
    color: #8B0D5B;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.benefit-card {
    backdrop-filter: blur(10px);
    background-color: var(--pink-glass-bg);
    border: 1px solid var(--pink-glass-border);
    border-radius: 15px;
    padding: 20px;
    height: auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.benefit-card h4{
    color: var(--vibrant-pink);
    background-color: #09dfee;
    font-family: "Chango", serif;
    font-size: 1.2rem;
    font-style: normal;

}
.benefit-card:hover {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits{    
    background-color:#C60C7B;
}

.benefit-card {
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    background-color: rgb(255, 195, 227);
    border: 1px solid rgb(7, 226, 255);
    transition: transform 0.3s ease;
}

.benefit-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.benefit-image {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 5px;
    border: 3px solid var(--dark-pink);
}

.benefit-card h2{
        color: var(--light-bg);
        font-family: "Chango", serif;
        font-size: 3vw;
        font-style: normal;
    
    }
    

.benefit-card:hover {
    transform: scale(1.05);
}

/* Missing Section */
.missing-card {
    background: var(--dark-bg);
    color: white;
    height: 100%;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.animated-missing {
    position: relative;
    display: inline-block;
    animation: slideFromRight 1s ease-out forwards;
    opacity: 0;
    transform: translateX(100px);
}
@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes underlineGrow {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}
.missing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.missing-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Ingredients Section */
.ingredient-card {
    background: white;
    border: 1px solid #09dfee;   
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.missing h2{
    color: var(--vibrant-pink);
}
.missing h4{
    color: var(--vibrant-pink);
}

.ingredient-card h4 {
    background-color: #09dfee;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-family: "Poppins", 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bold;
}

.ingredient-card ul {
    list-style: none;
    padding: 0;
}

.ingredient-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Testimonials */

.testimonial-section {
    background-color:var(--dark-bg);
    padding: 50px 0;
}

.testimonial-card {
    backdrop-filter: blur(10px);
    background-color: var(--pink-glass-bg);
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.02);
}

.testimonial-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--vibrant-pink);
    margin-bottom: 20px;
}
.testimonial-section h2{
    color: var(--primary-dark);
}
.testimonial-quote {
    color: #f0e3f0;
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1rem;
}


.testimonial-name {
    color: var(--vibrant-pink);
    font-weight: bold;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--light-pink);
    border-radius: 50%;
}

/* Video Cards */
/* Estilos para o contêiner do vídeo */

.tutorials h2{
    color: var(--primary-color);     

}

.title-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.animated-title {
    position: relative;
    display: inline-block;
    animation: slideFromRight 1s ease-out forwards;
    opacity: 0;
    transform: translateX(100px);
}

.animated-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #ff00f7);
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineGrow 0.8s ease-out 1s forwards;
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes underlineGrow {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

/* Efeito hover adicional */
.animated-title:hover::after {
    background: linear-gradient(90deg, #00ff88, #007bff);
    transition: background 0.3s ease;
}



.video-container {
    position: relative;
    width: 100%;
    height:690px; /* Altura fixa de 300px */
    overflow: hidden; /* Garante que o conteúdo não ultrapasse o contêiner */
    border-radius: 10px; /* Borda arredondada */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra suave */
  }
  
  /* Estilos para o embed do Instagram */
  .instagram-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none; /* Remove a borda padrão */
  }
  
  /* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .video-container {
      height: 600px; /* Altura menor para dispositivos móveis */
    }
 
    .hero-image {
        height: 450px;
        width: 90%;
        margin: 10px;
        animation: float 6s ease-in-out infinite;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0px); }
    }
    h1{
        margin-top: 20px;
        color: var(--primary-dark);
        font-family: "Poppins", serif;
        font-size: 3vw;
        font-style: normal;
     
    }
    .hero {
        text-align: center;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .price-box {
        margin: 2rem 0;
    }
    .benefit-card h4{
        color: var(--vibrant-pink);
        background-color: #09dfee;
        font-family: "Chango", serif;
        font-size: 1.5rem;
        font-style: normal;
    
    }
    .benefit-card h2{
        color: var(--light-bg);
        font-family: "Chango", serif;
        font-size: 1.5rem;
        font-style: normal;
    
    }
    .ingredient-card h4{
        color: var(--vibrant-pink);
        font-family: "Chango", serif;
        font-size: 1.5rem;
        font-style: normal;

    }
    .problem-card, .solution-card {
        margin-top: 30px;
        backdrop-filter: blur(10px);
        background-color: var(--light-bg);
        border: 1px solid rgba(20, 255, 251, 0.979);
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 8px 32px 0 rgba(255, 20, 147, 0.15);
        transition: transform 0.3s ease;
    }
    .glass-card h2{
        color: var(--primary-dark);
        font-family: "Poppins", serif;
        font-size: 2rem;
        font-style: normal;
        text-align: center;
     
    }
    
    .guarantee-box h4{
        color: #09dfee;
        font-size: 4rem;
        font-family: Georgia, 'Times New Roman', Times, serif;
    
    }
    .guarantee-box .h4{
        font-size: 2rem;
    }
    .img-fluid{
        margin-top: 30px;
        width: 90%;
    }
    .missing h2{
        color: var(--vibrant-pink);
        font-size: 1rem;
        margin:10px;
      }
      .missing-card h4{
        color: var(--vibrant-pink);
        font-size: 1rem;
        margin:10px;
      }
      .faq{
        margin-top: -90px;
      }
      
      .btn-primary {
        background-color: #FF1493; /* Rosa escuro (Deep Pink) */
        border-color: #FF69B4; /* Rosa mais claro para borda */
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 600;
        color: #fff;
        transition: all 0.4s ease;
        box-shadow: 0 4px 15px rgba(255, 20, 147, 0.2);
        position: relative;
        overflow: hidden;
    }
    
    .btn-primary:hover {
        background-color: #C71585; /* Rosa mais escuro no hover */
        border-color: #FF1493;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
        color: #fff;
    }
    
    .btn-primary:active {
        transform: translateY(1px);
        box-shadow: 0 2px 10px rgba(255, 20, 147, 0.3);
    }
    
    /* Efeito de brilho ao passar o mouse */
    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent
        );
        transition: 0.5s;
    }
    
    .btn-primary:hover::before {
        left: 100%;
    }
    .animated-title {
        font-size: 1.8rem;
    }
      
    }

  
  

/* CTA Section */
.cta {
    background-color: var(--vibrant-pink);
    color: white;
}

.cta h2 {
    color: white;
}

/* Estilos básicos do botão */

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.pulse-button {
  border-color: #fb00ea;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;   
  font-weight: bold;
  color: #fff;
  background-color: #007bff; /* Cor primária do Bootstrap */
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Efeito de pulso infinito */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(4, 214, 233, 0.92); /* Cor primária do Bootstrap com transparência */
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(0, 123, 255, 0); /* Aumenta o tamanho e desaparece */
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); /* Retorna ao estado inicial */
  }
}

/* Aplicando a animação ao botão */
.pulse-button {
  animation: pulse 2s infinite; /* Repete a animação infinitamente a cada 2 segundos */
}

/* Efeito hover para interatividade */

.pulse-button:hover {
  background-color: #0056b3; /* Cor mais escura ao passar o mouse */
  animation: none; /* Pausa a animação ao passar o mouse */
}

.price-box {
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
}
.payment-icons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    font-size: 2rem;
}

.payment-icons i {
    transition: transform 0.3s ease;
}

.payment-icons i:hover {
    transform: scale(1.2);
}
.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    display: block;
}

.new-price {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    color: #09dfee;
}

.guarantee-box h4{
    color: #09dfee;
    font-size: 2vw;
    font-family: Georgia, 'Times New Roman', Times, serif;

}

.installments {
    font-size: 1.2rem;
    opacity: 0.9;
    display: block;
}

.guarantee-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
}

.guarantee-box i {
    font-size: 2.5rem;
}

/* FAQ Section */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    background: white;
    border-radius: 15px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: rgb(255, 227, 250);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
}

.footer h5 {
    color: var(--vibrant-pink);
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

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

/* Responsive Design */


/* Curls Pattern Animation */
.curls-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50c20 0 36-16 36-36S70-22 50-22 14-6 14 14s16 36 36 36zm0-5c17 0 31-14 31-31S67-17 50-17 19-3 19 14s14 31 31 31z' fill='%23FF1493' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: patternFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes patternFloat {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}