@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;600&family=Pacifico&display=swap');

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Variáveis Globais */
:root {
    --primary-color: #00A6A6; /* Azul Turquesa Vibrante */
    --secondary-color: #FFC857; /* Amarelo Areia/Sol */
    --accent-color: #E63946; /* Coral Vibrante */
    --text-color: #333333; /* Cinza Escuro */
    --light-bg-color: #F8F8F8; /* Cinza Bem Claro */
    --white-color: #FFFFFF;
    --footer-bg-color: #2c3e50; /* Azul Escuro para rodapé */

    --font-logo: 'Pacifico', cursive;
    --font-headings: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --header-height: 80px;
}

/* Estilos Globais Iniciais */
body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    margin-bottom: 0.75em;
    color: var(--text-color);
}

h1 { font-size: 2.5rem; } /* Será ajustado para o logo */
h2 { font-size: 2rem; margin-top: 1.5em; }
h3 { font-size: 1.5rem; margin-top: 1em; }

/* Container para centralizar conteúdo */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header e Navegação */
header {
    background-color: var(--white-color);
    padding: 0 20px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-family: var(--font-logo);
    font-size: 2.2rem;
    color: var(--primary-color);
    text-decoration: none;
}

header nav ul {
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color);
    padding: 10px 5px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

header nav ul li a:hover::after,
header nav ul li a.active::after { /* Classe 'active' a ser adicionada via JS ou manualmente se necessário */
    width: 100%;
}
header nav ul li a:hover {
    color: var(--accent-color);
}


/* Main Content Area */
main {
    padding-top: 20px; /* Ajuste para compensar o header fixo se necessário, ou remova se o header não for fixo */
    padding-bottom: 40px;
    background-color: var(--white-color); /* Fundo principal */
}

main .container h2 {
    text-align: center;
    margin-bottom: 1.5em;
    font-size: 2.2rem;
    color: var(--primary-color);
}

main .container p {
    margin-bottom: 1em;
    text-align: justify;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color); /* Placeholder - será uma imagem */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://img-br.prvstatic.com/front/get/photo/202061_-_images_-_960ximg-brand-mobile-image-campaign.jpg'); /* Imagem temática hero */
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    padding: 80px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 40px; /* Espaço antes do próximo conteúdo */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px; /* Altura mínima para a hero section */
}

.hero-content h2 {
    font-family: var(--font-headings);
    font-size: 2.8rem;
    color: var(--white-color);
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center; /* Garante que o texto do parágrafo também seja centralizado */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);

}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: #c42d37; /* Um tom mais escuro de accent-color */
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);

}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: #e0b048; /* Um tom mais escuro de secondary-color */
    color: var(--text-color);
    transform: translateY(-2px);
}

/* Featured Products Section */
.featured-products {
    padding: 40px 0;
    background-color: var(--light-bg-color);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.5em;
    color: var(--primary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden; /* Para o radius funcionar com a imagem */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center; /* Centraliza o conteúdo do card */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.product-image-placeholder {
    width: 100%;
    height: 250px; /* Altura fixa para placeholder */
    background-color: #e0e0e0; /* Cor do placeholder */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-style: italic;
    /* Adicionaremos uma imagem genérica aqui */
    background-image: url('https://picsum.photos/400/300?random=1'); /* Imagem aleatória para cada card */
    background-size: cover;
    background-position: center;
}

/* Para variar as imagens dos placeholders - ESTA SEÇÃO SERÁ REMOVIDA OU IGNORADA POIS AS IMAGENS SERÃO DEFINIDAS NO HTML */
/*
.product-card:nth-child(1) .product-image-placeholder { background-image: url('https://picsum.photos/400/300?random=1'); }
.product-card:nth-child(2) .product-image-placeholder { background-image: url('https://picsum.photos/400/300?random=2'); }
.product-card:nth-child(3) .product-image-placeholder { background-image: url('https://picsum.photos/400/300?random=3'); }
.product-card:nth-child(4) .product-image-placeholder { background-image: url('https://picsum.photos/400/300?random=4'); }
*/

.product-card h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin: 15px 10px 10px;
}

.product-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-align: center;
}

.product-card .btn {
    margin: 0 auto 20px auto; /* Centraliza o botão */
    width: calc(100% - 40px); /* Botão ocupa largura do card menos padding */
}

/* About Us CTA Section */
.about-us-cta {
    padding: 50px 0;
    background-color: var(--white-color); /* Ou pode ser var(--light-bg-color) para alternar */
}

.about-us-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-us-text {
    flex-basis: 55%; /* Ocupa um pouco mais da metade do espaço */
}

.about-us-text .section-title {
    text-align: left; /* Alinha o título à esquerda nesta seção */
    margin-bottom: 0.8em;
}

.about-us-text p {
    margin-bottom: 1.5em;
    text-align: left; /* Alinha o parágrafo à esquerda */
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-us-image-placeholder {
    flex-basis: 40%;
    height: 350px;
    background-color: var(--secondary-color); /* Placeholder */
    border-radius: 8px;
    background-image: url('https://picsum.photos/seed/modapraiaaboutcta/500/400'); /* Imagem temática para CTA Sobre */
    background-size: cover;
    background-position: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Page Subtitle (Produtos, Contato, etc) */
.page-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #777;
    margin-top: -1em; /* Puxa um pouco para cima, abaixo do H2 */
    margin-bottom: 2.5em;
}

/* Category Filters (Página Produtos) */
.category-filters {
    text-align: center;
    margin-bottom: 30px;
}

.filter-btn {
    background-color: var(--white-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);

}

/* Full Products Gallery Section - apenas para espaçamento se necessário */
.full-products-gallery {
    padding-top: 20px;
}

/* About Us Page Specific Styles */
.about-page-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start; /* Alinha os itens no topo */
}

