* {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

body {
    background-color: #f8fafc;
    color: #1e293b;
}

.logo {
    width: 120px; /* Tamanho reduzido para desktop */
    height: auto; /* Mantém a proporção */
    max-width: 100%; /* Evita ultrapassar o contêiner */
    transition: all 0.3s ease; /* Transição suave */
}

.btn-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite ease-in-out;
    z-index: 999;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp-header {
    background-color: #25d366; /* Cor do WhatsApp */
    color: white;
    padding: 0.5rem 1.5rem; /* Ajustado para combinar com o botão do telefone */
    border-radius: 9999px; /* Bordas arredondadas */
    font-size: 0.875rem; /* Mesmo tamanho de fonte do botão do telefone */
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-whatsapp-header:hover {
    background-color: #1ebe57; /* Cor ao passar o mouse */
    transform: scale(1.05);
}

.btn-whatsapp-header i {
    margin-right: 0.5rem; /* Espaço entre ícone e texto */
    font-size: 1rem; /* Tamanho do ícone */
}

.btn-phone {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 55px;
    height: 55px;
    background-color: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.btn-phone:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6);
}

.hero-gradient {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.card-shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

.card-shadow:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 4rem;
    line-height: 1.9;
    font-weight: 400;
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #475569;
}

.text-xl-custom {
    font-size: 1.5rem;
    line-height: 2;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    border-left: 5px solid #10b981;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.nav-link {
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: #10b981;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #10b981;
}

.faq-answer {
    display: none;
    margin-top: 1rem;
    color: #64748b;
    line-height: 1.8;
}

.faq-answer.active {
    display: block;
}

.star {
    color: #fbbf24;
    font-size: 1.2rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #f8fafc;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    border-top: 2px solid #10b981;
}

.cookie-banner.active {
    display: block;
}

.cookie-banner p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cookie-banner a {
    color: #10b981;
    text-decoration: underline;
}

.cookie-banner a:hover {
    color: #059669;
}

.cookie-banner .btn-accept {
    background-color: #10b981;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cookie-banner .btn-accept:hover {
    background-color: #059669;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Media queries */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    .section-subtitle {
        font-size: 1.25rem;
    }
    .text-large {
        font-size: 1.125rem;
    }
    .btn-whatsapp {
        right: 10px;
        bottom: 10px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .btn-phone {
        left: 10px;
        bottom: 10px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .btn-whatsapp-header {
        padding: 0.5rem 1.25rem; /* Ajuste de padding para mobile */
        font-size: 0.8rem; /* Fonte menor */
    }
    .btn-whatsapp-header i {
        font-size: 0.9rem; /* Ícone menor */
    }
}

@media (max-width: 640px) {
    .logo {
        width: 150px; /* Tamanho ajustado para mobile */
    }
    #home h1 {
        font-size: 2.25rem;
    }
    #home p {
        font-size: 1.25rem;
    }
    .cookie-banner {
        padding: 1rem;
    }
    .cookie-banner p {
        font-size: 0.9rem;
    }
    .cookie-banner .btn-accept {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .logo {
        width: 100px; /* Tamanho para telas muito pequenas */
    }
    .btn-whatsapp-header {
        padding: 0.4rem 1rem; /* Padding ainda menor */
        font-size: 0.75rem; /* Fonte menor */
    }
    .btn-whatsapp-header i {
        font-size: 0.8rem; /* Ícone menor */
    }
}