#iconN {
    background-color: rgba(243, 228, 228, 0);
    display: flex;
    flex-direction: row;
    font-size: 30px;
    gap: 10%;
    justify-content: center;
    align-items: center;

}


#HeroTitle {
    color: #C99236;
    font-size: 30px;
    font-weight: bold;
}

#icon1 {
    background-color: #FC983C;
    color: #fff;
    transition: all 0.3s ease-in-out;
    text-align: center;

    font-size: 17px;
    padding: 20px;
    border-radius: 30px;
}

#icon1:hover {
    background-color: #fff;
    color: #FC983C;
}




#icon2 {
    background-color: #FC983C;
    color: #fff;
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-size: 30px;
    padding: 7px;
    border-radius: 10px;
}

#icon2:hover {
    background-color: #ffffff00;
    color: #FC983C;
}


#iconimg {
    width: 40px;
    height: 40px;
}


#MenuLogo {
    width: 15%;
    margin: auto;
    text-align: center;
}

#heroText {
    text-align: center;
}

#HeroLogo {
    margin: auto;
    width: 50%;
}

#contatoText {
    background-color: #ffff;
    color: rgb(255, 255, 255);
}


/* Contact Section */


#Portserv {
    background-image: url("../images/Banner/2_servicos.png");
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

#Portserv h2 {
    color: #fff;
}

#prodtext {
    text-align: start;
}

#PortText2 {
    color: #fff;
}

#Portserv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.685);
}


#soli {
    background-color: #fc993c00;
    color: #fff;
    transition: all 0.3s ease-in-out;
    text-align: center;
    font-size: 17px;
    padding: 15px;
    border: 2px solid #FC983C;
    border-radius: 30px
}

#soli:hover {
    background-color: #ffffffd2;
    border: 2px solid #ffffffc7;
    color: #FC983C;
}



/* Seção de contato */
.contact-section-wrapper {

    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.contact-section-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(32, 32, 33, 0.199);
    z-index: 1;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    color: #FC983C;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Layout flexível para contato e formulário */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Estilização da coluna de informações */
.contact-info-column {
    flex: 1;
    min-width: 300px;
    background-color: rgba(195, 148, 62, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    padding: 20px;
}

.info-item {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 15px rgba(252, 152, 60, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #FC983C;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(252, 152, 60, 0.3);
    border-left: 4px solid #C3943E;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FC983C, #C3943E);
    border-radius: 50%;
    margin-bottom: 15px;
}

.info-icon i {
    font-size: 28px;
    color: #202021;
}

.info-text span {
    display: block;
    text-align: center;
    font-weight: 600;
    color: #202021;
    margin-bottom: 5px;
    font-size: 18px;
}

.info-text a,
.info-text p {
    color: #666;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #FC983C;
}

@media (max-width: 768px) {

    .info-text span {
        display: block;
        text-align: center;
        font-weight: 600;
        color: #202021;
        margin-bottom: 5px;
        font-size: 12px;
    }

    .info-text a,
    .info-text p {
        color: #666;
        text-decoration: none;
        text-align: center;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .info-text a:hover {
        color: #FC983C;
    }


}




/* Estilização do formulário */
.contact-form-column {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #FC983C;
}

.form-header {
    margin-bottom: 25px;
}

.form-header span {
    font-size: 16px;
    color: #FC983C;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.form-header h2 {
    font-size: 28px;
    color: #202021;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 16px;
    background-color: #f9f9f9;
}

.form-control:hover {
    background-color: #fff;
    border-color: #C3943E;
}

.form-control:focus {
    border-color: #FC983C;
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: linear-gradient(135deg, #FC983C, #C3943E);
    color: #202021;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(252, 152, 60, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(252, 152, 60, 0.6);
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-info-column,
    .contact-form-column {
        width: 100%;
    }
}






/**/

/* CSS refinado para o menu de navegação */

/* Configuração básica do menu */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background-color: transparent;
}



#whatsappForm {


    width: 100%;
}

/* Menu com fundo após rolagem */
.header-nav.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

/* Container do menu */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Logo */
.brand-logo {
    display: block;
}

#brand-image {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.header-nav.scrolled #brand-image {
    height: 40px;
}

/* Container do menu principal */
.menu-container {
    display: flex;
    align-items: center;
}

/* Lista de itens do menu */
.menu-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Itens do menu */
.menu-link {
    margin: 0 5px;
    position: relative;
}

.menu-link a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    transition: color 0.3s ease;
}

.header-nav.scrolled .menu-link a {
    color: #333333;
}

.menu-link a:hover,
.menu-link.active a {
    color: #fc983c;
}

/* Efeito sublinhado nos links */
.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #fc983c;
    transition: width 0.3s ease, left 0.3s ease;
}

.menu-link:hover::after,
.menu-link.active::after {
    width: 70%;
    left: 15%;
}

/* Botão do menu para mobile */
.mobile-trigger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #ffffff;
    align-items: center;
    outline: none;
}

.header-nav.scrolled .mobile-trigger {
    color: #333333;
}

/* Ícone do menu "hamburger" */
.burger-icon {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 18px;
    margin-right: 8px;
}

.burger-line,
.burger-icon::before,
.burger-icon::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.header-nav.scrolled .burger-line,
.header-nav.scrolled .burger-icon::before,
.header-nav.scrolled .burger-icon::after {
    background-color: #333333;
}

.burger-line {
    top: 50%;
    transform: translateY(-50%);
}

.burger-icon::before {
    top: 0;
}

.burger-icon::after {
    bottom: 0;
}

/* Texto do botão menu */
.trigger-text {
    font-size: 16px;
    font-weight: 500;
}

/* Estilo para o menu mobile */
@media (max-width: 991px) {
    .nav-wrapper {
        width: 95%;
        padding: 0 10px;
    }

    .mobile-trigger {
        display: flex;
        align-items: center;
    }

    .menu-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        opacity: 0;
    }

    .menu-container.active {
        max-height: 500px;
        opacity: 1;
    }

    .menu-items {
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
    }

    .menu-link {
        margin: 0;
        width: 100%;
    }

    .menu-link a {
        color: #333333 !important;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .menu-link::after {
        display: none;
    }

    .menu-link.active a,
    .menu-link a:hover {
        background-color: rgba(252, 152, 60, 0.1);
    }

    /* Animação do ícone hamburger para X */
    .mobile-trigger[aria-expanded="true"] .burger-line {
        background-color: transparent;
    }

    .mobile-trigger[aria-expanded="true"] .burger-icon::before {
        top: 8px;
        transform: rotate(45deg);
    }

    .mobile-trigger[aria-expanded="true"] .burger-icon::after {
        bottom: 8px;
        transform: rotate(-45deg);
    }
}


.catalogoclass {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;

}

/*--------------------------------------------------------------
# Botão WhatsApp Estilizado
--------------------------------------------------------------*/

/* Botão WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.whatsapp-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-button:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

/* Ícone do WhatsApp */
.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

/* Animação de pulso */
.whatsapp-button::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Tooltip */
.whatsapp-button::after {
    content: 'Fale conosco';
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-button:hover::after {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Seta do tooltip */
.whatsapp-button::before {
    content: '';
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-button:hover::before {
    opacity: 1;
    visibility: visible;
    right: 68px;
}

/* Responsivo */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .whatsapp-button::after {
        display: none;
    }

    .whatsapp-button::before {
        display: none;
    }
}