.about-text-content {
    flex: 2; /* Ocupa 2/3 do espaço */
}

.about-text-content .page-subtitle {
    text-align: left; /* Alinha subtítulo à esquerda */
    margin-top: -0.5em;
    margin-bottom: 1.5em;
}

.about-image-placeholder {
    flex: 1; /* Ocupa 1/3 do espaço */
    height: 500px; /* Altura da imagem */
    background-image: url('https://picsum.photos/seed/modapraiasobrebg/400/600'); /* Imagem temática para página Sobre */
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: sticky; /* Para a imagem acompanhar o scroll até certo ponto */
    top: calc(var(--header-height) + 20px); /* Considera altura do header + padding */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-section {
    margin-bottom: 2.5em;
}

.about-section h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.8em;
    padding-bottom: 0.3em;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block; /* Para a borda não ocupar a largura toda */
}

.about-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1em;
    text-align: justify;
}

.about-section ul {
    list-style: none; /* Já está no reset, mas para garantir */
    padding-left: 0;
}

.about-section ul li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5em;
    color: var(--text-color);
    position: relative;
    padding-left: 25px; /* Espaço para o ícone */
}

.about-section ul li::before {
    content: '✓'; /* Ícone de check */
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 1px;
}

/* Contact Page Specific Styles */
.contact-page-layout {
    display: flex;
    flex-wrap: wrap; /* Permite quebrar em telas menores */
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info-section {
    flex: 1;
    min-width: 300px; /* Largura mínima antes de quebrar */
}

.contact-info-section h3,
.contact-form-section h3,
.map-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1em;
    padding-bottom: 0.3em;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.contact-item {
    margin-bottom: 1.5em;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3em;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.contact-item h4 i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 1.3rem; /* Placeholder para tamanho do ícone */
    /* Exemplo de classes de ícone (substituir por real) */
}
.icon-phone::before { content: "📞"; font-style: normal;}
.icon-email::before { content: "✉️"; font-style: normal;}
.icon-location::before { content: "📍"; font-style: normal;}


.contact-item p {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-item p a {
    color: var(--text-color);
}

.contact-item p a:hover {
    color: var(--accent-color);
}

.contact-form-section {
    flex: 1.5; /* Ocupa mais espaço */
    min-width: 320px;
}

.contact-form .form-group {
    margin-bottom: 1.5em;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: var(--text-color);
    font-size: 0.95rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 166, 166, 0.2);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button.btn-primary {
    width: auto;
    padding: 12px 30px;
}

/* Map Section */
.map-section {
    margin-top: 30px;
    clear: both; /* Garante que fique abaixo dos elementos flex */
}

.map-section iframe {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: var(--footer-bg-color);
    color: var(--white-color);
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 8px;
    line-height: 1.5;
}

footer p:last-child {
    margin-bottom: 0;
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .container {
        width: 95%;
    }

    .about-page-layout,
    .contact-page-layout {
        flex-direction: column;
    }

    .about-image-placeholder {
        height: 300px; /* Altura menor em telas médias */
        width: 100%;
        position: static; /* Remove o sticky em telas menores */
        margin-top: 20px;
    }

    .contact-info-section,
    .contact-form-section {
        width: 100%;
    }

    .about-us-cta-content {
        flex-direction: column;
        text-align: center;
    }
    .about-us-text .section-title,
    .about-us-text p {
        text-align: center;
    }
    .about-us-image-placeholder {
        height: 300px;
        width: 80%;
        margin: 20px auto 0;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 15px;
        height: auto;
        flex-direction: column;
        align-items: center; /* Centraliza logo e nav quando empilhados */
        padding-bottom: 10px; /* Espaço para não colar no conteúdo */
        position: static; /* Remove o sticky do header em mobile */
    }

    header .logo {
        margin-bottom: 10px; /* Espaço entre logo e nav */
        margin-top:15px;
    }

    header nav ul {
        flex-direction: column; /* Menu empilhado */
        align-items: center; /* Itens do menu centralizados */
        width: 100%;
    }

    header nav ul li {
        margin-left: 0;
        margin-bottom: 8px; /* Espaço entre itens do menu */
        width: 100%;
        text-align: center;
    }
    header nav ul li a {
        display: block; /* Ocupa toda a largura */
        padding: 10px;
        border-bottom: 1px solid #eee;
    }
    header nav ul li a::after {
        display:none; /* Remove sublinhado animado no mobile */
    }
     header nav ul li:last-child a {
        border-bottom: none;
    }

    main {
        padding-top: 10px; /* Reduz padding quando header não é sticky */
    }

    .hero {
        padding: 50px 15px;
        min-height: 300px;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .product-card {
        /* Ajustes se necessário para cards em telas menores */
    }
    .section-title,
    main .container h2 {
        font-size: 1.8rem;
    }
    .about-text-content .page-subtitle{
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1.logo { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }

    .hero-content h2 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    .product-card h3 {
        font-size: 1.1rem;
    }
    .product-card .price {
        font-size: 1rem;
    }
} 