@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');


:root {
    --primary-color: #244c6f;
    --secondary-color: #3a7ca5;
    --accent-color: #f39c12;
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;
    --text-color: #333;
    --gray-light: #e9ecef;
    --gray-medium: #868e96;
    --success-color: #28a745;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Raleway', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
  }

  header {
    position: sticky;
    top: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }


  #progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary-color);
    z-index: 9999;
    transition: width 0.3s;
  }

#navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #244c6f; /* Cor azul escuro profissional */
    padding: 43px 2rem;
    height: 80px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

#nav_logo {
    height: 50px;
    transition: all 0.3s ease;
    filter: brightness(1.2);
}

.dark-mode #navbar {
    background-color: #151515;
}

.dark-mode .dropdown-menu {
    background-color: #222; /* Cor escura para modo escuro */
    color: #fff; /* Cor clara para texto no modo escuro */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dark-mode .dropdown-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Borda escura para modo escuro */
}

.dark-mode .dropdown-link {
    color: #fff; /* Texto branco para modo escuro */
}

.dark-mode .dropdown-link:hover {
    background-color: #333; /* Cor de hover escura para modo escuro */
}


/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        min-width: 100%;
        max-height: 0;
        padding: 0;
        overflow: hidden;
    }
    
    .dark-mode .dropdown-menu {
        background-color: rgba(0, 0, 0, 0.2);
    }
    
    .dropdown-menu {
        background-color: rgba(240, 240, 240, 0.95); /* Fundo claro para modo claro em mobile */
    }
    
    .nav-item.dropdown:hover .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
        width: 100%;
    }
}

#dark-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 25px;
    background: #f4b400;
    border-radius: 25px;
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

#dark_mode_icon {
    width: 18px;
    height: 18px;
    transition: .4s;
}

#nav_logo {
    width: 200px;
    max-height: 60px;
    object-fit: scale-down;
    margin: 4px;
    object-fit: cover;
    height: 50px; /* Ajuste conforme necessário */
    transition: opacity 0.3s ease-in-out;
}

#nav_list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}


.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0e9dff;
    transition: width 0.3s ease;
}


a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }

  .hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url('src/images/reforma-hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  margin-top: 80px;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  
  .hero-content {
    position: relative;
    max-width: 800px;
    z-index: 2;
  }
  
  .hero .subtitle {
    display: block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--accent-color);
  }

  .hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

.nav-item a {
    position: relative;
    color: #ffffff; /* Cor inicial do texto */
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.nav-item a:hover {
    color: #007bff; /* Cor ao passar o mouse */
    transform: scale(1.1); /* Faz o texto crescer um pouco */
}





.nav-item a:hover::after {
    width: 100%;
    left: 0;
}

.nav-item a:hover {
    color: #007bff;
}

.dark-mode .nav-item a {
    color: white;
}

.dark-mode .nav-item a:hover {
    color: #007bff; /* Cor ao passar o mouse */
    transform: scale(1.1); /* Faz o texto crescer um pouco */
}


/* Estilo padrão (modo claro) */
.nav-item.active a {
    color: #244c6f; /* Cor no modo claro */
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3sease-in-out;
    border-bottom: 3px solid var(--color-primary-4);
}

/* Estilo para o Dark Mode */
.dark-mode .nav-item.active a {
    color: #ffffff; /* Cor no modo escuro */
    border-bottom: 3px solid var(--color-primary-4);
}

.nav-item.active a:hover {
    color: #007bff;
}



#mobile_menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #151515;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease-in-out;
}

#mobile_menu.active {
    right: 0;
}

@media screen and (max-width: 1170px) {
    #nav_list,
    #navbar .btn-default {
        display: none;
    }

    .btn-default {
        padding: 12px 25px;
        background-color: #007bff;
        border: none;
        border-radius: 8px;
        color: white;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    }
    

    .btn-default:hover {
        background-color: #0056b3;
        transform: scale(1.08);
    }
    


    #mobile_menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #mobile_nav_list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 12px 0px;
    }

    #mobile_nav_list .nav-item {
        list-style: none;
        text-align: center;
    } 
}

