:root {
    --primary-color: #114443;
    --primary-light: #1a6361;
    --secondary-color: #9bd1a4;
    --secondary-dark: #7ab383;
    --text-color: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #114443 0%, #1a6361 100%);
    --font-family: 'Inter', sans-serif;
    --shadow-premium: 0 15px 30px rgba(0, 0, 0, 0.12);
    --transition-smooth: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: var(--bg-gradient);
    color: var(--text-color);
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow-x: hidden;
    position: relative;
}

/* Elementos de fundo decorativos */
.background-decor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(155, 209, 164, 0.08);
    filter: blur(80px);
}

.circle-1 {
    width: 350px;
    height: 350px;
    top: -80px;
    right: -80px;
}

.circle-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
}

/* WhatsApp Flutuante */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-floating:hover {
    transform: scale(1.05) translateY(-3px);
}

.whatsapp-floating i {
    width: 28px;
    height: 28px;
}

/* Container Principal (Card Branco) */
.container {
    width: 100%;
    max-width: 950px;
    background-color: var(--white);
    border-radius: 32px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    position: relative;
}

.content {
    padding:2.2rem 15px; /* Reduzido de 4rem */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brand-header {
    margin-bottom: 1.5rem;
}

.logo {
    max-width: 160px;
    height: auto;
}

.hero-container {
    margin: 0rem 2.5rem;
}

.hero-image {
    max-width: 540px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.text-content {
    margin-bottom: 2.5rem; /* Reduzido de 3.5rem */
    max-width: 650px;
}

.title {
    font-size: 2.00rem; /* Reduzido de 2.75rem */
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.0rem; /* Reduzido de 1.25rem */
    color: var(--text-light);
    font-weight: 400;
}

/* Informações de Contato */
.contact-info {
    width: 100%;
    border-top: 1.5px solid #f0f2f5;
    padding-top: 2.5rem; /* Reduzido de 3rem */
}

.contact-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.5rem; /* Reduzido de 1.75rem */
    border-radius: 20px;
    background: #f8fafc;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
}

.card-hover:hover {
    background: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(155, 209, 164, 0.12);
}

.icon-wrapper {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.label {
    font-size: 0.65rem; /* Reduzido de 0.75rem */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary-dark);
    margin-bottom: 0.35rem;
}

.details p:not(.label) {
    font-size: 0.875rem; /* Reduzido de 0.95rem */
    color: var(--text-color);
    font-weight: 600;
}

.contact-link {
    display: block;
    font-size: 0.875rem; /* Reduzido de 1rem */
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0.2rem;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--primary-light);
}

.whatsapp-inline {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #16a34a;
}

.badge-ws {
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.65rem;
    padding: 1px 6px;
    border-radius: 8px;
    font-weight: 700;
}

/* Responsividade */
@media (max-width: 900px) {
    .container {
        max-width: 95%;
        border-radius: 24px;
    }
    
    .content {
        padding: 2.5rem 1.5rem;
    }

    .title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-row {
        grid-template-columns: 1fr;
    }

    .hero-image {
        max-width: 280px;
    }

    .title {
        font-size: 1.75rem;
    }

    .whatsapp-floating {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

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

    .content {
        padding: 2rem 1rem;
    }

    .title {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }
}
