/**
 * ESTILO DO TEMPLATE PADRÃO - INSPIRADO EM ROSSINELI SEMIJOIAS
 * Design: One-Page Profissional e Moderno
 */

/* ========================================
   RESET E CONFIGURAÇÕES GERAIS
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cor-primaria: #007bff;
    --cor-secundaria: #6c757d;
    --cor-texto: #333333;
    --cor-fundo: #ffffff;
    --fonte-principal: 'Poppins', sans-serif;
}

body {
    font-family: var(--fonte-principal);
    color: var(--cor-texto);
    background: var(--cor-fundo);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.btn-hero {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero-primary {
    background: var(--cor-primaria);
    color: white;
    border-color: var(--cor-primaria);
}

.btn-hero-primary:hover {
    background: white;
    color: var(--cor-primaria);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--cor-primaria);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* ========================================
   VANTAGENS SECTION
   ======================================== */

.vantagens-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--cor-primaria);
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vantagem-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.vantagem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.vantagem-icon {
    font-size: 3rem;
    color: var(--cor-primaria);
    margin-bottom: 20px;
}

.vantagem-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--cor-texto);
}

.vantagem-card p {
    color: #666;
    line-height: 1.6;
}

/* ========================================
   SOBRE SECTION
   ======================================== */

.sobre-section {
    padding: 80px 20px;
    background: white;
}

.sobre-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sobre-content h2 {
    font-size: 2.5rem;
    color: var(--cor-primaria);
    margin-bottom: 30px;
}

.sobre-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.missao-box {
    background: linear-gradient(135deg, var(--cor-primaria), #0056b3);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.missao-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* ========================================
   PRODUTOS SECTION
   ======================================== */

.produtos-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.produto-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.produto-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.produto-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.produto-info {
    padding: 20px;
    text-align: center;
}

.produto-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--cor-texto);
}

.produto-info p {
    color: #666;
}

/* ========================================
   DEPOIMENTOS SECTION
   ======================================== */

.depoimentos-section {
    padding: 80px 20px;
    background: white;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.depoimento-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--cor-primaria);
    transition: all 0.3s ease;
}

.depoimento-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.depoimento-texto {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 15px;
}

.depoimento-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.depoimento-info strong {
    display: block;
    color: var(--cor-texto);
    font-size: 1.1rem;
}

.depoimento-info span {
    color: #999;
    font-size: 0.9rem;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    background: white;
    color: #667eea;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--cor-primaria);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

/* ========================================
   CONTATO SECTION
   ======================================== */

.contato-section {
    padding: 80px 20px;
    background: white;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contato-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contato-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contato-icon {
    font-size: 2.5rem;
    color: var(--cor-primaria);
    margin-bottom: 15px;
}

.contato-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--cor-texto);
}

.contato-item p {
    color: #666;
}

.redes-sociais {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-icon {
    font-size: 2rem;
    color: var(--cor-primaria);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #0056b3;
}

/* ========================================
   RODAPÉ
   ======================================== */

footer {
    background: #2c3e50;
    color: white;
    padding: 60px 20px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #bbb;
}

.footer-bottom p {
    margin: 10px 0;
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* ========================================
   UTILITÁRIOS
   ======================================== */

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}

