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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #ffffff;
}

.container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}


/* Logo Section */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-mockup {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 
                0 0 0 3px #FFD700,
                0 0 20px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.logo-mockup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}

.tagline {
    color: #cccccc;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Main Content */
.main-content {
    text-align: center;
    width: 100%;
}

.main-title {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    text-align: center;
}

/* Contact Button */
.contact-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.orcamentos-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin: 0;
    text-transform: lowercase;
}

.contact-button {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.contact-button:active {
    transform: translateY(-1px);
}

.button-logo {
    position: relative;
    flex-shrink: 0;
}

.button-logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #000000;
    position: relative;
    z-index: 2;
}

.button-logo-text {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    font-family: 'Segoe UI', sans-serif;
}

.button-logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #FFD700;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1;
    padding: 5px;
}

.ring-text {
    font-size: 9px;
    color: #FFD700;
    font-weight: bold;
    text-transform: uppercase;
}

.ring-star {
    font-size: 10px;
    color: #FFD700;
}

.button-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.button-label {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button-phone {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 480px) {
    .logo-mockup {
        width: 200px;
        height: 200px;
        padding: 6px;
    }

    .main-title {
        font-size: 18px;
    }

    .orcamentos-text {
        font-size: 16px;
    }

    .contact-button {
        padding: 15px;
        gap: 15px;
    }

    .button-logo-circle {
        width: 60px;
        height: 60px;
    }

    .button-logo-text {
        font-size: 12px;
    }

    .button-logo-ring {
        width: 80px;
        height: 80px;
    }

    .ring-text {
        font-size: 8px;
    }

    .button-label {
        font-size: 12px;
    }

    .button-phone {
        font-size: 16px;
    }
}

