/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3f2fd 50%, #f5f7fa 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
}

.container {
    max-width: 900px;
    width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Seção do Logo */
.logo-section {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Conteúdo Principal */
.content {
    padding: 50px 40px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    color: #1565c0;
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Botão WhatsApp Principal */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-bottom: 50px;
}

.whatsapp-button:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

/* Informações de Contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: default;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Estilos específicos para cada tipo de cartão */
.whatsapp-card {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 1px solid #a5d6a7;
}

.address-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 1px solid #90caf9;
}

.instagram-card {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
    border: 1px solid #f48fb1;
    cursor: pointer;
}

.phone-card {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border: 1px solid #bdbdbd;
}

/* Ícones dos Cartões */
.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.whatsapp-icon {
    background: #25d366;
}

.address-icon {
    background: #1976d2;
}

.instagram-icon {
    background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
}

.phone-icon {
    background: #616161;
}

/* Detalhes do Contato */
.contact-details {
    text-align: left;
    flex: 1;
}

.contact-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-value {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

/* Rodapé */
.footer {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    padding: 25px;
    text-align: center;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .logo-section {
        padding: 40px 20px;
    }

    .logo {
        max-width: 300px;
    }

    .content {
        padding: 40px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .whatsapp-button {
        font-size: 1rem;
        padding: 15px 25px;
    }

    .contact-card {
        padding: 20px;
    }

    .icon-circle {
        width: 45px;
        height: 45px;
    }

    .icon-circle svg {
        width: 20px;
        height: 20px;
    }

    .contact-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        border-radius: 15px;
    }

    .logo-section {
        padding: 30px 15px;
    }

    .logo {
        max-width: 250px;
    }

    .content {
        padding: 30px 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .whatsapp-button {
        font-size: 0.95rem;
        padding: 14px 20px;
        margin-bottom: 40px;
    }

    .contact-card {
        padding: 18px;
        gap: 15px;
    }

    .icon-circle {
        width: 40px;
        height: 40px;
    }

    .contact-label {
        font-size: 0.85rem;
    }

    .contact-value {
        font-size: 0.95rem;
    }
}