#benefits {
    background-color: #1a1a1a;
    padding: 80px 0;
    position: relative;
}

#benefits .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }


.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    margin-right: 15px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #4a9fd8;
    margin-bottom: 15px;
    letter-spacing: 1px;
}



body.dark-mode .section-title {
    font-family: 'Poppins';
    color: #4a9fd8;
    font-weight: 500;
}

body.dark-mode .section-title::after {
    background-color: #4a9fd8;
}

body.dark-mode .section-subtitle {
    color: #ecf0f1;
    font-size: 18px;
    font-family: 'Poppins';
    font-weight: 500;
}


.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #0066a4;
    margin: 15px auto;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
}

.highlight {
    color: #4caf50;
    font-weight: 700;
}

.section-description .highlight {
    font-weight: bold;
    color: #34fc02;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background-color: rgb(255 255 255 / 95%); 
    border: 1px solid rgba(66, 153, 225, 0.6);    
    box-shadow: 0 0 15px rgba(66, 153, 225, 0.35);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;        
    color: #e6e6e6;
}

.dark-mode .benefit-card{
    background-color: rgb(18 24 37);
}

.benefit-card:hover {
   
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.55); /* Sombra mais intensa no hover */
    transform: translateY(-2px); /* Leve elevação ao passar o mouse */
}

.benefit-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(74, 159, 216, 0.1);
    border-radius: 50%;
    padding: 15px;
}

ul {
    list-style: none;
  }

img {
    max-width: 100%;
    height: auto;
    display: block;
  }

.benefit-icon-container img {
    width: 100%;
    height: auto;
    filter: none;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon-container img {
    transform: scale(1.1);
}

.benefit-title {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Poppins';
    color: #4a9fd8;
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Poppins';
    color: #cccccc;
}

.dark-mode .benefit-description{
    color: rgb(255, 255, 255);
    font-family: 'Poppins';
}

.contact-cta {
    text-align: center;
    margin-top: 20px;
}

.benefit {
    max-width: 250px;
    text-align: center;
}

.benefit img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.benefit p {
    font-size: 1rem;
    color: white;
}

.btn-contact {
    display: inline-block;
    background: linear-gradient(135deg, #0066a4, #4a9fd8);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 102, 164, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta {
    background-color: #0066a4;
    color: white;
    font-size: 16px;
    padding: 15px 30px;
    box-shadow: var(--shadow);
  }

  .btn-cta:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  
.btn-cta img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    filter: brightness(0) invert(1);
  }

.btn-primary, .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
  }

  .btn-primary {
    background-color: var(--primary-color);
    color: white;
  }


  .btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
  }

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 164, 0.4);
}

.btn-contact::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transition: all 0.6s ease;
}

.btn-contact:hover::after {
    left: 100%;
}


/* Ajustes para modo claro */
body:not(.dark-mode) #benefits {
    background-color: #f5f5f5;
}

body:not(.dark-mode) .section-title {
    color: #0066a4;
    font-family: 'Poppins';
    font-weight: 500;
}

body:not(.dark-mode) .section-description {
    color: #333;
}

body:when(.dark-mode) .section-description{
    color: white;
}

body:not(.dark-mode) .benefit-card {
    background-color: white;
    border: 1px solid #e0e0e0;
}

body:not(.dark-mode) .benefit-icon-container img {
    filter: none;
}

body:not(.dark-mode) .benefit-description {
    color: #000000;
    font-family: 'Poppins';
}

/* Responsividade */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .benefit-card {
        padding: 25px 15px;
    }
    
    .benefit-title {
        font-size: 18px;
    }
}


.banner {
    position: relative;
    background: url("../images/banner.jpg") no-repeat center center/cover;
    height: 400px; /* Aumentei a altura para dar mais destaque */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Para garantir que efeitos não ultrapassem o container */
}


.banner .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85); /* Overlay mais transparente */
    transition: all 0.5s ease-in-out;
}


