/* Reset e Variáveis Globais */
:root {
    --color-black: #050505;
    --color-dark-grey: #121212;
    --color-medium-grey: #1e1e1e;
    --color-gold: #D4AF37;
    --color-gold-hover: #e6c555;
    --color-text-light: #f5f5f5;
    --color-text-muted: #a0a0a0;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: 0.3s ease-in-out;
}

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

body {
    background-color: var(--color-black);
    color: var(--color-text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #fff;
}

/* Tipografia e Utilidades */
.highlight {
    color: var(--color-gold);
}

.divider {
    height: 2px;
    width: 60px;
    background-color: var(--color-gold);
    margin: 20px auto;
}
.divider.left {
    margin: 20px 0;
}

.mt-4 { margin-top: 2rem; }

/* Botões */
button {
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary.large {
    font-size: 1.1rem;
    padding: 20px 40px;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 10px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Header */
.header {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gold);
}

.logo-icon {
    font-size: 1.8rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-image: url('images/hero-bg.jpg'); /* Adicionaremos imagem depois */
    background-size: cover;
    background-position: center;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.6), rgba(5,5,5,0.95));
    z-index: 1;
}

/* Camada escura que vai clareando */
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #050505;
    z-index: 1;
    animation: fadeNight 3s ease-in-out forwards;
    pointer-events: none;
}

/* Luz do sol dourada que surge ao fundo */
.hero::before {
    content: '';
    position: absolute;
    top: -10%; right: -10%;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.35) 0%, transparent 50%);
    z-index: 2;
    opacity: 0;
    animation: sunrise 4s ease-in-out 1s forwards;
    pointer-events: none;
}

@keyframes fadeNight {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes sunrise {
    0% { opacity: 0; transform: scale(0.9) translateY(30px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-content-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold);
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.hero-trust {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    flex-wrap: wrap;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Serviços */
.services {
    padding: 100px 0;
    background-color: var(--color-dark-grey);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title p {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--color-medium-grey);
    padding: 40px 30px;
    border-radius: 4px;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.service-card:hover {
    border-bottom-color: var(--color-gold);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Diferenciais */
.features {
    padding: 100px 0;
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-text h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 24px;
}

.feature-list strong {
    display: block;
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.feature-list span {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.features-image img {
    width: 100%;
    border-radius: 4px;
    display: block;
}

.border-gold {
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background-color: var(--color-dark-grey);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cta-content {
    text-align: center;
    max-width: 700px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    background-color: var(--color-black);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.footer-copy {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .features-container {
        grid-template-columns: 1fr;
    }
    .features-image {
        order: -1; /* Imagem primeiro no mobile */
    }
}

@media (max-width: 768px) {
    .hero-content-inner { margin-top: 80px; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .header-content .btn-outline { display: none; }
    .hero-trust { flex-direction: column; gap: 10px; }
}

/* WhatsApp Float Button */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-green 2s infinite;
    transition: transform 0.3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.float-whatsapp svg {
    width: 35px;
    height: 35px;
}

.float-whatsapp:hover {
    transform: scale(1.1) translateZ(0);
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsividade adicional para o botão do WhatsApp */
@media (max-width: 768px) {
    .float-whatsapp {
        bottom: 30px;
        right: 40px; /* Movido mais para a esquerda */
        width: 55px;
        height: 55px;
    }
    .float-whatsapp svg {
        width: 32px;
        height: 32px;
    }
}
