* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f9f5f0 0%, #e8f4f8 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    max-width: 1024px;
    width: 100%;
    padding: 70px 50px;
    text-align: center;
    border-top: 8px solid #2d5016;
    border-bottom: 8px solid #c23b22;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    margin-bottom: 50px;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

.brand-name {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #2d5016 0%, #d4a644 50%, #c23b22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 30px 0 25px 0;
    letter-spacing: 3px;
}

.tagline {
    font-size: 26px;
    color: #2d5016;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(212, 166, 68, 0.2);
}

.tagline-icon {
    font-size: 28px;
    margin: 0 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.description {
    font-size: 16px;
    color: #333;
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.9;
    font-weight: 500;
}

.accent-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #2d5016 0%, #d4a644 50%, #c23b22 100%);
    margin: 0 auto 40px auto;
    border-radius: 2px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}

.btn-email {
    background: linear-gradient(135deg, #0072C6 0%, #005b9e 100%);
    color: #f9f5f0;
    border: 2px solid #0072C6;
}

.btn-email:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.35);
    background: linear-gradient(135deg, #005b9e 0%, #0072C6 100%);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #15ab4d 100%);
    color: white;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(194, 59, 34, 0.35);
    background: linear-gradient(135deg, #15ab4d 0%, #25D366 100%);
}

.icon {
    font-size: 22px;
}

.info-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #d4a644;
}

.info-title {
    font-size: 18px;
    color: #2d5016;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-contact {
    font-size: 15px;
    color: #666;
    margin: 8px 0;
    font-weight: 500;
}

.contact-highlight {
    color: #99240e;
    font-weight: 700;
}

.footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    color: #999;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .container {
        padding: 50px 30px;
    }

    .brand-name {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 22px;
    }

    .logos-container {
        gap: 30px;
    }

    .logo {
        max-width: 160px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .cta-buttons {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 40px 20px;
        border-radius: 15px;
    }

    .brand-name {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 18px;
    }

    .tagline-icon {
        font-size: 20px;
    }

    .logos-container {
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        max-width: 140px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .description {
        font-size: 15px;
    }

    .accent-line {
        width: 100px;
        margin: 0 auto 30px auto;
    }
}