/* DARK MODE */
.banner.dark-mode {
    background: #111 !important; /* Fundo escuro */
}

.banner.dark-mode .overlay {
    background: rgb(30 30 30); /* Overlay mais escuro no dark mode */
}

.banner.dark-mode .content h2 {
    color: #fff !important;
}

.banner.dark-mode .btn {
    background: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.banner.dark-mode .btn:hover {
    background: white;
    color: #007bff;
}


.banner .content {
    position: relative;
    z-index: 2;
    color: #1a355e; /* Azul escuro para texto */
    max-width: 800px;
    padding: 0 20px;
    transform: translateY(0);
    transition: transform 0.5s ease-out;
}

.banner:hover .content {
    transform: translateY(-10px); /* Efeito sutil ao passar o mouse */
}




.banner h2 {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: 'Poppins';
    color: #0066a4;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.dark-mode .banner h2{
    color: #4a9fd8;
}

.banner h2::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background: #0066a4;
    bottom: -10px;
    left: 20%;
    transition: width 0.4s ease;
}

.banner:hover h2::after {
    width: 80%;
    left: 10%;
}

.banner-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    font-family: 'Poppins';
    opacity: 0.9;
    font-weight: 500;
}

.banner .btn {
    background: #0066a4;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    border: 2px solid #0066a4;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner .btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.banner .btn:hover {
    background: transparent;
    color: #0066a4;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.banner .btn:hover i {
    transform: translateX(4px);
}

/* DARK MODE */
body.dark-mode .banner .overlay {
    background-color: #151515;
}

body.dark-mode .banner .content {
    color: #ffffff;
}

body.dark-mode .banner h2::after {
    background: #4a9fd8;
    width: -webkit-fill-available;
    left: 1px;
}

body.dark-mode .banner .btn {
    background: #4a9fd8;
    border-color: #4a9fd8;
    color: #fff;
}

body.dark-mode .banner .btn:hover {
    background: transparent;
    color: #4a9fd8;
}

/* Responsividade */
@media (max-width: 768px) {
    .banner {
        height: 350px;
    }
    
    .banner h2 {
        font-size: 32px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: 2px solid #244c6f;
    color: #244c6f;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #244c6f;
    color: white;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}


.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-item.dropdown {
    position: relative;
}


.dropdown-toggle:hover {
    color: #f39c12;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background-color: #f5f5f5;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.dropdown-item {
    list-style: none;
}

.dropdown-item:last-child {
    border-bottom: none;
}


.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dark-mode .dropdown-menu {
    background-color: #222;
}


.dropdown-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    transition: all 0.3s ease;
}


.dropdown-link:hover {
    background-color: #1e3a5f;
    color: #0e9dff;
}
  
  .dropdown-menu > li:not(:last-child) {
    border-bottom: 1px solid #555; /* Linha separando os itens */
  }

.dropdown-menu li {
    padding: 5px 0;
}

.dropdown-menu a {
    text-decoration: none;
    color: rgb(51 51 51);
    display: block;
    padding: 8px;
}

.dropdown-menu a:hover {
    background-color: #f4f4f4;
    border-radius: 5px;
}

/* Mostra o dropdown ao passar o mouse */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-hamburger {
    position: relative;
    display: inline-block;
}

#hamburger_btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.dropdown-hamburger-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    list-style: none;
    border-radius: 5px;
    min-width: 150px;
}

.dropdown-hamburger-menu li {
    padding: 5px 0;
}

.dropdown-hamburger-menu a {
    text-decoration: none;
    color: black;
    display: block;
    padding: 8px;
}

.dropdown-hamburger-menu a:hover {
    background-color: #f4f4f4;
    border-radius: 5px;
}

/* Exibir o menu hamburguer quando ativo */
.dropdown-hamburger-menu.active {
    display: block;
}

