/* Estilos globais para o site Fritis */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utilitários */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.shadow-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Grid */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    background-color: #e63946;
    color: white;
}

.btn-primary:hover {
    background-color: #c1121f;
}

.btn-secondary {
    background-color: #457b9d;
    color: white;
}

.btn-secondary:hover {
    background-color: #1d3557;
}

.btn-accent {
    background-color: #fca311;
    color: #1d3557;
}

.btn-accent:hover {
    background-color: #f48c06;
}

.btn-hero {
    font-size: 1.2rem;
    padding: 15px 30px;
}

/* Header e Navegação */
header {
    background-color: #e63946;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

#desktop-nav ul {
    display: flex;
    gap: 20px;
}

#desktop-nav a {
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

#desktop-nav a:hover {
    background-color: #457b9d;
}

.nav-licenciado {
    background-color: #e63946;
    color: white;
}

.nav-licenciado:hover {
    background-color: #c1121f !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: white;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    background-color: #1d3557;
    padding: 20px;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu a {
    display: block;
    padding: 10px;
    border-radius: 4px;
}

.mobile-menu a:hover {
    background-color: #457b9d;
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Seções */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #666;
}

.section-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-title-container {
    margin-bottom: 40px;
}

/* Cards */
.card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-destaque {
    padding: 30px;
    text-align: center;
    height: 100%;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1d3557;
}

.card-text {
    color: #666;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-product {
    margin-bottom: 30px;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-description {
    margin-bottom: 15px;
    min-height: 80px;
}

.product-price {
    font-weight: bold;
    color: #e63946;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Destaques */
.section-destaques {
    background-color: #f1faee;
}

/* Produtos */
.section-produtos {
    background-color: white;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.produto-item {
    text-align: center;
    padding: 20px;
}

.produto-titulo {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1d3557;
}

.produto-descricao {
    color: #666;
}

/* Licenciamento */
.section-licenciamento {
    background-color: #f1faee;
}

/* Cardápio */
.section-cardapio {
    background-color: white;
}

.cardapio-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    color: #1d3557;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.category-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #e63946;
    margin: 15px auto 0;
}

.cardapio-grid {
    margin-bottom: 20px;
}

/* Peça Online */
.section-peca-online {
    background-color: white;
}

.peca-online-options {
    margin-bottom: 40px;
}

.card-delivery {
    padding: 40px 20px;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e63946;
    margin-bottom: 15px;
}

/* Nossas Lojas */
.section-lojas {
    background-color: white;
}

.loja-info-container {
    max-width: 900px;
    margin: 0 auto;
}

.loja-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.loja-imagem {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.loja-detalhes {
    padding: 30px;
}

.loja-detalhes h3 {
    font-size: 1.8rem;
    color: #1d3557;
    margin-bottom: 20px;
}

.loja-detalhes p {
    margin-bottom: 15px;
}

.loja-detalhes ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.loja-detalhes li {
    margin-bottom: 5px;
    list-style-type: disc;
}

.loja-mapa {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}

/* Nossa História */
.section-sobre-nos {
    background-color: white;
}

.sobre-nos-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.sobre-nos-texto h3 {
    font-size: 1.5rem;
    color: #1d3557;
    margin: 25px 0 15px;
}

.sobre-nos-texto p {
    margin-bottom: 15px;
}

.sobre-nos-texto ul {
    margin: 20px 0;
    padding-left: 20px;
}

.sobre-nos-texto li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.sobre-nos-imagem img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Fale Conosco */
.section-fale-conosco {
    background-color: white;
}

.fale-conosco-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.form-container {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-status-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    background-color: #d4edda;
    color: #155724;
    display: none;
}

.contato-info-sidebar {
    padding: 20px;
}

.contato-info-sidebar h3 {
    font-size: 1.5rem;
    color: #1d3557;
    margin-bottom: 20px;
}

.contato-info-sidebar p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.social-contact-link {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #1d3557;
    transition: color 0.3s;
}

.social-contact-link:hover {
    color: #e63946;
}

/* Seja Licenciado */
.section-seja-licenciado {
    background-color: white;
}

.licenciado-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.licenciado-info {
    padding: 20px;
}

.licenciado-info h3 {
    font-size: 1.5rem;
    color: #1d3557;
    margin-bottom: 20px;
}

.licenciado-info ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.licenciado-info li {
    margin-bottom: 15px;
    list-style-type: disc;
}

.licenciado-img-destaque {
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}

.licenciado-form-container {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.licenciado-form-container h3 {
    font-size: 1.5rem;
    color: #1d3557;
    margin-bottom: 15px;
}

.licenciado-form-container p {
    margin-bottom: 20px;
}

/* Page Title Section */
.page-title-section {
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    margin-bottom: 40px;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.page-title-section .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 2.5rem;
}

/* Footer */
footer {
    background-color: #1d3557;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-description {
    color: #a8dadc;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #e63946;
    margin-top: 10px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a8dadc;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-social-links {
    margin-bottom: 30px;
}

.footer-social-item {
    display: flex;
    align-items: center;
    color: #a8dadc;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-social-item:hover {
    color: white;
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.footer-contact-heading {
    margin-top: 30px;
}

.footer-contact-info {
    color: #a8dadc;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a8dadc;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 992px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sobre-nos-content,
    .fale-conosco-grid,
    .licenciado-grid {
        grid-template-columns: 1fr;
    }
    
    .produtos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .produtos-grid {
        grid-template-columns: 1fr;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}
