.navbar-top{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
      background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
}

.btn-gradient{
   background: linear-gradient(white, white) padding-box,
              linear-gradient(to right, darkblue, darkorchid) border-box;
  border-radius: 16px;
  border: 4px solid transparent;
  color: black!important;
  padding: 16px 12px;
  
}

.text-gradient{
   background: -webkit-linear-gradient(#E63C3F, #FF04EE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* HERO Section ==============*/

    .hero-section {
      height: 100vh;
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem;
  color: white;
  text-align: left;
  background: transparent;
  backdrop-filter: blur(4px);
}

.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1), rgba(64, 0, 128, 0.0));
  z-index: -1;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.request-quote {
  background-color: white;
  color: #400080;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.request-quote:hover {
  background-color: #eee;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

    .marquee-container {
      position: relative;
        z-index: 1;
        display: flex;
        justify-content: right;
        align-items: self-end;
        width: 80%;
        height: 100%;
        gap: 2rem;
    }

    .marquee-column {
      position: relative;
    width: 33%;
    height: 120%;
    transform: rotate(10deg);
    /* overflow: hidden; */
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    }

    .marquee-track {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      animation: scroll-down 90s linear infinite;
    }

    .marquee-column:nth-child(odd) .marquee-track {
      animation: scroll-up 90s linear infinite;
    }

    .marquee-group {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .marquee-item {
      width: 100%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }

    .marquee-item:hover {
      transform: scale(1.05);
    }

    @keyframes scroll-up {
      from {
        transform: translateY(0vh);
      }
      to {
        transform: translateY(-100vh);
      }
    }

    @keyframes scroll-down {
      from {
        transform: translateY(0vh);
      }
      to {
        transform: translateY(100vh);
      }
    }

    @media (max-width: 768px) {
      .hero-content {
        width: 100%;
        height: 50%;
        position: absolute;
        top: 0;
        left: 0;
        padding: 2rem;
      }

      .hero-title {
        font-size: 2.5rem;
      }

      .marquee-item {
        width: 150px;
        height: 200px;
        font-size: 0.9rem;
      }

      .marquee-column {
        width: 200px;
      }

      .hero-content::after {
        width: 80px;
      }
    }

/* WHY US Section ==============*/

    .us-card{
        background: #E63C3F;
        background: linear-gradient(90deg, rgba(230, 60, 63, 0.3) 0%, rgba(255, 4, 238, 25%) 100%);
        border-radius: 16px;
    }
    .us-card p {
        text-wrap: balance;
    }


/* TIMELINE Section ==============*/

    .fse-timeline-container {
        padding: 40px 20px;
        width: 100%;
        margin: 0 auto;
    }

    .fse-timeline-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .fse-timeline-header h1 {
        color: #ffffff;
        font-size: 2.5rem;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .fse-timeline-header p {
        color: #cccccc;
        font-size: 1.2rem;
        font-weight: 300;
    }

    .fse-timeline {
        position: relative;
        padding: 20px 0;
    }

    .fse-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        width: 4px;
        background: linear-gradient(180deg, rgba(230, 60, 63, 0.8) 0%, rgba(255, 4, 238, 0.4) 100%);
        transform: translateX(-50%);
        border-radius: 2px;
        height: 0;
        transition: height 0.3s ease;
    }

    .fse-timeline-item {
        position: relative;
        margin: 40px 0;
    }

    .fse-timeline-circle {
        position: absolute;
        left: 50%;
        top: 30px;
        width: 60px;
        height: 60px;
        background: #E63C3F;
        background: linear-gradient(135deg, rgba(230, 60, 63, 1) 0%, rgba(255, 4, 238, 0.7) 100%);
        border-radius: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 1.5rem;
        box-shadow: 0 8px 25px rgba(230, 60, 63, 0.3);
        border: 4px solid white;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        opacity: 0.3;
        transform: translateX(-50%) scale(0.8);
    }

    .fse-timeline-circle:hover {
        transform: translateX(-50%) scale(1.1);
        box-shadow: 0 12px 35px rgba(230, 60, 63, 0.4);
    }

    .fse-timeline-content {
        width: 45%;
        padding: 25px;
        /* background: rgba(255, 255, 255, 0.95); */
        background: linear-gradient(90deg,rgba(171, 51, 53, 1) 0%, rgba(122, 45, 115, 1) 100%);
        color: white;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(171, 51, 53, 1);
        position: relative;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        opacity: 0.3;
        transform: translateY(30px);
    }

    .fse-timeline-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(230, 60, 63, 0.3);
    }

    .fse-timeline-item:nth-child(odd) .fse-timeline-content {
        margin-left: 0;
    }

    .fse-timeline-item:nth-child(even) .fse-timeline-content {
        margin-left: 55%;
    }

    .fse-timeline-content::before {
        content: '';
        position: absolute;
        top: 35px;
        width: 0;
        height: 0;
        border: 15px solid transparent;
    }

    .fse-timeline-item:nth-child(odd) .fse-timeline-content::before {
        right: -30px;
        border-left-color: rgba(255, 255, 255, 0.95);
    }

    .fse-timeline-item:nth-child(even) .fse-timeline-content::before {
        left: -30px;
        border-right-color: rgba(255, 255, 255, 0.95);
    }

    .fse-step-number {
        display: inline-block;
        background: linear-gradient(90deg, rgba(230, 60, 63, 0.3) 0%, rgba(255, 4, 238, 0.1) 100%);
        color: #E63C3F;
        padding: 8px 15px;
        border-radius: 16px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .fse-timeline-content h3 {
        color: white;
        font-size: 1.4rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .fse-timeline-content p {
        color: white;
        line-height: 1.6;
    }

    .fse-time-badge {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        background: linear-gradient(90deg, rgba(230, 60, 63, 0.1) 0%, rgba(255, 4, 238, 0.05) 100%);
        color: #E63C3F;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .fse-time-badge::before {
        content: '⚡';
        margin-right: 6px;
    }

    @keyframes fseConnectionPulse {
        0% { 
            box-shadow: 0 8px 25px rgba(230, 60, 63, 0.3);
            transform: translateX(-50%) scale(1);
        }
        50% { 
            box-shadow: 0 12px 35px rgba(230, 60, 63, 0.6), 0 0 0 10px rgba(230, 60, 63, 0.2);
            transform: translateX(-50%) scale(1.1);
        }
        100% { 
            box-shadow: 0 8px 25px rgba(230, 60, 63, 0.3);
            transform: translateX(-50%) scale(1);
        }
    }

    @keyframes fsePulse {
        0%, 100% { transform: translateX(-50%) scale(1); }
        50% { transform: translateX(-50%) scale(1.05); }
    }

    .fse-timeline-circle.active {
        animation: fsePulse 2s infinite;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .fse-timeline::before {
            left: 30px;
        }

        .fse-timeline-circle {
            left: 30px;
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }

        .fse-timeline-content {
            width: calc(100% - 100px);
            margin-left: 80px !important;
        }

        .fse-timeline-content::before {
            left: -15px !important;
            right: auto !important;
            border-right-color: rgba(255, 255, 255, 0.95) !important;
            border-left-color: transparent !important;
        }

        .fse-timeline-header h1 {
            font-size: 2rem;
        }
    }

/* CTA Section ==============*/

    .cta-wrapper{

        background: #E63C3F;
background: linear-gradient(90deg,rgba(171, 51, 53, 1) 0%, rgba(122, 45, 115, 1) 100%);
    }

/* Footer Section ==============*/
    .footer-wrapper{

        background: #cc4b4e;
background: linear-gradient(90deg,rgba(204, 75, 78, 1) 0%, rgba(122, 45, 115, 1) 100%);
    }


    
/* FAQ Section ==============*/
.faq-container {
  background: linear-gradient(black, black) padding-box,
              linear-gradient(to right,  rgba(204, 75, 78, 1) , rgba(122, 45, 115, 1) ) border-box;
  border-radius: 16px;
  border: 4px solid transparent;
}
.faq-question {
  background-color: transparent;
  margin-bottom: 12px;
  transition: all 0.3s ease;
 
}

.faq-question summary {
  padding: 20px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none; 
  font-size: 30px;
}

.faq-question summary::after {
  content: "◀"; 
  color:#E63C3F;
  font-size: 40px;
  transition: transform 0.3s ease;
}

.faq-question[open] summary::after {
  /* transform: rotate(45deg); */
  transform: scale(1.1);
}

.faq-answer {
  font-size: 24px;
  line-height: 1.6;
  padding: 20px 24px;
  margin-top: 0;
  border-radius: 0 0 10px 10px; 
}

.faq-question:hover {
 
}

.faq-question[open] {
}



/* WPForm Section ==============*/
/* WPForms Custom Contact Form Styling */
.wpforms-container {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 40px !important;
    background: linear-gradient(135deg, #E63C3F 0%, rgba(230, 60, 63, 0.3) 50%, rgba(255, 4, 238, 0.25) 100%) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.wpforms-field-container {
    display: grid !important;
    gap: 25px !important;
}

/* Field styling */
.wpforms-field {
    position: relative !important;
}

.wpforms-field-label {
    display: flex !important;
    align-items: center !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: white !important;
    margin-bottom: 8px !important;
}

.wpforms-field-label::before {
    content: '' !important;
    width: 20px !important;
    height: 20px !important;
    margin-right: 12px !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    filter: brightness(0) invert(1) !important;
}

/* Icons for each field */
#wpforms-204-field_1-container .wpforms-field-label::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") !important;
}

#wpforms-204-field_2-container .wpforms-field-label::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E") !important;
}

#wpforms-204-field_3-container .wpforms-field-label::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") !important;
}

/* Input and textarea styling */
.wpforms-field input[type="text"],
.wpforms-field input[type="email"],
.wpforms-field textarea {
    max-width: 100% !important;
    padding: 16px 20px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    color: white !important;
    font-size: 16px !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}
.wpforms-field textarea {
  resize: none;
 }
.wpforms-field input[type="text"]:focus,
.wpforms-field input[type="email"]:focus,
.wpforms-field textarea:focus {
    outline: none !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1) !important;
}

