/* Modern CSS Reset & Variable Definitions */
:root {
    --bg-main: radial-gradient(circle at 50% 0%, #1E140A 0%, #000000 100%);
    --color-text-dark: #FFFFFF;
    --color-text-muted: #A69C91;
    --card-bg: rgba(18, 18, 18, 0.75);
    --card-border: rgba(255, 136, 0, 0.15);
    --card-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    --btn-gradient-start: #FF3C1A; /* Quente (Laranja-avermelhado) */
    --btn-gradient-mid: #FF8800;   /* Laranja */
    --btn-gradient-end: #FFD400;   /* Amarelo */
    --btn-shadow: 0 8px 24px rgba(255, 94, 26, 0.22);
    --btn-shadow-hover: 0 12px 32px rgba(255, 94, 26, 0.38);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    min-height: 100vh;
    background: #000000;
    background: var(--bg-main);
    font-family: 'Outfit', sans-serif;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}

/* Subtle Warm Glow in Background */
body::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 94, 26, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* Main Container card */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 32px;
    padding: 40px 28px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

/* Header & Logo styling */
.header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
}

.logo-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.logo {
    width: 220px;
    max-width: 85%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(43, 29, 14, 0.05));
    transition: transform 0.5s ease;
}

/* Micro-interaction on logo hover */
.container:hover .logo {
    transform: scale(1.03);
}

.tagline {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.tagline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--btn-gradient-start), var(--btn-gradient-end));
    border-radius: 2px;
}

/* Buttons List */
.buttons-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

/* Link Button Core Styling */
.link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    border-radius: 18px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 0 1px 3px rgba(43, 29, 14, 0.25);
    background: linear-gradient(135deg, var(--btn-gradient-start) 0%, var(--btn-gradient-mid) 50%, var(--btn-gradient-end) 100%);
    background-size: 200% auto;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: var(--btn-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: float 6s ease-in-out infinite;
}

.link-btn:nth-child(1) { animation-delay: 0s; }
.link-btn:nth-child(2) { animation-delay: 0.4s; }
.link-btn:nth-child(3) { animation-delay: 0.8s; }
.link-btn:nth-child(4) { animation-delay: 1.2s; }
.link-btn:nth-child(5) { animation-delay: 1.6s; }

.btn-content-left {
    display: flex;
    align-items: center;
}

/* Beautiful Icon Badges */
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin-right: 14px;
    font-size: 17px;
    color: #FFFFFF;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.btn-text {
    text-align: left;
    line-height: 1.3;
}

/* Custom Waze Icon Path Styling */
.waze-icon-svg {
    margin-top: 1px;
}

.btn-chevron {
    font-size: 11px;
    color: #FFFFFF;
    opacity: 0.5;
    transition: var(--transition-smooth);
    margin-left: 10px;
}

/* Button Hover State */
.link-btn:hover {
    animation: none;
    background-position: right center;
    transform: translateY(-8px);
    box-shadow: var(--btn-shadow-hover);
    border-color: rgba(255, 255, 255, 0.4);
}

.link-btn:hover .btn-icon {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.link-btn:hover .btn-chevron {
    opacity: 0.9;
    transform: translateX(4px);
}

/* Button Active / Tap State */
.link-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 94, 26, 0.25);
}

/* Secondary Buttons Style (Bottom 3: Site, Google, Waze) */
#btn-site, #btn-google, #btn-waze {
    background: linear-gradient(135deg, #FFB703 0%, #FFD000 50%, #FFE485 100%);
    background-size: 200% auto;
    color: #2B1D0E;
    text-shadow: none;
    box-shadow: 0 8px 24px rgba(255, 183, 3, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

#btn-site .btn-icon, #btn-google .btn-icon, #btn-waze .btn-icon {
    color: #2B1D0E;
    background: rgba(43, 29, 14, 0.08);
}

#btn-site .btn-chevron, #btn-google .btn-chevron, #btn-waze .btn-chevron {
    color: #2B1D0E;
}

#btn-site:hover, #btn-google:hover, #btn-waze:hover {
    box-shadow: 0 12px 32px rgba(255, 183, 3, 0.3);
}

#btn-site:hover .btn-icon, #btn-google:hover .btn-icon, #btn-waze:hover .btn-icon {
    background: rgba(43, 29, 14, 0.14);
}

/* Liquid Shimmer Reflection Effect */
.link-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.25), 
        transparent
    );
    transition: 0.5s;
    pointer-events: none;
}

.link-btn:hover::after {
    left: 100%;
    transition: 0.6s ease;
}

/* Footer Section */
.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(223, 212, 197, 0.4);
    padding-top: 24px;
}

/* Social Media Icon Circles */
.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-text-muted);
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.15);
}

.copyright {
    font-size: 11px;
    color: var(--color-text-muted);
    text-align: center;
    letter-spacing: 0.3px;
}

/* Floating Animation Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Mobile & Small Screens Optimization */
@media (max-width: 480px) {
    body {
        padding: 16px 10px;
    }
    
    .container {
        padding: 35px 16px 25px 16px;
        border-radius: 24px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    }
    
    .logo {
        width: 180px;
    }
    
    .tagline {
        font-size: 12.5px;
        letter-spacing: 1px;
    }
    
    .buttons-list {
        gap: 12px;
    }
    
    .link-btn {
        padding: 14px 14px;
        font-size: 12px;
        border-radius: 14px;
    }
    
    .btn-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-right: 10px;
        border-radius: 10px;
    }
    
    .footer {
        padding-top: 20px;
        gap: 12px;
    }
    
    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

/* Extra Small Screens (e.g. iPhone SE / 320px width) */
@media (max-width: 360px) {
    .logo {
        width: 150px;
    }
    
    .tagline {
        font-size: 11.5px;
    }
    
    .link-btn {
        padding: 12px 10px;
        font-size: 11px;
    }
    
    .btn-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        margin-right: 6px;
        border-radius: 8px;
    }
    
    .btn-chevron {
        font-size: 9px;
        margin-left: 4px;
    }
}