@media screen and (max-width: 768px) {
    #nav_list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: white;
        width: 100%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .dark-mode #nav_list {
        background-color: #111;
    }

    #hamburger_btn {
        display: block;
    }

    #nav_list.show {
        display: flex;
    }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.botao-contato {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(94deg, #128C7E, #25D366, #128C7E);
    background-size: 200% 200%;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    animation: gradientMove 3s infinite linear;
}

.botao-contato:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.botao-contato i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Botão Mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:focus {
    outline: none;
}

/* Responsividade */
@media (max-width: 1100px) {
    #navbar {
        padding: 0 1.5rem;
    }
    
    .nav-menu-container {
        margin: 0 15px;
    }
    
    #nav_list {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .nav-menu-container {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #0c1623;
        transition: all 0.3s ease;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        z-index: 999;
    }
    
    .nav-menu-container.active {
        left: 0;
    }
    
    #nav_list {
        flex-direction: column;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        background-color: #162b43;
        padding: 0;
        margin-top: 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .botao-contato {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    #navbar {
        padding: 0 1rem;
        height: 70px;
    }
    
    .nav-menu-container {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    #nav_logo {
        height: 40px;
    }
    
    .switch {
        width: 40px;
        height: 22px;
    }
    
    .slider:before {
        height: 16px;
        width: 16px;
    }
    
    input:checked + .slider:before {
        transform: translateX(18px);
    }
    
    .botao-contato {
        font-size: 0;
        padding: 10px;
    }
    
    .botao-contato i {
        margin-right: 0;
        font-size: 1.2rem;
    }
}


.navbar-logo {
    height: 50px; /* Aumenta a altura da logo */
    max-width: 200px; /* Evita que fique muito larga */
    filter: brightness(1.5); /* Aumenta o brilho para melhorar o contraste */
    margin-right: 20px; /* Adiciona espaço para não ficar colada nas laterais */
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #000; /* Ajuste conforme necessário */
    padding: 10px 20px;
    height: 80px;
}

/* Ajuste para responsividade */
@media (max-width: 768px) {
    .navbar {
        padding: 5px 10px;
    }
    .navbar-logo {
        height: 60px; /* Reduzindo a altura para telas menores */
    }
}




/* Adicionar elementos decorativos consistentes */
.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #244c6f;
    margin: 15px auto 30px;
}

/* Harmonizar as cores entre as seções */
#benefits {
    background-color: #7a6c6c;
    position: relative;
    padding-bottom: 70px;
}

#menu {
    background-color: #f5f5f5;
    position: relative;
    padding-top: 60px;
    margin-top: -1px; /* Remove any gap */
}

/* Adicionar um elemento visual de conexão */
.connector-dots {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 15px;  /* Posicionado mais abaixo */
    left: 0;
    right: 0;
    z-index: 3;  /* Acima do divider */
}

.connector-dot {
    width: 12px;
    height: 12px;
    background-color: #244c6f;
    border-radius: 50%;
    margin: 0 8px;  /* Espaçamento maior entre os pontos */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);  /* Sombra para dar profundidade */
    transition: all 0.3s ease;  /* Efeito de transição suave */
}

.connector-dot:hover {
    transform: scale(1.2);
    background-color: #34fc02;  /* Mesma cor do highlight */
}



#benefits::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0066a4, #4a9fd8);
}

/* Ajuste na seção de menu para acomodar a transição */
#menu {
    padding: 80px 0;
    background-color: #f9f9f9;
}


#dishes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    background-color: #f9f9f9;
    margin: 0 auto;
    padding: 0 20px;
}

.dish {
    background-color: rgb(255 255 255 / 95%); 
    border: 1px solid rgba(66, 153, 225, 0.6); 
    box-shadow: 0 0 15px rgba(66, 153, 225, 0.35);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;        
    color: #e6e6e6;
  }

  .dark-mode .dish{
    background-color: rgba(18, 24, 38, 0.95);
  }
  
  .dish:hover {
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.55); /* Sombra mais intensa no hover */
    transform: translateY(-2px); /* Leve elevação ao passar o mouse */
  }
  
  /* Você pode precisar ajustar os botões também */
  .dish .saiba-mais {
    border: 1px solid rgba(66, 153, 225, 0.7);
    color: #4299e1; /* Azul mais claro para os botões */
    background-color: transparent;
    transition: all 0.3s ease;
  }
  
  .dish .saiba-mais:hover {
    background-color: rgba(66, 153, 225, 0.15);
  }

