:root {
    --primary-color: #d92a19;
    --secondary-color: #fff;
    --text-color: #111111;
    --text-color-secondary: #fff;
    --text-color-tertiary: #ab2114;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.btn-transparent {
    background-color: transparent !important;
    color: var(--secondary-color) !important;
    border: solid 1px var(--secondary-color) !important;
}

.btn-primary , 
a.btn-primary{
    background-color: var(--primary-color) !important;
    color: var(--secondary-color);
    text-decoration: none;
    border: solid 1px var(--primary-color) !important;
}

a.btn-primary:hover {
    background-color: var(--text-color-tertiary) !important;
    border: solid 1px var(--text-color-tertiary) !important;
}

a.btn-primary:active, 
.btn-primary:active {
    background-color: var(--primary-color) !important;
    border: solid 1px var(--primary-color) !important;
}

body {
    font-family: 'Roboto', sans-serif;
}

header {
    padding: 20px 30px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .brand {
    width: 150px;
    height: auto;
}

/* Logos do lado direito */
.header-logos {
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.sirman-logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.sirman-logo:hover {
    transform: scale(1.05);
}

.brazil-flag {
    height: 25px;
    width: auto;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.brazil-flag:hover {
    transform: scale(1.1);
}

header menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

header menu ul {
    display: flex;
    list-style: none;
}

header menu ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    padding: 10px 10px;
    transition: all 0.3s ease;
}

header menu ul li a:hover {
    color: var(--primary-color);
}

header menu ul li a:active {
    color: var(--primary-color);
}

/* Botões e estilos gerais podem ser adicionados aqui */

.prato-container .prato-item{
    width: 25%;
}

.prato-container .prato-item.grayscale{
    background-color: #f5f5f5;
}

.prato-container .prato-item .prato-item-overlay{
    width: 80%;
    height: 0;
    padding-bottom: 80%;
    position: relative;
    margin: 10%;
}

/* Estilos para o Modal WhatsApp */
#whatsappModal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

#whatsappModal .modal-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

#whatsappModal .modal-title {
    font-weight: 600;
}

#whatsappModal .btn-success {
    background-color: #25D366;
    border-color: #25D366;
    font-weight: 600;
    padding: 10px 20px;
}

#whatsappModal .btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

#whatsappModal .form-control:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 0.2rem rgba(37, 211, 102, 0.25);
}

#whatsappModal .alert-info {
    background-color: #e3f2fd;
    border-color: #bbdefb;
    color: #1565c0;
}

/* Animação de entrada do modal */
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 120px; /* 100px acima do botão voltar ao topo */
    right: 20px;
    z-index: 1000;
    cursor: pointer;
}

.whatsapp-float-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-float-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-button i {
    font-size: 28px;
    color: white;
    transition: transform 0.3s ease;
}

.whatsapp-float-button:hover i {
    transform: scale(1.1);
}

/* Tooltip do botão flutuante */
.whatsapp-float-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

/* Animação de pulsação */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float-button {
    animation: whatsapp-pulse 2s infinite;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 115px; /* 100px acima do botão voltar ao topo no mobile */
        right: 15px;
    }
    
    .whatsapp-float-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float-button i {
        font-size: 24px;
    }
    
    .whatsapp-float-tooltip {
        right: 65px;
        font-size: 12px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float-tooltip {
        display: none; /* Esconder tooltip em telas muito pequenas */
    }
}

/* Responsividade para header */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    
    .header-logos {
        right: 20px;
        gap: 10px;
    }
    
    .sirman-logo {
        height: 35px;
    }
    
    .brazil-flag {
        height: 20px;
    }
    
}

@media (max-width: 480px) {
    .header-logos {
        gap: 8px;
    }
    
    .sirman-logo {
        height: 30px;
    }
    
    .brazil-flag {
        height: 18px;
    }
    

}

.menu-toggle {
    display: none;
}

