/* ==========================================================================
   LOJA VESTE BRASIL - LINK NA BIO (MOBILE-FIRST)
   Identidade: Verde da Logo (#005C2B), Amarelo Fachada (#F5B300) e Branco
   ========================================================================== */

:root {
    /* Brand Colors */
    --brand-green-dark: #004620;
    --brand-green: #005C2B;
    --brand-green-light: #007838;
    --brand-green-subtle: #eaf6ef;
    
    --brand-yellow: #f5b300;
    --brand-yellow-dark: #d99b00;
    --brand-yellow-subtle: #fff8e1;

    --brand-white: #ffffff;
    --text-dark: #122018;
    --text-muted: #53645c;
    
    /* Instagram Colors */
    --ig-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    
    /* Layout & Shadows */
    --radius-xl: 22px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-full: 9999px;
    
    --shadow-card: 0 16px 40px rgba(0, 30, 14, 0.4);
    --shadow-btn-wa: 0 8px 20px rgba(0, 92, 43, 0.35);
    --shadow-btn-ig: 0 6px 18px rgba(220, 39, 67, 0.18);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 12px;
    position: relative;
    background-color: #0b1a11;
}

/* ==========================================================================
   Background Fachada (Visível e Equilibrado)
   ========================================================================== */
.bg-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center top;
    z-index: -2;
}

.bg-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(
        180deg, 
        rgba(0, 45, 20, 0.5) 0%, 
        rgba(8, 24, 15, 0.78) 55%, 
        rgba(4, 14, 9, 0.95) 100%
    );
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: -1;
}

/* ==========================================================================
   Card Principal (Mobile First)
   ========================================================================== */
.main-card {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    padding: 24px 18px 18px 18px;
    box-shadow: var(--shadow-card);
    border: 2px solid rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Header Profile
   ========================================================================== */
.header-profile {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-container {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    padding: 3.5px;
    background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-green) 100%);
    box-shadow: 0 6px 18px rgba(0, 92, 43, 0.25);
    margin-bottom: 12px;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background-color: var(--brand-green);
    border: 2.5px solid #ffffff;
    display: block;
}

.title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--brand-green-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 6px;
}

.subtitle {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
    max-width: 320px;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-yellow-subtle);
    color: var(--brand-yellow-dark);
    border: 1px solid rgba(245, 179, 0, 0.35);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 12.5px;
    font-weight: 700;
}

.delivery-badge i {
    width: 15px;
    height: 15px;
}

/* ==========================================================================
   Ações: WhatsApp & Instagram (UI/UX Refinado)
   ========================================================================== */
.action-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: pointer;
}

.action-btn:active {
    transform: scale(0.98);
}

/* Icon Containers */
.icon-box {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.action-btn:hover .icon-box {
    transform: scale(1.06);
}

.svg-icon {
    width: 24px;
    height: 24px;
}

/* Botão WhatsApp */
.btn-whatsapp {
    background: linear-gradient(135deg, var(--brand-green-dark) 0%, var(--brand-green) 100%);
    color: #ffffff;
    box-shadow: var(--shadow-btn-wa);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 92, 43, 0.5);
    background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%);
}

.icon-whatsapp {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-whatsapp .main-label {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
}

.btn-whatsapp .sub-label {
    font-size: 12.5px;
    color: var(--brand-yellow);
    font-weight: 600;
}

.btn-whatsapp .arrow-icon {
    color: rgba(255, 255, 255, 0.7);
}

/* Botão Instagram */
.btn-instagram {
    background: #ffffff;
    color: var(--text-dark);
    box-shadow: var(--shadow-btn-ig);
    border: 1.5px solid rgba(220, 39, 67, 0.25);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(220, 39, 67, 0.25);
    border-color: rgba(220, 39, 67, 0.5);
    background: #fffafa;
}

.icon-instagram {
    background: var(--ig-gradient);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
}

.btn-instagram .main-label {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #1a1a1a;
}

.btn-instagram .sub-label {
    font-size: 12.5px;
    color: #d6249f;
    font-weight: 700;
}

.btn-instagram .arrow-icon {
    color: #cbd5e1;
}

.action-btn-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.action-btn:hover .arrow-icon {
    transform: translateX(3px);
}

/* ==========================================================================
   Localização Embed Google Maps
   ========================================================================== */
.location-section {
    background: #f8faf9;
    border-radius: var(--radius-lg);
    padding: 14px;
    border: 1px solid #e5ede8;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pin-box {
    width: 34px;
    height: 34px;
    background: var(--brand-green-subtle);
    color: var(--brand-green);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pin-box i {
    width: 18px;
    height: 18px;
}

.address-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 13px;
}

.address-text strong {
    color: var(--brand-green-dark);
    font-weight: 700;
}

.address-text span {
    color: var(--text-muted);
    font-size: 12px;
}

.map-wrapper {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid #d9e4dd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 180px;
}

.btn-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--brand-green-subtle);
    color: var(--brand-green-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 10px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 92, 43, 0.2);
    transition: background 0.2s, color 0.2s;
}

.btn-route:hover {
    background: var(--brand-green);
    color: #ffffff;
}

.btn-route i {
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    text-align: center;
    font-size: 11.5px;
    color: var(--text-muted);
    padding-top: 2px;
}

/* ==========================================================================
   Ajustes para Telas Pequenas
   ========================================================================== */
@media (max-width: 360px) {
    .main-card {
        padding: 18px 14px;
    }

    .title {
        font-size: 21px;
    }

    .avatar-container {
        width: 84px;
        height: 84px;
    }

    .map-wrapper iframe {
        height: 150px;
    }
}