.dish-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    object-fit: contain;
}


.dish-title {
    color: #247cd8;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Poppins';
}

.dish-description {
    color: #000000;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    display: block;
    font-family: 'Poppins';
    font-weight: 500;;
    margin-bottom: 25px;
}

.dark-mode .dish-description{
    color: white;
    font-family: 'Poppins';
    font-weight: 500;;
}

.dish-button {
    display: inline-block;
    background-color: transparent;
    color: #244c6f;
    padding: 10px 25px;
    border: 2px solid #244c6f;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
}
.dish-button:hover {
    background-color: #244c6f;
    color: white;
}


@media (max-width: 768px) {
    #dishes {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
}

body.dark-mode .dish-icon {
    filter: invert(0); 
  }

  body.dark-mode .dish-button {
    background-color: #244c6f;
    color: #fff;
    border: 1px solid #555;
  }

  body.dark-mode #dishes {
    background-color: #151515; 
  }


  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1e3a5f;
    transition: .4s;
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: left;
}

.slider:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
}

input:checked + .slider {
    background-color: #1E3A5F;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

.logo-container {
    display: flex;
    align-items: center;
}

.nav-menu-container {
    display: flex;
    align-items: center;
    margin: 0 auto;
}

/* Main Info Section */
.main-info-section {
    padding: 100px 0;
    background-color: white;
  }
  
  .info-content {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .info-text {
    flex: 1;
  }
  
  .info-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .info-text p {
    color: #000000;
    font-family: 'Poppins';
    font-weight: 500;
  }
  
  .info-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }


  .benefits-section {
    padding: 80px 0;
    background-color: var(--light-color);
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .benefit-item {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
  }
  
  .benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-icon {
    margin-bottom: 20px;
  }
  
  .benefit-icon img {
    width: 60px;
    height: 60px;
  }
  
  .benefit-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .benefit-content p {
    font-size: 16px;
    color: var(--text-color);
  }


  .diferenciais-section {
    padding: 100px 0;
    background-color: white;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-header h2 {
    font-size: 36px;
    font-family: 'Poppins';
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

  
  .section-subtitle {
    font-size: 18px;
    color: #000000;
    font-family: 'Poppins';
    font-weight: 500;
  }
  
  .diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .diferencial-item {
    background-color: rgb(255 255 255 / 95%); 
    border: 1px solid rgba(66, 153, 225, 0.6); 
    box-shadow: 0 0 15px rgba(66, 153, 225, 0.35);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;        
    color: #e6e6e6;
  }
  
  .diferencial-item:hover {
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.55); /* Sombra mais intensa no hover */
    transform: translateY(-2px); /* Leve elevação ao passar o mouse */
  }
  
  .diferencial-icon {
    margin-bottom: 20px;
  }
  
  .diferencial-icon img {
    width: 70px;
    height: 70px;
    margin: 0 auto;
  }
  
  .diferencial-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
  }
  
  .diferencial-item p {
    font-size: 16px;
    color: black;
    font-family: 'Poppins';
    font-weight: 400;
  }

  .dark-mode .diferencial-item p {
    color: #e3dbdb;
  }



 .whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

  .subscribe-form {
    display: flex;
    margin-bottom: 20px;
  }

  
.subscribe-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 14px;
  }
  

  .btn-submit {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
  }

  .btn-submit:hover {
    background-color: #e67e22;
  }

  .social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }

  .social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
  }
  
  .social-media a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
  }

  /* Responsividade */
@media screen and (max-width: 1024px) {
    .container {
      padding: 0 30px;
    }
    
    .benefits-grid,
    .diferenciais-grid {
      grid-template-columns: repeat(2, 1fr);
    }
}

