@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');


/* Variáveis CSS com o esquema de cores fornecido */
:root {
    --custom-primary: #0488C8;
    --custom-secondary: #475467;
    --custom-accent: #115D8F;
    --custom-dark: #0D74AE;
    --custom-darker: #1A2A3A;
    --custom-success: #10b981;
}

/* Classes utilitárias com o esquema de cores */
.bg-custom-primary {
    background-color: var(--custom-primary);
}

.text-custom-primary {
    color: var(--custom-primary);
}

.border-custom-primary {
    border-color: var(--custom-primary);
}

.bg-custom-secondary {
    background-color: var(--custom-secondary);
}

.text-custom-secondary {
    color: var(--custom-secondary);
}

.border-custom-secondary {
    border-color: var(--custom-secondary);
}

.bg-custom-accent {
    background-color: var(--custom-accent);
}

.text-custom-accent {
    color: var(--custom-accent);
}

.border-custom-accent {
    border-color: var(--custom-accent);
}

.bg-custom-dark {
    background-color: var(--custom-dark);
}

.text-custom-dark {
    color: var(--custom-dark);
}

.border-custom-dark {
    border-color: var(--custom-dark);
}

.bg-custom-darker {
    background-color: var(--custom-darker);
}

.text-custom-darker {
    color: var(--custom-darker);
}

.border-custom-darker {
    border-color: var(--custom-darker);
}

.bg-custom-success {
    background-color: var(--custom-success);
}

.text-custom-success {
    color: var(--custom-success);
}

.border-custom-success {
    border-color: var(--custom-success);
}

/* Estilos gerais */
body {
    box-sizing: border-box;

    padding-top: 96px;
}

section {
    scroll-margin-top: 96px;
}


* {
    font-family: 'Inter', sans-serif;
}

.font-display {
    font-family: 'Space Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Texto com gradiente usando o esquema de cores */
.gradient-text {
    background: linear-gradient(135deg, var(--custom-primary) 0%, var(--custom-accent) 50%, var(--custom-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Cards com hover */
.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
}

/* Links de navegação */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--custom-primary), var(--custom-accent));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Animação de blob */
.blob {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blob 8s ease-in-out infinite;
}

@keyframes blob {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

/* Ícones de serviços */
.service-icon {
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Cards de depoimentos */
.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

/* Cards de projetos */
.project-card {
    overflow: hidden;
}

.project-card img {
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

/* Animação flutuante */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Estilos específicos para formulário */
input:focus,
select:focus,
textarea:focus {
    border-color: var(--custom-primary) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(4, 136, 200, 0.1);
}

/* Botões com gradiente do esquema de cores */
.btn-gradient {
    background: linear-gradient(135deg, var(--custom-primary) 0%, var(--custom-accent) 100%);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(4, 136, 200, 0.3);
}

/* Badges com cores do esquema */
.badge-primary {
    background-color: rgba(4, 136, 200, 0.1);
    color: var(--custom-primary);
}

.badge-secondary {
    background-color: rgba(71, 84, 103, 0.1);
    color: var(--custom-secondary);
}

.badge-accent {
    background-color: rgba(17, 93, 143, 0.1);
    color: var(--custom-accent);
}

/* Estilos responsivos adicionais */
@media (max-width: 768px) {
    .font-display {
        font-size: 2.5rem !important;
    }

    .gradient-text {
        font-size: 2.5rem !important;
    }
}

/* Animações de entrada suave */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}