/* ==========================================================================
   eDrive Automóveis - Linktree Premium CSS
   Background: #0f2c59
   ========================================================================== */

/* Reset de estilos básicos */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: radial-gradient(circle at 50% 0%, #15376a 0%, #071730 100%);
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 20px 40px 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container central */
.container {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.8s ease-out;
}

/* Animação de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cabeçalho */
.header {
    text-align: center;
    margin-bottom: 25px;
    width: 100%;
}

.logo-wrapper {
    display: inline-block;
    max-width: 160px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.logo-wrapper:hover {
    transform: scale(1.03);
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

.subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Redes Sociais */
.social-links {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
    justify-content: center;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    transition: stroke 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.06);
    background: #ffffff;
    border-color: #ffffff;
    color: #0f2c59;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Card Especial: Nosso Estoque */
.featured-card {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 25px;
    text-decoration: none;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 175px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image {
    width: 70%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-content {
    padding: 18px 20px;
}

.featured-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}

.featured-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    line-height: 1.4;
}

.featured-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.featured-card:hover .card-image {
    transform: scale(1.04);
}

/* Botões de Links */
.links-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.link-btn .btn-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    stroke: currentColor;
    flex-shrink: 0;
}

.link-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Destaque Principal: WhatsApp (Fale com um Vendedor) */
.link-btn.highlight {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(18, 140, 116, 0.12) 100%);
    border-color: rgba(37, 211, 102, 0.35);
}

.link-btn.highlight:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.22) 0%, rgba(18, 140, 116, 0.22) 100%);
    border-color: rgba(37, 211, 102, 0.65);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
     color: aquamarine !important;
}

/* Rodapé */
.footer {
    width: 100%;
    margin-top: 40px;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.address {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
    font-style: normal;
    font-weight: 300;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

/* Responsividade adicional para telas minúsculas */
@media (max-width: 360px) {
    body {
        padding: 30px 15px 25px 15px;
    }

    .featured-card .card-image-wrapper {
        height: 150px;
    }

    .link-btn {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
}