@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;600;700;800;900&display=swap');
 @font-face {
     font-family: 'Axiforma';
     src: url('../assets/fonts/Axiforma-Book.woff2') format('woff2'), url('../assets/fonts/Axiforma-Book.woff') format('woff');
     font-weight: 400;
     font-style: normal;
}
 @font-face {
     font-family: 'Axiforma';
     src: url('../assets/fonts/Axiforma-Book.woff2') format('woff2'), url('../assets/fonts/Axiforma-Book.woff') format('woff');
     font-weight: 500;
     font-style: normal;
}
 @font-face {
     font-family: 'Axiforma';
     src: url('../assets/fonts/Axiforma-Bold.woff2') format('woff2'), url('../assets/fonts/Axiforma-Bold.woff') format('woff');
     font-weight: 700;
     font-style: normal;
}
 @font-face {
     font-family: 'Axiforma';
     src: url('../assets/fonts/Axiforma-BookItalic.woff2') format('woff2'), url('../assets/fonts/Axiforma-BookItalic.woff') format('woff');
     font-weight: 400;
     font-style: italic;
}
 @font-face {
     font-family: 'Axiforma';
     src: url('../assets/fonts/Axiforma-Black.woff2') format('woff2'), url('../assets/fonts/Axiforma-Black.woff') format('woff');
     font-weight: 900;
     font-style: normal;
}
 @font-face {
     font-family: 'Axiforma';
     src: url('../assets/fonts/Axiforma-Light.woff2') format('woff2'), url('../assets/fonts/Axiforma-Light.woff') format('woff');
     font-weight: 200;
     font-style: normal;
}
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 body {
     font-family: 'Axiforma', Arial, sans-serif;
     font-weight: 400;
     line-height: 1.5;
     color: #333;
}
 h1{
     font-size: 80px;
     font-family: 'Axiforma', Arial, sans-serif;
     font-weight: 900;
}
 h3 {
     font-weight: 300;
     text-align: left;
}
 .logo img {
     height: 20px;
     margin-right: 10px;
     margin-top: 10px;
}
 .text-green {
     color: #84c341;
     font-weight: 400;
}
 .text-bold {
     color: #000;
     font-weight: 700;
}
 .header {
     justify-content: center;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     background-color: rgb(239, 239, 239);
     z-index: 1000;
     display: flex;
     align-items: center;
     padding: 10px 20px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
 .menu-toggle {
     display: none;
}
 .menu {
     position: fixed;
     top: 58px;
     left: 0;
     width: 100%;
     background-color: #333;
     z-index: 999;
     padding: 12px 0;
     display: flex;
     justify-content: center;
     border: none;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
 .menu ul {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     gap: 15px;
}
 .menu ul li {
     margin: 0 15px;
}
 .menu ul li a {
     text-decoration: none;
     color: #fff;
     font-size: 16px;
     font-weight: 300;
     transition: color 0.3s ease;
}
 .menu ul li a:hover {
     color: #84c341;
}
 body {
     padding-top: 100px;
}
 .reuniao-section {
     display: flex;
     justify-content: space-around;
     align-items: center;
     padding: 0px 20px;
     background: url('../assets/img/bgpng.png') no-repeat center center;
     background-size: cover;
     color: #fff;
     min-height: 400px;
}
 .content-left {
     width: 540px;
     line-height: 100px;
}
 .content-left h1 {
     font-size: 70px;
     font-weight: 700;
     margin-top: -20px;
}
 .content-left h3 {
     font-weight: 600;
     text-align: left;
     font-size: 16px;
     font-family: 'Montserrat', sans-serif;
     max-width: 280px;
}
 .content-left p {
     font-size: 30px;
     margin: 12px 0;
     font-weight: 200;
     line-height: 1.21875;
}
 .play-button button {
     display: flex;
     align-items: center;
     gap: 10px;
     background-color: transparent;
     color: #ffff;
     font-weight: 200;
     border: none;
     border-radius: 50px;
     padding: 5px ;
     cursor: pointer;
     font-size: 16px;
}
 .content-right {
     width: 514px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
}
 .content-right h2 {
     font-size: 24px;
     margin-bottom: 30px;
}
 .content-right h3 {
     font-size: 12px;
     margin-bottom: 20px;
     color: #fff;
}
 form {
     display: flex;
     flex-direction: column;
}
 form label {
     margin: 10px 0 5px;
     font-size: 14px;
}
 form input, form select {
     padding: 10px;
     border: none;
     border-radius: 4px;
     margin-bottom: 15px;
     font-size: 16px;
}
 form button.btn-criar-sala {
     background-color: #75a62f;
     color: #fff;
     border: 1px solid #fff;
     font-family: 'Axiforma', Arial, sans-serif;
     border-radius: 50px;
     padding: 8px;
     height: 57px;
     margin-top: 30px;
     font-size: 16px;
     font-weight: bold;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     cursor: pointer;
}
 form button.btn-criar-sala:hover {
     background-color: #fff;
     color: #000;
     border: 2px solid #fff;
}
 .input-container::placeholder{
     color: #fff;
}
 .input-container {
     display: flex;
     margin-bottom: 30px;
}
 input::placeholder {
     color: #fff;
}
 input, select {
     background-color: transparent;
     border: none;
     border-bottom: 2px solid #ffffff;
     color: #fff;
     font-family: 'Axiforma', Arial, sans-serif;
     font-size: 16px;
     padding: 5px 0;
     width: 100%;
     transition: border-color 0.3s ease;
     border-radius: 0px;
}
 input:not(:focus), select:not(:focus) {
     border-bottom: 1px solid #ffffff;
     border-radius: 0px;
}
 input:focus, select:focus {
     border-bottom: 1px solid #ffffff;
     outline: none;
     border-radius: 0px;
}
 form button.btn-criar-sala:hover img {
     content: url('../assets/img/icone_camera_preto.png');
}
 .resources-section {
     display: flex;
     justify-content: center;
     flex-direction: column;
     align-items: center;
     padding: 40px 20px;
     background-color: #fff;
     border-radius: 8px;
     gap: 70px;
}
 .resource {
     display: flex;
     align-items: start;
     justify-content: center;
     gap: 80px;
     max-width: 1200px;
     width: 100%;
     padding: 40px;
}
 .resource .text p {
     flex: 1;
     text-align: right;
     width: 471px;
     font-weight: 500;
     color: #000;
}
 .resource h3 {
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 15px;
     color: #333;
     text-align: right;
}
 .resource p {
     font-size: 16px;
     line-height: 1.5;
     color: #666;
}
 .resource .imagem {
     display: flex;
     width: 546px;
     justify-content: center;
     align-items: center;
}
 .resource .imagem img {
     width: 546px;
     height: auto;
     border-radius: 20px;
}
 .resources-section-gray {
     display: flex;
     justify-content: center;
     flex-direction: column;
     align-items: center;
     padding: 40px 20px;
     background-color: #f9f9f9;
     border-radius: 8px;
     gap: 70px;
}
 .resource-gray {
     display: flex;
     align-items: start;
     justify-content: center;
     gap: 80px;
     max-width: 1200px;
     width: 100%;
     padding: 40px;
}
 .resource-gray .text p {
     flex: 1;
     text-align: left;
     width: 471px;
     font-weight: 500;
     color: #000;
}
 .resource-gray h3 {
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 15px;
     color: #333;
     text-align: left;
}
 .resource-gray p {
     font-size: 16px;
     line-height: 1.5;
     color: #666;
}
 .resource-gray .imagem {
     display: flex;
     width: 546px;
     justify-content: center;
     align-items: center;
}
 .resource-gray .imagem img {
     width: 546px;
     height: auto;
     border-radius: 20px;
}
 .green-divider {
     height: 8px;
     border-radius: 24px;
     background-color: rgb(149, 193, 31);
     width: 270px;
     display: flex;
}
 .divider {
     display: flex;
     flex-direction: column;
     gap: 16px;
     align-items: center;
}
 .functionalities {
     text-align: center;
     padding: 50px 20px;
     background-color: #fff;
     display: flex;
     flex-direction: column;
     gap: 50px;
     justify-content: space-around;
     align-items: center;
}
 .functionalities h2 {
     font-size: 36px;
     font-weight: 700;
     color: #000;
}
 .features {
     display: flex;
     gap: 40px;
     justify-content: space-around;
     width: 100%;
}
 .feature-item {
     padding: 20px;
     width: 340px;
     text-align: left;
}
 .feature-item .icon {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background-color: #94C01F;
     margin: 0 0 8px;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .feature-item img {
     max-width: 40px;
     height: auto;
}
 .feature-item h3 {
     font-size: 1.25rem;
     color: #333;
     font-weight: 600;
     width: 100%;
     font-size: 18px;
     margin-bottom: 10px;
}
 .feature-item p {
     font-size: 0.9rem;
     font-weight: 600;
     color: #000 ;
     line-height: 1.5;
}
 .section-green-divider {
     background-color: #94C01F;
     height: 150px;
     width: 100%;
}
 .section-grey-divider {
     background-color: #EEEEEE;
     height: 384px;
     margin-top: 60px;
}
 .faq-section {
     padding: 60px 20px;
     background-color: #fff;
     flex-direction: column;
     gap: 50px;
     display: flex;
}
 .header {
     text-align: center;
}
 .header-line {
     width: 70px;
     height: 8px;
     background-color: #95C11F;
     border-radius: 24px;
     margin: 0 auto 10px;
}
 .header h2 {
     font-family: 'Axiforma', sans-serif;
     font-weight: bold;
     font-size: 36px;
     color: #212529;
     line-height: 1.6;
}
 .faq-section h2 {
     font-size: 36px;
     font-weight: 700;
     color: #000;
}
 .accordion {
     padding: 0 80px 0 80px;
     gap: 20px;
     display: flex;
     flex-direction: column;
}
 .accordion-item {
     border-bottom: 2px solid #B3B9C0;
}
 .accordion-item.open {
     border-bottom: 2px solid #95C11F;
}
 .accordion-header {
     background: none;
     border: none;
     font-family: 'Axiforma', sans-serif;
     font-weight: bold;
     font-size: 18px;
     color: #212529;
     width: 100%;
     text-align: left;
     padding: 40px 0;
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
}
 .accordion-header .icon {
     font-size: 16px;
     transition: transform 0.3s ease;
}
 .accordion-body {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
     padding-bottom: 2px;
}
 .accordion-body p {
     margin-bottom: 20px;
     max-width: 1000px;
     font-weight: 600;
}
 .accordion-item.open .icon {
     transform: rotate(180deg);
}
 .accordion-link {
     color: #95C11F;
}
 .footer {
     background-color: #333333;
     color: #f8f9fa;
     padding-top: 80px;
     padding-bottom: 20px;
     font-family: 'Arial', sans-serif;
}
 .footer-container {
     display: flex;
     justify-content: space-around;
     text-align: center;
     flex-wrap: wrap;
     gap: 20px;
}
 .footer-section {
     flex: 1;
     min-width: 150px;
     max-width: 150px;
     margin-bottom: 20px;
     text-align: start;
}
 .footer-section h3 {
     font-size: 16px;
     font-weight: 700;
     font-family: 'Montserrat', Arial, sans-serif;
     color: #fff;
}
 .footer-section p {
     margin: 10px 0;
     font-size: 16px;
     font-weight: 700;
     font-family: 'Montserrat', Arial, sans-serif;
}
 .footer-section .p2 {
     margin: 6px 0;
     font-size: 16px;
     font-weight: 400;
     font-family: 'Montserrat', Arial, sans-serif;
}
 .footer-bottom .p2 {
     margin: 6px 0;
     font-size: 16px;
     font-weight: 400;
     font-family: 'Montserrat', Arial, sans-serif;
}
 .footer-section a {
     color: #fff;
     text-decoration: none;
}
 .footer-section a:hover {
     text-decoration: underline;
}
 .footer-icon {
     margin-bottom: 24px;
     display: flex;
     gap: 14px;
     height: 24px;
     align-items: center;
}
 select#historico-salas {
     color: fff;
}
 select#historico-salas option {
     color: black;
}
 select#historico-salas option[value=""]:not(:checked) {
     color: gray;
}
 .footer-icon img {
     width: 24px;
     height: auto;
}
 .footer-bottom {
     text-align: center;
     margin-top: 20px;
}
 .footer-bottom hr {
     border: 0;
     border-top: 1px solid #95C11F;
     margin: 20px auto;
     width: 100%;
}
 .footer-bottom p {
     margin: 5px 0;
     font-size: 0.9rem;
}
 .footer-bottom strong {
     font-weight: bold;
     color: #f8f9fa;
}
 .mascote {
     position: absolute;
     top: 31px;
     left: 125px;
     z-index: 1001;
}
 .mascote img {
     height: 90px;
     width: auto;
}
 @media (max-width: 768px) {
     .footer-container {
         flex-direction: column;
    }
     body {
         padding-top: 0px;
    }
     .footer-section {
         max-width: 100%;
    }
}
 @media (max-width: 768px) {
     .menu ul {
         flex-direction: column;
         gap: 10px;
    }
     .menu ul li {
         margin: 5px 0;
    }
     .header {
         height: auto;
         padding: 10px;
    }
}
 @media (max-width: 768px) {
     h1 {
         font-size: 36px;
    }
     h3 {
         font-size: 16px;
         text-align: center;
    }
     .header {
         flex-wrap: wrap;
         padding: 10px;
    }
     .menu {
         flex-direction: column;
         gap: 10px;
         padding: 10px;
    }
     .menu ul {
         flex-direction: column;
         text-align: center;
    }
     .menu ul li {
         margin: 10px 0;
    }
     .reuniao-section {
         flex-direction: column;
         text-align: center;
         padding: 20px;
    }
     .content-left, .content-right {
         width: 100%;
    }
     .content-left {
         margin-top: 100px;
    }
     .content-left h1 {
         font-size: 46px;
    }
     .content-left p {
         font-size: 26px;
    }
     .content-right {
         margin-bottom: 40px;
    }
     .resource .text p, .resource-gray p {
         text-align: center;
         padding: 0 40px;
    }
     .resources-section, .resources-section-gray {
         padding: 60px;
    }
     .resource, .resource-gray {
         flex-direction: column;
         gap: 20px;
         align-items: center;
         padding: 0 40px;
         text-align: center;
    }
     .resource-gray .text p {
         flex: 1;
         text-align: center;
         width: 471px;
         font-weight: 500;
         color: #000;
    }
     .resource-gray h3 {
         padding: 0 40px;
         text-align: center;
    }
     .resource .text, .resource-gray .text {
         text-align: center;
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: center;
    }
     .resource .imagem, .resource-gray .imagem {
         order: -1;
         padding: 0 80px;
    }
     .resource .imagem img, .resource-gray .imagem img {
         width: 100%;
         height: auto;
    }
     .functionalities {
         padding: 60px;
    }
     .features {
         flex-direction: column;
         gap: 20px;
    }
     .footer-container {
         flex-direction: column;
         text-align: center;
         display: flex;
         align-items: center;
         width: 250px;
    }
     .footer-section {
         max-width: 100%;
         margin-bottom: 20px;
         align-items: center;
         display: flex;
         flex-direction: column;
    }
     .section-grey-divider {
         background-color: #EEEEEE;
         height: 150px;
         margin-top: 60px;
    }
     .play-button {
         align-items: center;
         display: flex;
         text-align: center;
         justify-content: center;
         padding: 18px 0 40px;
    }
     .feature-item {
         width: 100%;
         text-align: center;
         align-items: center;
         display: flex;
         flex-direction: column;
    }
     .accordion {
         padding: 0 20px 0 20px;
         gap: 20px;
         display: flex;
         flex-direction: column;
    }
     .footer {
         display: flex;
         flex-direction: column;
         align-items: center;
    }
     @media (max-width: 768px) {
         .menu-toggle {
             display: none;
             background-color: #EEEEEE;
             color: #333;
             border: none;
             padding: 2px 2px;
             font-size: 20px;
             cursor: pointer;
             position: absolute;
             right: 20px;
             top: 10px;
             z-index: 1000;
        }
         .header {
             flex-wrap: wrap;
             padding: 10px;
             position: fixed;
        }
         .menu {
             display: none;
        }
         .menu.open {
             display: flex;
             flex-direction: column;
             position: absolute;
             top: 60px;
             left: 0;
             margin-top: -2px;
             width: 100%;
             background-color: #333;
             z-index: 999;
             box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
         .menu ul {
             flex-direction: column;
             text-align: center;
             padding: 10px 0;
        }
    }
     .menu-toggle {
         display: block;
    }
}
 @media (max-width: 480px) {

    .resources-section, .resources-section-gray {
        width: 100%; 
        max-width: 100%;
        padding: 20px; 
        margin: 0; 
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        overflow: hidden; 
        box-sizing: border-box; 
    }
    
     h1 {
         font-size: 24px;
    }
     h3 {
         font-size: 14px;
    }
     .menu ul li a {
         font-size: 14px;
    }
     .content-left h1 {
         font-size: 48px;
    }
     .content-left p {
         font-size: 16px;
    }
     .functionalities h2 {
         font-size: 24px;
    }
     .features {
         gap: 10px;
         width: 320px;
    }
     .feature-item {
         width: 100%;
         text-align: center;
         align-items: center;
         display: flex;
         flex-direction: column;
    }
     .feature-item h3 {
         font-size: 16px;
    }
     .footer-section {
         text-align: center;
    }
     .footer-container {
         display: flex;
    }
     .faq-section h2 {
         text-align: center;
    }
     .resource-gray .text p {
         flex: 1;
         text-align: center;
         font-weight: 500;
         color: #000;
         margin-left: 20px;
         margin-right: 20px;
         width: 400px;
    }
     .resource .text p {
         flex: 1;
         text-align: center;
         font-weight: 500;
         color: #000;
         margin-left: 20px;
         margin-right: 20px;
         width: 400px;
    }
     .resource .imagem img, .resource-gray .imagem img {
         order: -1;
         padding: 0 80px;
         margin-left: 40px;
         margin-right: 40px;
         width: 500px;
    }
    .play-button button {
        display: flex;
        flex-direction: column;
   }
    .content-left h3 {
        align-items: center;
        text-align: center;
   }
   .conteudo {
    padding: 20px !important;
   }
   .fundo-termos {
    padding: 0px !important;
   }
}
 .button-container {
     text-align: center;
     margin-top: 20px;
}
 .create-room-btn {
     background-color: #333;
     color: #fff;
     border: none;
     font-family: 'Axiforma', sans-serif;
     padding: 10px;
     font-size: 16px;
     width: 150px;
     border-radius: 22px;
     cursor: pointer;
     transition: background-color 0.3s ease;
}
 .create-room-btn:hover {
     background-color: #fff;
     color: #333;
}
 .modal {
     display: none;
     position: fixed;
     z-index: 1000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.8);
     justify-content: center;
     align-items: center;
}
 .modal-content {
     position: relative;
     width: 90%;
     max-width: 800px;
     background: #75a62f;
     border-radius: 10px;
     padding: 20px;
     box-sizing: border-box;
}
 .video-container {
     width: 100%;
     padding: 0;
     overflow: hidden;
     border-radius: 10px;
     background: #000;
}
 .video-container video {
     width: 100%;
     height: auto;
     border-radius: 10px;
}
 .close {
     position: absolute;
     top: 10px;
     right: 20px;
     font-size: 28px;
     font-weight: bold;
     color: #aaa;
     cursor: pointer;
}
 .close:hover {
     color: #000;
}

.fundo-termos {
    position: relative;
    border-radius: 8px;
    text-align: left;
    padding: 60px;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    background-color: #EEEEEE;
    margin-left: 0;
    margin-right: 0;

}

.conteudo {
    position: relative;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    padding: 60px;
    width: 80%;
}


.titulo-termos {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
}

.img-termos {
    position: relative;
    height: 300px;
    width: 100%;
    background-image: url('/assets/img/termos/fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}