/* Hero Section */
section.hero {
    position: relative;
    height: 100vh; /* altura da tela inteira */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

section.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

section.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* overlay preta semi-transparente */
    z-index: 2;
}

section.hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
    padding: 0 1rem;
}

section.hero h1 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    section.hero h1 {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    section.hero h1 {
        font-size: 5rem;
    }
}

section.hero p {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    section.hero p {
        font-size: 1.5rem;
    }
}

section.hero a.hero-button {
    display: inline-flex;
    align-items: center;
    background-color: #ea580c; /* laranja ambar */
    color: #fff;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 9999px; /* totalmente arredondado */
    text-decoration: none;
    transition: all 0.3s ease;
}

section.hero a.hero-button:hover {
    background-color: #ea580c; /* hover mais escuro */
    transform: translateY(-2px);
}

section.hero a.hero-button i {
    margin-left: 0.5rem;
}

/* Responsividade geral da Hero Section */
@media (max-width: 640px) {
    section.hero h1 {
        font-size: 2rem;
    }
    section.hero p {
        font-size: 1rem;
    }
    section.hero a.hero-button {
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* About Section - Luminare */
section.py-20 {
    background-color: #ffffff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

section.py-20 .flex {
    display: flex;
    flex-direction: row; /* duas colunas lado a lado */
    align-items: center;
    gap: 3rem; /* espaço entre imagem e texto */
    max-width: 1200px;
    margin: 0 auto;
}

section.py-20 .flex > div {
    flex: 1; /* cada coluna ocupa 50% do espaço */
}

section.py-20 img {
    width: 100%;
    height: auto;
    border-radius: 1rem; /* cantos semi-arredondados */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section.py-20 img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

section.py-20 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    font-family: 'Georgia', serif;
    margin-bottom: 1.5rem;
}

section.py-20 p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
}

/* Responsivo - tablet */
@media (max-width: 1024px) {
    section.py-20 .flex {
        flex-direction: column;
        text-align: center;
    }

    section.py-20 img {
        max-width: 80%;
        margin-bottom: 2rem;
    }

    section.py-20 p {
        text-align: justify;
    }
}

/* Responsivo - celular */
@media (max-width: 480px) {
    section.py-20 h2 {
        font-size: 1.9rem;
    }

    section.py-20 p {
        font-size: 0.95rem;
    }
}

/* Featured Products - Destaque da Coleção */
#produtos {
    background-color: #f3f4f6; /* cinza clarinho */
    padding: 4rem 2rem;
}

/* Título e subtítulo */
#produtos .text-center h2 {
    font-family: 'Georgia', serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

#produtos .text-center p {
    color: #4b5563;
    font-size: 1rem;
    max-width: 40rem;
    margin: 0 auto;
    line-height: 1.6;
}
#produtos .max-w-6xl {
    max-width: 1200px; /* largura máxima mais estreita */
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}
/* Grid de produtos */
#produtos .grid {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem; /* espaço entre os cards */
    flex-wrap: wrap; /* permite quebrar para tablet/celular */
    margin-top: 3rem;
}

/* Cada card */
#produtos .grid > div {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 1.33rem); /* 3 colunas com gap */
    display: flex;
    flex-direction: column;
    min-width: 280px; /* garante que não fique muito pequeno */
}

#produtos .grid > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Imagem do card */
#produtos .grid img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

/* Conteúdo do card */
#produtos .grid h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

#produtos .grid p {
    font-size: 0.95rem;
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Preço e botão */
#produtos .grid .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#produtos .grid .flex span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ea580c; /* laranja */
}

#produtos .grid .flex button {
    background-color: #ea580c;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#produtos .grid .flex button:hover {
    background-color: #ea580c;
    transform: scale(1.05);
}

/* Botão Ver Catálogo */
#produtos .text-center a {
    border: 2px solid #ea580c;
    color: #ea580c;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 2rem;
}

#produtos .text-center a:hover {
    background-color: #ea580c;
    color: #fff;
}

/* Responsivo */
@media (max-width: 1024px) {
    #produtos .grid > div {
        flex: 1 1 calc(50% - 1rem); /* 2 colunas no tablet */
    }
}

@media (max-width: 640px) {
    #produtos .grid {
        gap: 1.5rem;
    }
    #produtos .grid > div {
        flex: 1 1 100%; /* 1 coluna no celular */
    }
}

/* Sessão de Produtos */
#produtos {
    background-color: #f5f5f5; /* cinza bem clarinho */
    padding: 4rem 1rem;
    font-family: 'Arial', sans-serif;
}

