/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container principal */
.container {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(255, 210, 63, 0.1) 0%, rgba(255, 255, 255, 1) 50%, rgba(0, 212, 199, 0.1) 100%);
    position: relative;
}

/* Elementos decorativos de fundo */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 3s ease-in-out infinite;
}

.element-1 {
    top: 5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: rgba(255, 140, 66, 0.2);
}

.element-2 {
    top: 33%;
    right: 5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(0, 212, 199, 0.2);
    animation-delay: 1s;
}

.element-3 {
    bottom: 25%;
    left: 25%;
    width: 4rem;
    height: 4rem;
    background: rgba(255, 107, 157, 0.2);
    animation-delay: 2s;
}

.element-4 {
    bottom: 5rem;
    right: 2.5rem;
    width: 6rem;
    height: 6rem;
    background: rgba(155, 93, 229, 0.2);
    animation-delay: 0.5s;
}

/* Conteúdo principal */
.content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    width: 11rem;
    /*height: 6rem;*/
    animation: pulseSlow 2s ease-in-out infinite;
}

/* Ícone principal */
.main-icon-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.main-icon {
    position: relative;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, #FF8C42, #FF6B9D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: float 3s ease-in-out infinite;
}

.wrench-icon {
    width: 4rem;
    height: 4rem;
    color: white;
}

.sparkle {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    color: #FFD23F;
    animation: pulse 2s ease-in-out infinite;
}

.sparkle svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Títulos */
.main-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #00132b;
}

@media (min-width: 768px) {
    .main-title {
        font-size: 4.5rem;
    }
}

.subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 32rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .subtitle {
        font-size: 1.5rem;
    }
}

/* Card de informações */
.info-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(229, 231, 235, 1);
    margin-bottom: 3rem;
    max-width: 32rem;
    width: 100%;
}

@media (min-width: 768px) {
    .info-card {
        padding: 3rem;
    }
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.clock-icon {
    width: 2rem;
    height: 2rem;
    color: #00D4C7;
    margin-right: 0.75rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00132b;
}

.card-description {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Seção de contato */
.contact-section {
    background: linear-gradient(90deg, rgba(0, 212, 199, 0.1), rgba(255, 140, 66, 0.1));
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00132b;
}

.mail-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #00D4C7;
    margin-right: 0.5rem;
}

.contact-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

.contact-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-button-container {
        flex-direction: row;
        justify-content: center;
    }
}

.contact-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #00D4C7, #1d95da);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-button:hover {
    background: linear-gradient(90deg, #1d95da, #00D4C7);
    transform: scale(1.05);
}

.button-mail-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

/* Barra de progresso */
.progress-container {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    background-color: #e5e7eb;
    border-radius: 9999px;
    height: 0.75rem;
    margin-bottom: 1rem;
}

.progress-fill {
    background: linear-gradient(90deg, #FF8C42, #00D4C7, #FF6B9D);
    height: 100%;
    border-radius: 9999px;
    width: 80%;
    animation: pulse 2s ease-in-out infinite;
}

.progress-text {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Footer */
.footer {
    text-align: center;
}

.footer-text {
    color: #6b7280;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-facebook {
    background: linear-gradient(135deg, #FF6B9D, #9B5DE5);
}

.social-twitter {
    background: linear-gradient(135deg, #00D4C7, #FF8C42);
}

.social-linkedin {
    background: linear-gradient(135deg, #FF8C42, #FFD23F);
}

/* Animações */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseSlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsividade */
@media (max-width: 640px) {
    .content {
        padding: 2rem 1rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.125rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
}