/* Estilos Gerais */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --light-color: #dbeafe;
    --dark-color: #1e40af;
    --white: #ffffff;
    --black: #333333;
    --gray: #f5f5f5;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav ul {
    display: flex;
    gap: 20px;
}

.nav a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--secondary-color);
}

.btn-contato {
    padding: 8px 16px;
    background-color: var(--secondary-color);
    color: var(--white) !important;
    border-radius: 4px;
}

.btn-contato:hover {
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1589939705384-5185137a7f0f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Sobre Section */
.sobre {
    padding: 100px 0;
    background-color: var(--gray);
}

.sobre-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sobre-text {
    flex: 1;
}

.sobre-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.sobre-img {
    flex: 1;
    height: 400px;
    background-color: var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
}

/* Produtos Section */
.produtos {
    padding: 100px 0;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.produto-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-10px);
}

.produto-img {
    height: 200px;
    background-color: var(--accent-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produto-card h3 {
    padding: 20px 20px 10px;
    color: var(--dark-color);
}

.produto-card p {
    padding: 0 20px 20px;
    color: var(--black);
}

/* Contato Section */
.contato {
    padding: 100px 0;
    background-color: var(--gray);
}

.contato-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contato-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contato-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.contato-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.contato-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.contato-card h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contato-card p {
    color: var(--black);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-whatsapp, .btn-email {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover, .btn-email:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-email {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.btn-email:hover {
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.4);
}

.endereco-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.endereco-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.endereco-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.endereco-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.endereco-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.endereco-card p {
    color: var(--black);
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-maps {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #EA4335, #FBBC04);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-maps:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(234, 67, 53, 0.4);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 992px) {
    .sobre-content,
    .contato-content {
        flex-direction: column;
    }
    
    .sobre-img {
        height: 300px;
    }
    
    .hero h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
    }
    
    .nav {
        margin-top: 15px;
    }
    
    .nav ul {
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}


/* Estilos para links do Google Maps */
.maps-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 5px;
    display: inline-block;
    transition: color 0.3s ease;
}

.maps-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}


/* Estilos para a logomarca */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo h1 {
    margin: 0;
}

/* Estilos para a imagem da seção Sobre Nós */
.sobre-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsividade para a logo */
@media (max-width: 768px) {
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}


/* Responsividade para a seção de contato */
@media (max-width: 992px) {
    .contato-content,
    .endereco-content {
        flex-direction: column;
    }
    
    .endereco-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contato-cards {
        grid-template-columns: 1fr;
    }
    
    .contato-card, .endereco-card {
        padding: 30px 20px;
    }
    
    .contato-icon, .endereco-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contato-card h3, .endereco-card h3 {
        font-size: 1.2rem;
    }
}