.wpforms-field input::placeholder,
.wpforms-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Textarea specific styling */
.wpforms-field textarea {
    min-height: 120px !important;
    resize: vertical !important;
}

/* Submit button */
.wpforms-submit-container {
    text-align: left !important;
}

.wpforms-submit {
    background: linear-gradient(135deg, #E63C3F 0%, rgba(255, 4, 238, 0.8) 100%) !important;
    color: white !important;
    border: none !important;
    padding: 10px 40px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 8px 20px rgba(230, 60, 63, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.wpforms-submit::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.5s !important;
}

.wpforms-submit:hover::before {
    left: 100% !important;
}

.wpforms-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(230, 60, 63, 0.4) !important;
}

.wpforms-submit:active {
    transform: translateY(0) !important;
}

/* Required field indicator */
.wpforms-required-label {
    color: #ff6b6b !important;
    margin-left: 4px !important;
}

/* Error styling */
.wpforms-error {
    color: #ff6b6b !important;
    font-size: 14px !important;
    margin-top: 5px !important;
}

/* Loading spinner */
.wpforms-submit-spinner {
    margin-left: 10px !important;
}

/* Hide honeypot fields */
.wpforms-field[data-field-id="4"],
.wpforms-field[data-field-id="5"] {
    display: none !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .wpforms-container {
        margin: 20px !important;
        padding: 30px 20px !important;
    }
    
    .wpforms-submit-container {
        text-align: center !important;
    }
    
    .wpforms-submit {
        width: 100% !important;
        padding: 18px !important;
    }
}

@media (max-width: 480px) {
    .wpforms-field-label {
        font-size: 14px !important;
    }
    
    .wpforms-field input[type="text"],
    .wpforms-field input[type="email"],
    .wpforms-field textarea {
        padding: 14px 16px !important;
        font-size: 14px !important;
    }
}

/* THEME PAGE Section ==============*/

.buynow-btn{
     background: linear-gradient(135deg, #E63C3F 0%, rgba(255, 4, 238, 0.8) 100%) !important;
    color: white !important;
    border: none !important;
      padding: 16px 12px;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 8px 20px rgba(230, 60, 63, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}
.buynow-btn a{
    color: #ffffff;
}
.buynow-btn::before{
       content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.5s !important;
}

.buynow-btn:hover::before {
    left: 100% !important;
}

.buynow-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(230, 60, 63, 0.4) !important;
}

.buynow-btn:active {
    transform: translateY(0) !important;
}

.btn-shop{
     background: linear-gradient(white, white) padding-box,
              linear-gradient(to right, #E63C3F, darkorchid) border-box;
  border-radius: 16px;
  border: 4px solid transparent;
  color: black!important;
  padding: 16px 12px;
  
}


.theme-content  {
  width: 100%;
  height: 100vh;
  background: linear-gradient(-45deg,  rgba(255, 4, 238, 0.3)  50%, rgba(255, 4, 238, 0.1) 100%);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
}

/* Animação */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.theme-media img{
    max-width: 80%;
}



/* Pricing ================== */ 

        .pricing-wrapper {
          justify-content: center;

        }

        .pricing-card {
            background: linear-gradient(white, white) padding-box,
                        linear-gradient(to right, #E63C3F, darkorchid) border-box;
            border-radius: 16px;
            border: 4px solid transparent;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .pricing-card.featured {
            transform: scale(1.05);
            background: linear-gradient(135deg,  rgba(255, 4, 238, 0.3) 0%, #764ba2 100%) padding-box,
                        linear-gradient(to right, #E63C3F, darkorchid) border-box;
            color: white;
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .plan-name {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(to right, #E63C3F, darkorchid);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .featured .plan-name {
            color: white;
            -webkit-text-fill-color: white;
        }

        .plan-subtitle {
            font-size: 1rem;
            opacity: 0.7;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .price {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            background: linear-gradient(to right, #E63C3F, darkorchid);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .featured .price {
            color: white;
            -webkit-text-fill-color: white;
        }

        .price-note {
            font-size: 0.9rem;
            opacity: 0.6;
            margin-bottom: 40px;
        }

        .features {
            list-style: none!important;
            margin-bottom: 40px;
        }

        .features li {
            padding: 12px 0;
            font-size: 1.1rem;
            position: relative;
            padding-left: 30px;
            list-style: none!important;
            text-align: left;

        }

        .features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #E63C3F;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .featured .features li::before {
            color: #fff;
        }

        .buy-btn {
            background: linear-gradient(to right, #E63C3F, darkorchid);
            color: white;
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .buy-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px rgba(230, 60, 63, 0.4);
        }

        .featured .buy-btn {
            background: white;
            color: #E63C3F;
            font-weight: 700;
        }

        .featured .buy-btn:hover {
            background: #f8f9fa;
            box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(to right, #E63C3F, darkorchid);
            color: white;
            padding: 8px 25px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .pricing-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-8px);
            }
        }