/* ===== RESET E CONFIGURAÇÕES GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores dourada e luxo */
    --color-gold: #C9A961;
    --color-gold-dark: #A68844;
    --color-gold-light: #E8D4A0;
    --color-dark: #1a1a1a;
    --color-dark-hover: #2d2d2d;
    --color-cream: #FAF8F3;
    --color-white: #FFFFFF;
    --color-text-light: #F5F5F5;
    
    /* Tipografia */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;
    
    /* Espaçamentos */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-cream);
    color: var(--color-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== HEADER COM LOGO ===== */
.header {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    padding: var(--spacing-xl) var(--spacing-md);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.logo-container {
    max-width: 280px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* ===== CONTEÚDO PRINCIPAL ===== */
.main-content {
    max-width: 440px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

/* ===== CONTAINER DE BOTÕES ===== */
.buttons-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
}

/* ===== BOTÕES DE CONTATO ===== */
.contact-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md) var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    color: var(--color-dark);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.2);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.3px;
    min-height: 100px;
}

.contact-button:hover {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.35);
}

.contact-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.button-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    color: var(--color-dark);
    flex-shrink: 0;
    opacity: 0.8;
}

.button-text {
    text-align: center;
    line-height: 1.4;
}

/* Efeitos hover específicos por botão */
.contact-button.whatsapp:hover {
    background: linear-gradient(135deg, #25D366 0%, #1ebe5d 100%);
    color: var(--color-white);
}

.contact-button.whatsapp:hover .button-icon {
    color: var(--color-white);
}

.contact-button.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--color-white);
}

.contact-button.instagram:hover .button-icon {
    color: var(--color-white);
}

.contact-button.catalog:hover {
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, #8B6F3E 100%);
    color: var(--color-white);
}

.contact-button.catalog:hover .button-icon {
    color: var(--color-white);
}

.contact-button.phone:hover {
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, #8B6F3E 100%);
    color: var(--color-white);
}

.contact-button.phone:hover .button-icon {
    color: var(--color-white);
}

/* ===== SEÇÃO DE ENDEREÇO ===== */
.address-section {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm) 0;
}

.address-title {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-gold-dark);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
}

.address-text {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

.navigate-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 10px 20px;
    width: 100%;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(201, 169, 97, 0.3);
    margin-bottom: var(--spacing-xs);
}

.navigate-button:hover {
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, #8B6F3E 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

.navigate-button:active {
    transform: translateY(0);
}

.navigate-icon {
    width: 16px;
    height: 16px;
}

/* ===== SEÇÃO DO MAPA ===== */
.map-section {
    margin-top: var(--spacing-lg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.map-iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #fff; /* Changed text color to white */
    padding: 1rem 0;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 480px) {
    .header {
        padding: var(--spacing-lg) var(--spacing-sm);
        min-height: 160px;
    }
    
    .logo-container {
        max-width: 220px;
    }
    
    .main-content {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .buttons-container {
        gap: 10px;
    }
    
    .contact-button {
        padding: var(--spacing-sm);
        font-size: 12px;
        min-height: 90px;
    }
    
    .button-icon {
        width: 28px;
        height: 28px;
    }
    
    .button-text {
        font-size: 12px;
    }
    
    .address-text {
        font-size: 13px;
    }
    
    .navigate-button {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .map-iframe {
        height: 300px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .main-content {
        max-width: 480px;
    }
    
    .contact-button {
        font-size: 14px;
        min-height: 110px;
    }
    
    .map-iframe {
        height: 380px;
    }
}

@media (min-width: 769px) {
    .header {
        min-height: 240px;
    }
    
    .logo-container {
        max-width: 320px;
    }
    
    .contact-button {
        font-size: 14px;
        padding: var(--spacing-md);
        min-height: 120px;
    }
    
    .map-iframe {
        height: 400px;
    }
}

/* ===== ANIMAÇÕES SUTIS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-button {
    animation: fadeIn 0.5s ease forwards;
}

.contact-button:nth-child(1) { animation-delay: 0.1s; }
.contact-button:nth-child(2) { animation-delay: 0.2s; }
.contact-button:nth-child(3) { animation-delay: 0.3s; }
.contact-button:nth-child(4) { animation-delay: 0.4s; }

/* ===== ACESSIBILIDADE ===== */
.contact-button:focus {
    outline: 3px solid var(--color-gold);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