/* Estilos gerais para Dark Mode */
body.dark-mode {
    background-color: var(--bg-color);
    color: var(--text-color);
  }
  
  /* Cabeçalho em Dark Mode */
  body.dark-mode header {
    background-color: var(--bg-secondary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  body.dark-mode .nav-link {
    color: var(--text-color);
  }
  
  body.dark-mode .mobile-menu-btn {
    color: var(--text-color);
  }
  
  /* Dropdown em Dark Mode */
  body.dark-mode .dropdown-menu {
    background-color: var(--bg-secondary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  }
  
  body.dark-mode .dropdown-link {
    color: var(--text-color);
  }
  
  body.dark-mode .dropdown-link:hover {
    background-color: rgba(255, 152, 0, 0.1);
  }
  
  /* Main Info Section em Dark Mode */
  body.dark-mode .main-info-section {
    background-color: var(--bg-color);
  }
  
  body.dark-mode .info-text h2 {
    color: #244c6f;
    text-align: center;
    font-family: 'Poppins';
    font-size: 30px;
    font-weight: bold;
  }
  
  body.dark-mode .info-text p {
    color: #151515;
    font-family: 'Poppins';
    font-weight: 500;
}
  
  
  /* Benefits Section em Dark Mode */
  body.dark-mode .benefits-section {
    background-color: var(--bg-secondary);
  }
  
  body.dark-mode .benefit-item {
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #000000;  
}
  
  
  
  body.dark-mode .benefit-content h3 {
    color: #244c6f;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  /* Diferenciais Section em Dark Mode */
  body.dark-mode .diferenciais-section {
    background-color: var(--bg-color);
  }
  
  body.dark-mode .section-header h2 {
    color: #244c6f;;
  }
  
  body.dark-mode .diferencial-item {
    background-color: rgba(18, 24, 38, 0.95);
    border: 1px solid rgba(66, 153, 225, 0.6); 
    box-shadow: 0 0 15px rgba(66, 153, 225, 0.35);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;        
    color: #e6e6e6;
  }
  
  body.dark-mode .diferencial-icon {
    background-color: rgb(255 255 255 / 20%);
  }
  
  body.dark-mode .diferencial-item h3 {
    color: #247cd8;
  }
  
  /* Footer em Dark Mode - Já está escuro por padrão, mas ajustamos alguns detalhes */
  body.dark-mode .footer {
    background-color: #000;
  }
  
  body.dark-mode .footer-top {
    background-color: rgba(255, 255, 255, 0.05);
  }
  
  body.dark-mode .footer-copyright {
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  /* Botões e elementos interativos em Dark Mode */
  body.dark-mode .btn-cta{
    background-color: #0066a4;
  }

  body.dark-mode .botao-contato,
  body.dark-mode .subscribe-box button {
    box-shadow: 0 4px 10px rgb(0 126 255 / 30%);
  }
  
  body.dark-mode .btn-cta:hover,
  body.dark-mode .botao-contato:hover,
  body.dark-mode .subscribe-box button:hover {
    box-shadow: 0 4px 10px rgb(0 126 255 / 30%);
  }
  
  body.dark-mode .subscribe-box input {
    background-color: var(--bg-secondary);
    color: var(--text-color);
    border: 1px solid var(--border-color);
  }
  
  /* Efeitos hover específicos para Dark Mode */
  body.dark-mode .benefit-item:hover,
  body.dark-mode .diferencial-item:hover {
    box-shadow: 0 0 20px rgba(66, 153, 225, 0.55); /* Sombra mais intensa no hover */
    transform: translateY(-2px); /* Leve elevação ao passar o mouse */
  }
  
  /* Ajustes para imagens em Dark Mode */
  body.dark-mode .info-image img {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
  }

  body.dark-mode {
    --primary-color: #ff9800;
    --secondary-color: #1e272e;
    --accent-color: #ff7f00;
    --light-color: #2c3e50;
    --dark-color: #ecf0f1;
    --text-color: #ecf0f1;
    --text-light: #bdc3c7;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    --bg-color: #1a1a1a;
    --bg-secondary: #2d3436;
    --card-bg: #2c3e50;
    --border-color: #34495e;
  }
  
  