@media (max-width: 960px) {
    .menu-toggle {
        display: block;
        position: absolute;
        left: 30px;
        top: 30px;
        z-index: 20000;
        cursor: pointer;
        font-size: 20px;
        border: none;
        background-color: transparent;
        transition: all 0.5s ease;
    }

    .menu-toggle.active {
        transform: rotate(90deg);
        left: calc(100% - 30px);
    }

    header a.brand{
        transform: scale(0.7);
        margin-left: calc(50% - 100px);

    }
    
    header menu {
        position: fixed;
        background: #FFFFFFF9;
        top: 0;
        margin: 0;
        left: -110%;
        width: 100%;
        height: 100%;
        z-index: 2000;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
        transition: all 0.5s ease;
        transform: none !important;
        padding-top: 80px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        overflow-y: auto;
        overflow-x: hidden;
    }

    header menu.active {
        left: 0;
        transform: none !important;
    }

    header menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        width: 100%;
        padding: 20px;
        margin-top: 20px;
    }

    header menu ul li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #e5e5e5;
    }

    header menu ul li:last-child {
        border-bottom: none;
    }

    header menu ul li a,
    header menu ul li {
        font-size: 18px;
        font-weight: 400;
        color: var(--text-color);
        text-decoration: none;
        display: block;
        width: 100%;
        padding: 15px 20px;
        cursor: pointer;
    }

    header menu ul li a:hover,
    header menu ul li:hover {
        color: var(--primary-color);
        background-color: #f5f5f5;
    }

    header menu ul li.submenu-products-trigger,
    header menu ul li.submenu-benefits-trigger,
    header menu ul li.submenu-recipes-trigger {
        position: relative;
    }

    header menu ul li .submenu {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #FFFFFF;
        z-index: 3000;
        padding-top: 100px;
        display: none;
        transform: none !important;
    }

    header menu ul li:hover .submenu,
    header menu ul li .submenu.active {
        display: block;
    }

    header menu ul li .submenu > div {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    header menu ul li .submenu > div > div {
        width: 100%;
        height: auto;
    }

    header menu ul li .submenu .img-submenu {
        width: 100%;
        height: auto;
    }

    .container.sense-container > div > div{
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-bottom: 1px solid #000000;
        padding-bottom: 20px;

    }

    .container.sense-container > div > div.item2{
        flex-direction: column-reverse !important;
    }

    .container.sense-container > div > div > div{
        width: 100%;
        height: auto;
    }

    .prato-container .prato-item{
        width: 50%;
    }

    .prato-container .prato-item .title-effect{
        font-size: 14px !important;
    }
    
    .container.sense-container > div > div > div > div{
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-bottom: 1px solid #000000;
        padding-bottom: 20px;
        width: 100%;
        height: auto;
    }
    
    

}

.prato-container .prato-item .prato-item-overlay img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.title-effect{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    z-index: 4;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.title-effect span{
    margin-top: 20%;
    opacity: 0;
    transition: all 0.3s ease;
}

.title-effect:hover span{
    margin-top: 0;
    opacity: 1;
}

.title-effect:before{
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #111111;
    z-index: -1;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.title-effect:hover:before{
    left: 0;
}

.sense-container .img-fluid{
    width: 50%;
    height: auto;
}

.section-pacojet{
    background-color: #000000;
    padding: 100px 0;
}

.section-pacojet .fs-5{
    min-height: 60px;
    margin: 0 !important;
}

menu ul{
    position: relative;
}

li .submenu{
    position: absolute;
    width: 600px;
    left: 0 !important;
    max-width: 600px;
    background-color: #FFFFFF;
    padding: 50px;
    z-index: 1000;
    display: none;
}

li:hover .submenu{
    display: block;
}

li .submenu > div{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

li .submenu .img-submenu{
    width: 100%;
    height: auto;
}

/* Footer Styles */
.site-footer {
    background-color: #f4f5f6;
    border-top: 2px solid #d1d5db;
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

.site-footer h5 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 18px;
}

.site-footer h6 {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 16px;
}

.site-footer p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.site-footer .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.site-footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer .social-link:hover {
    background-color: var(--text-color-tertiary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 42, 25, 0.3);
}

.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-links li {
    margin-bottom: 8px;
}

.site-footer .footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.site-footer .footer-links a:hover {
    color: var(--primary-color);
}

.site-footer .contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.site-footer .contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 16px;
}

.site-footer .footer-divider {
    border: none;
    height: 1px;
    background-color: #d1d5db;
    margin: 40px 0 30px 0;
}

.site-footer .copyright {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.site-footer .powered-by {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
    padding: 20px 0;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-banner .cookie-content h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.cookie-banner .cookie-content p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner .cookie-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.cookie-banner .btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cookie-banner .btn-outline-light {
    border-color: #6b7280;
    color: #d1d5db;
}

.cookie-banner .btn-outline-light:hover {
    background-color: #6b7280;
    border-color: #6b7280;
    color: white;
}

.cookie-banner .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.cookie-banner .btn-primary:hover {
    background-color: var(--text-color-tertiary);
    border-color: var(--text-color-tertiary);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px 0;
        margin-top: 60px;
    }
    
    .site-footer .row > div {
        margin-bottom: 30px;
    }
    
    .site-footer .social-links {
        justify-content: center;
    }
    
    .site-footer .copyright,
    .site-footer .powered-by {
        text-align: center !important;
        margin-bottom: 10px;
    }
    
    .cookie-banner .cookie-content {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .cookie-banner .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 0 15px 0;
    }
    
    .site-footer h5 {
        font-size: 16px;
    }
    
    .site-footer h6 {
        font-size: 14px;
    }
    
    .site-footer p,
    .site-footer .footer-links a,
    .site-footer .contact-info p {
        font-size: 13px;
    }
    
    .cookie-banner {
        padding: 15px 0;
    }
    
    .cookie-banner .cookie-content h6 {
        font-size: 14px;
    }
    
    .cookie-banner .cookie-content p {
        font-size: 13px;
    }
    
    .cookie-banner .btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Page Hero Styles */
.page-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 550px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
}

/* Statistics Styles */
.stat-item {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Team Card Styles */
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .page-hero {
        min-height: 300px;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 250px;
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 0.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

