@font-face {
    font-family: 'hero'; /* Escolha um nome para referenciar sua fonte */
    src: url('../fontes/Hero\ New\ Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
* {
    font-family: 'hero', sans-serif; 
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?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&display=swap');

   
body {
    margin: 0;


}
#regulationsModal{
    padding: 0 15px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    
}

/* Header e navegação */
.header {
    position: relative;
   background:  radial-gradient(circle, #9200ff 0%, #5b00b6 100%); 
    border-bottom: solid 3px #e6e4ef;

}

.top-header {
    display: flex;
    justify-content: right;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    background: var(--color-primary-4);
}

.logo {
    position: relative;
    width: 20%;
    height: auto;
    left: auto;
    padding: 5px;
}

/* Menu sanduíche */
.menu-toggle {
    position: absolute;
    left: 20px;
    font-size: 24px;
    color: #ffc40c;
    cursor: pointer;
    display: none;
    z-index: 100;
}

/* User profile section */
.user-profile {
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6100c8;
    font-size: 18px;
    overflow: hidden;
    margin-right: 8px;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sidebar menu */
.sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: white;
    z-index: 1000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.sidebar-header {
    background-color: #6100c8;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.sidebar-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.2s;
}

.sidebar-menu a:hover {
    background-color: #f9f9f9;
}

.sidebar-menu i {
    width: 20px;
    text-align: center;
    color: #6100c8;
}

/* Desktop header menu */
.desktop-menu {
    display: none;
    justify-content: center;
    margin: 0 auto;
}

.desktop-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    color: #ffc40c;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.desktop-menu a:hover {
    color: #6100c8;
}

.desktop-menu i {
    color: #6100c8;
}

/* Seção principal */
.hero-section {
    text-align: center;
    padding: 40px 20px;
    display: grid;
    width: 100%;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
}

.hero-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    border-radius: 10px;

}

.hero-title {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

span {
    color: #ffffff;

}

.hero-description {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto 50px;
}

.primary-button,
.secondary-button {
    padding: 15px 25px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.primary-button {
    background: radial-gradient(circle, #9200ff 0%, #5b00b6 100%);
    color: white;
}

.primary-button:hover {
    background:  linear-gradient(to bottom, #9200ff, #5b00b6); 
    transform: translateY(-2px);
}

.secondary-button {
    background-color: white;
    color: #5b00b6;
    border: 2px solid #5b00b6;
}

.secondary-button:hover {
    background-color: #f8f0f7;
    transform: translateY(-2px);
}

/* How it works section */
.how-it-works {
    padding: 50px 20px;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.section-title {
    text-align: center;
    color: #333;
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 600;
}

.steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {

    border-radius: 10px;
    padding: 30px;
    width: 300px;
    text-align: center;

    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 70px;
    height: 70px;
    background:linear-gradient(to bottom, #9200ff, #5b00b6); 
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #5b00b6;
    margin-bottom: 15px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.5;
}

/* Terms section */
.terms-section {

    background-color: white;
    border-radius: 10px;
    margin-bottom: 50px;
    border-top: solid 4px #e6e4ef;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.terms-content h3 {
    color: #5b00b6;
    margin: 25px 0 15px;
    font-size: 22px;
}

.terms-content h4 {
    color: #333;
    margin: 20px 0 10px;
    font-size: 18px;
}

.terms-content p {
    margin-bottom: 15px;
    color: #555;
}

.terms-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-content li {
    margin-bottom: 8px;
    color: #555;
}

.terms-content hr {
    margin: 30px 0;
    border: none;
    border-top: 1px solid #eee;
}

/* Line separator */
.line {
    height: 1px;
    background-color: #e0e0e0;

}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 50px auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    animation: modalFadeIn 0.3s ease-out;
}

.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.close-button:hover {
    color: #333;
}

.modal h2 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #666;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
    text-align: center;
}

#bnt-2 {
    padding: 12px 24px;
    background-color: #6100c8;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    margin-bottom: 24px;
    width: 100%;
}

#bnt-2:hover {
    background-color: #7a2073;
}




/* Animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .desktop-menu {
        display: none;
    }

    .user-profile span {
        display: none;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 16px;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-card {
        width: 100%;
        max-width: 350px;
    }

    .modal-content {
        width: 90%;
        margin: 30px auto;
        padding: 20px;
    }
    .hero-section {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    width: 100%;
    align-items: center;
  flex-direction: column;
}
.user-profile {
  display: none;
}


  

    .marca {
        width: 15%;
    }
}

@media (min-width: 769px) {
    .top-header {
     
        padding: 0px 1px;
        height: 50px;
        position: revert;
        justify-content: right;
    }

    .logo {
        position: relative;
        left: 0;
        width: 5%;
    }

    .desktop-menu {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .user-profile span {
        display: block;
    }
}

.site-footer {

    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 3px solid #e6e4ef;
    width: 100%;
    max-width: 100%;
background: radial-gradient(circle, #9200ff 0%, #5b00b6 100%); 
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 100%;
    width: 100px;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
  width: 100%;
  justify-content: start;

}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {

   color: #ffc40c;
    font-size: 30px;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #ffe500;
}

.footer-right {
    flex: 1;
    padding-left: 40px;
}

.footer-right h3 {
    color: #ffc40c;
    margin-bottom: 20px;
    font-size: 18px;
}

.store-locations {
    display: flex;

    gap: 20px;
}

.store {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.store i {
    color: #480394;
    font-size: 18px;
    margin-top: 3px;
}

.store h4 {
    margin: 0 0 5px;
    color: #ffc40c;
    font-size: 16px;
}

.store p {
    margin: 0;
    color: white;
    font-size: 14px;
}

.footer-copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color:#ffc40c;
    font-size: 14px;
}
/* Responsividade para dispositivos móveis */
@media (max-width: 767px) {
    .indique-steps {
        flex-direction: column;
    }

    .indique-step {
        margin-bottom: 30px;
    }

    .indique-step:not(:last-child)::after {
        display: none;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .box-two img {
        width: 100%;
        height: 100%;

    }


    .footer-right {
        padding-left: 0;
    }

    .footer-logo {
        margin: 0 auto 20px;
        height: 100%;
    }

    .footer-contact {
        align-items: center;
    }

    .store-locations {
        align-items: center;
    }
    .footer-contact {
        display: flex;
      width: 100%;
      justify-content: center;
    
    }}