#produtos h2 {
    font-family: 'Georgia', serif;
    font-size: 2.25rem; /* 36px */
    font-weight: bold;
    color: #1f1f1f;
    margin-bottom: 1rem;
}

#produtos p {
    color: #555555;
    font-size: 1rem;
}

/* Grid dos produtos */
#produtos .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    #produtos .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    #produtos .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Cards */
#produtos .grid > div {
    background-color: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

#produtos .grid > div:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Imagem */
#produtos img {
    width: 100%;
    height: 16rem; /* 256px */
    object-fit: cover;
}

/* Conteúdo do card */
#produtos .p-6 {
    padding: 1rem; /* espaçamento interno de um dedo */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Nome do produto */
#produtos h3 {
    color: #1f1f1f;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Descrição */
#produtos .p-6 p {
    flex-grow: 1;
    color: #555555;
    margin-bottom: 1rem;
}

/* Preço e botão */
#produtos .p-6 .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#produtos .p-6 span {
    color: #f97316; /* laranja */
    font-weight: bold;
    font-size: 1.5rem;
}

#produtos .p-6 button {
    background-color: #f97316; /* laranja */
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#produtos .p-6 button:hover {
    background-color: #ea580c; /* laranja mais escuro no hover */
}

/* Botão do catálogo */
#produtos a.inline-block {
    border: 2px solid #f97316;
    color: #f97316;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

#produtos a.inline-block:hover {
    background-color: #f97316;
    color: #ffffff;
}

/* Container principal da sessão */
#produtos > .max-w-6xl {
    text-align: center !important; /* centraliza títulos, subtítulo e botão */
}

/* Título e subtítulo */
#produtos h2,
#produtos p {
    display: block; /* força cada um em sua própria linha */
    margin-left: auto;
    margin-right: auto;
}

/* Botão do catálogo */
#produtos .mt-12 a {
    display: inline-block; /* botão do tamanho do conteúdo */
    margin: 2rem auto 0 auto; /* margem superior para afastar do grid de produtos */
}

/* Força o texto da CTA a ficar branco e centralizado */
section.bg-amber-600 {
    background-color: #f97316 !important; /* laranja principal */
    color: #ffffff !important; /* força texto branco */
    padding: 5rem 1rem;
    text-align: center !important; /* força centralização */
}

/* Título da CTA */
section.bg-amber-600 h2 {
    color: #ffffff !important; /* título branco */
    font-family: 'Georgia', serif;
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    display: block; /* garante que fique em linha separada */
}

/* Subtítulo da CTA */
section.bg-amber-600 p {
    color: #ffffff !important; /* subtítulo branco */
    font-size: 1.25rem;
    text-align: center !important; /* força centralização */
    margin-bottom: 2rem;
    line-height: 1.6;
    display: block; /* garante linha separada */
}

/* Botão CTA */
section.bg-amber-600 a {
    background-color: #ffffff !important; /* branco */
    color: #f97316 !important; /* laranja do site */
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center !important;
    transition: all 0.3s ease;
    margin-top: 2rem; /* espaçamento do texto acima */
}

section.bg-amber-600 a:hover {
    background-color: #f3f3f3 !important;
    color: #ea580c !important;
}

/* Ícone dentro do botão */
section.bg-amber-600 a i {
    margin-left: 0.5rem;
    display: inline-block;
}

/* Responsividade */
@media (max-width: 768px) {
    section.bg-amber-600 h2 {
        font-size: 1.875rem;
    }
    
    section.bg-amber-600 p {
        font-size: 1.125rem;
    }

    section.bg-amber-600 a {
        padding: 0.65rem 1.5rem;
    }
}

/* Features Section */
.features {
    background-color: #f5f5f5;
    padding: 4rem 1rem;
}

/* Container mais estreito no desktop */
.features-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Desktop: 3 cartões lado a lado */
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card */
.feature-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* Ícone em bolinha */
.feature-icon {
    width: 64px;
    height: 64px;
    background-color: #ffedd5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: #f97316;
}

/* Título */
.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 0.5rem;
}

/* Texto */
.feature-card p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
}


/* Footer */
.footer {
    background-color: #1f1f1f;
    color: #ffffff;
    padding-top: 3rem;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Marca */
.footer-brand h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: #cccccc;
    line-height: 1.6;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f97316;
}

/* Contato */
.footer-contact p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

/* Rodapé inferior */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding: 1.5rem;
    text-align: center;
    color: #aaaaaa;
    font-size: 0.85rem;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
