/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Animações */
@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes menuItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #1B2B4B;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(27, 43, 75, 0.1);
    border-bottom: 1px solid rgba(182, 140, 90, 0.2);
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: clamp(15px, 3vw, 20px) 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    box-shadow: 0 12px 40px rgba(27, 43, 75, 0.15);
    border-bottom: 1px solid rgba(182, 140, 90, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(10px, 2vw, 20px); /* Reduzido ainda mais */
}

.logo {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.2vw, 10px); /* Reduzido ainda mais */
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 1;
    transform: none;
}

.logo:hover {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 8px 20px rgba(182, 140, 90, 0.3));
}

.logo-img {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(182, 140, 90, 0.2);
}

.logo span {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #1B2B4B, #B68C5A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: clamp(10px, 2vw, 20px); /* Reduzido ainda mais */
    align-items: center;
}

.nav ul li {
    opacity: 1;
    transform: none;
    transition: all 0.3s ease;
    list-style: none;
}

.nav a {
    text-decoration: none;
    color: #1B2B4B;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
    padding: clamp(4px, 1vw, 8px) clamp(8px, 2vw, 12px); /* Reduzido ainda mais */
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}

.nav a:hover {
    color: #B68C5A;
    background: rgba(182, 140, 90, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(182, 140, 90, 0.2);
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #B68C5A;
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav a:hover::before {
    width: 100%;
}



/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('fotos/Hero.png') center center / cover no-repeat;
    overflow: hidden;
    padding-top: 120px; /* Adiciona espaço para o header fixo */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(27, 43, 75, 0.85) 0%,
        rgba(27, 43, 75, 0.8) 50%,
        rgba(27, 43, 75, 0.75) 100%
    );
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    min-height: calc(100vh - 120px); /* Ajusta altura considerando o padding-top */
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 2vw, 15px); /* Reduzido o gap entre elementos */
    max-width: 800px;
    margin-bottom: clamp(20px, 3vw, 30px); /* Reduzido margin-bottom */
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 3.5rem); /* Reduzido o tamanho da fonte */
    font-weight: 800;
    margin-bottom: clamp(6px, 1.5vw, 10px); /* Reduzido margin-bottom */
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 1s ease-out;
    line-height: 1.1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.7));
}

.hero-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.1rem, 2.8vw, 1.6rem); /* Reduzido o tamanho da fonte */
    font-weight: 600;
    margin-bottom: clamp(8px, 2vw, 12px); /* Reduzido margin-bottom */
    color: #f8f9fa;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.2;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.8));
}

.hero-text p {
    font-size: clamp(0.95rem, 2.3vw, 1.2rem); /* Reduzido o tamanho da fonte */
    margin-bottom: clamp(12px, 2.5vw, 20px); /* Reduzido margin-bottom */
    color: #e9ecef;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 1px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.3; /* Reduzido line-height */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #B68C5A, #8B6B3A);
    color: white;
    padding: clamp(12px, 2.5vw, 16px) clamp(25px, 4vw, 35px);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(182, 140, 90, 0.3);
    border: none;
    cursor: pointer;
    animation: fadeInUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
    margin-top: 5px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(182, 140, 90, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #1B2B4B;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1B2B4B, #B68C5A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #6C757D;
    font-weight: 400;
}

/* Serviços Section */
.servicos {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
    z-index: 1;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(25px, 4vw, 40px);
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.servico-card {
    background: white;
    padding: clamp(30px, 5vw, 40px) clamp(20px, 4vw, 30px);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(27, 43, 75, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B68C5A, #8B6B3A);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.servico-card:hover::before {
    transform: scaleX(1);
}

.servico-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(27, 43, 75, 0.15);
}

.servico-icon {
    width: clamp(70px, 12vw, 80px);
    height: clamp(70px, 12vw, 80px);
    background: linear-gradient(135deg, #B68C5A, #8B6B3A);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: clamp(28px, 5vw, 32px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.servico-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8B6B3A, #B68C5A);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.servico-card:hover .servico-icon::before {
    opacity: 1;
}

.servico-card:hover .servico-icon {
    transform: scale(1.1) rotate(5deg);
}

.servico-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #1B2B4B;
    margin-bottom: 20px;
    text-align: center;
}

.servico-card p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.7;
    color: #6C757D;
    text-align: center;
}

/* Sobre Section */
.sobre {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    z-index: 1;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(50px, 8vw, 80px);
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.sobre-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #1B2B4B;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1B2B4B, #B68C5A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #B68C5A, #8B6B3A);
    border-radius: 2px;
    margin-bottom: 30px;
}

.sobre-text p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.8;
    color: #6C757D;
    margin-bottom: 25px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #B68C5A;
    padding: clamp(12px, 3vw, 15px) clamp(25px, 4vw, 35px);
    text-decoration: none;
    border: 2px solid #B68C5A;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #B68C5A, #8B6B3A);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(182, 140, 90, 0.3);
}

.sobre-image {
    position: relative;
}

.sobre-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(27, 43, 75, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sobre-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #B68C5A, #8B6B3A);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.3;
    transition: all 0.4s ease;
}

.sobre-image:hover::before {
    opacity: 0.5;
    transform: scale(1.05);
}

.sobre-image:hover .sobre-img {
    transform: scale(1.02);
}

/* Estatísticas Section */
.estatisticas {
    background: linear-gradient(135deg, #1B2B4B 0%, #2C3E50 100%);
    padding: clamp(80px, 10vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

.estatisticas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.estatisticas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: clamp(40px, 6vw, 60px);
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.estatistica-item {
    text-align: center;
    color: white;
    position: relative;
}

.estatistica-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(100px, 15vw, 120px);
    height: clamp(100px, 15vw, 120px);
    background: linear-gradient(135deg, rgba(182, 140, 90, 0.1), rgba(139, 107, 58, 0.1));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.numero {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #B68C5A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.texto {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Depoimentos */
.depoimentos {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
    z-index: 1;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(25px, 4vw, 40px);
    margin-top: 60px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.depoimento-card {
    background: white;
    padding: clamp(25px, 4vw, 35px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(27, 43, 75, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    margin-top: 20px;
}

.depoimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #B68C5A, #8B6B3A);
    border-radius: 20px 20px 0 0;
}

.depoimento-card:hover::before {
    transform: scaleX(1);
}

.depoimento-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(27, 43, 75, 0.15);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, #B68C5A, #8B6B3A);
    color: white;
    width: clamp(35px, 6vw, 40px);
    height: clamp(35px, 6vw, 40px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(16px, 3vw, 18px);
    box-shadow: 0 8px 25px rgba(182, 140, 90, 0.3);
    z-index: 10;
}

.depoimento-text {
    margin-bottom: 25px;
    position: relative;
}

.depoimento-text p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.7;
    color: #1B2B4B;
    font-style: italic;
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
}

.depoimento-text p::before {
    content: '"';
    font-size: clamp(3rem, 6vw, 4rem);
    color: #B68C5A;
    position: absolute;
    top: -15px;
    left: -5px;
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
    z-index: 1;
}

.depoimento-autor {
    border-top: 1px solid #E9ECEF;
    padding-top: 25px;
}

.autor-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    color: #1B2B4B;
    margin-bottom: 8px;
}

.autor-info span {
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    color: #6C757D;
    font-weight: 500;
}

/* Artigos */
.artigos {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
}

.artigos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
    z-index: 1;
}

.artigos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: clamp(30px, 5vw, 50px);
    margin-top: 60px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.artigo-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(27, 43, 75, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.artigo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B68C5A, #8B6B3A);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.artigo-card:hover::before {
    transform: scaleX(1);
}

.artigo-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(27, 43, 75, 0.15);
}

.artigo-image {
    background: linear-gradient(135deg, #B68C5A, #8B6B3A);
    height: clamp(120px, 15vw, 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(44px, 6vw, 52px);
    position: relative;
    overflow: hidden;
}

.artigo-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8B6B3A, #B68C5A);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.artigo-card:hover .artigo-image::before {
    opacity: 1;
}

.artigo-content {
    padding: clamp(25px, 5vw, 35px);
}

.artigo-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 600;
    color: #1B2B4B;
    margin-bottom: 20px;
    line-height: 1.3;
}

.artigo-content p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.7;
    color: #6C757D;
    margin-bottom: 20px;
}

.artigo-content p:last-of-type {
    margin-bottom: 25px;
}

.artigo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background: linear-gradient(135deg, #B68C5A, #8B6B3A);
    color: white;
    padding: clamp(6px, 2vw, 8px) clamp(12px, 3vw, 16px);
    border-radius: 25px;
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(182, 140, 90, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(182, 140, 90, 0.3);
}

/* Contato Section */
.contato {
    background: linear-gradient(135deg, #1B2B4B 0%, #2C3E50 100%);
    padding: clamp(80px, 10vw, 120px) 0;
    position: relative;
    overflow: hidden;
}

.contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 Q25,0 50,10 T100,10" stroke="white" stroke-width="0.5" fill="none" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    z-index: 1;
}

.contato-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contato-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #B68C5A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contato-info p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 50px;
    opacity: 0.9;
    line-height: 1.7;
}

.contato-whatsapp {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: clamp(30px, 5vw, 40px);
    margin-bottom: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contato-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border-color: rgba(182, 140, 90, 0.5);
}

.whatsapp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.whatsapp-header i {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #25D366;
    filter: drop-shadow(0 4px 15px rgba(37, 211, 102, 0.3));
}

.whatsapp-header h3 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    margin: 0;
}

.contato-whatsapp p {
    font-family: 'Poppins', sans-serif;
    color: white;
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.btn-whatsapp {
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: clamp(15px, 3vw, 18px) clamp(25px, 4vw, 35px);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.contato-alternativo {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: clamp(25px, 5vw, 35px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contato-alternativo h3 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.contato-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 3vw, 20px);
    margin-bottom: 20px;
    padding: clamp(12px, 3vw, 15px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contato-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.contato-item:last-child {
    margin-bottom: 0;
}

.contato-item i {
    width: clamp(45px, 8vw, 50px);
    height: clamp(45px, 8vw, 50px);
    background: linear-gradient(135deg, #B68C5A, #8B6B3A);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 3vw, 20px);
    box-shadow: 0 8px 25px rgba(182, 140, 90, 0.3);
}

.contato-item span {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-weight: 500;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f1419 0%, #1B2B4B 100%);
    color: white;
    padding: clamp(60px, 8vw, 80px) 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(182, 140, 90, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(40px, 6vw, 60px);
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.footer-logo span {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #B68C5A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #B0B8C1;
    line-height: 1.7;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.footer-links h4,
.footer-servicos h4,
.footer-social h4 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-links h4::after,
.footer-servicos h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #B68C5A, #8B6B3A);
    border-radius: 1px;
}

.footer-links ul,
.footer-servicos ul {
    list-style: none;
}

.footer-links ul li,
.footer-servicos ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #B0B8C1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

.footer-links ul li a:hover {
    color: #B68C5A;
    transform: translateX(5px);
}

.footer-servicos ul li {
    color: #B0B8C1;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    transition: all 0.3s ease;
}

.footer-servicos ul li:hover {
    color: #B68C5A;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: clamp(40px, 7vw, 45px);
    height: clamp(40px, 7vw, 45px);
    background: linear-gradient(135deg, #B68C5A, #8B6B3A);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: clamp(16px, 3vw, 18px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(182, 140, 90, 0.2);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 30px rgba(182, 140, 90, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: #B0B8C1;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text h2 {
        font-size: 24px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text h2 {
        font-size: 24px;
    }
    
    .contato-content {
        padding: 0 20px;
    }
    
    .contato-whatsapp {
        padding: 25px 20px;
    }
    
    .whatsapp-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
    
    .contato-alternativo {
        padding: 20px 15px;
    }
    
    .depoimentos-grid {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .depoimento-card {
        padding: 25px 20px;
        margin-top: 15px;
    }
    
    .quote-icon {
        top: -12px;
        left: 15px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .depoimento-text p {
        padding-left: 20px;
        margin-bottom: 15px;
    }
    
    .depoimento-text p::before {
        top: -12px;
        left: -3px;
        font-size: 2.5rem;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .sobre-img {
        width: 250px;
        height: auto;
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .estatisticas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Ajustes específicos para hero em mobile */
    .hero-content {
        padding: 0 15px;
        min-height: 90vh;
    }
    
    .hero-text {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .hero-text h2 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        gap: 6px; /* Reduzido ainda mais */
    }
    
    .logo {
        gap: 4px; /* Reduzido ainda mais */
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .nav ul {
        gap: 6px; /* Reduzido ainda mais */
    }
    
    .nav a {
        padding: 3px 6px; /* Reduzido ainda mais */
        font-size: 0.95rem;
    }
    
    .hero-content {
        padding: 0 12px;
        min-height: 85vh;
    }
    
    .hero-text {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem !important;
        margin-bottom: 6px;
        line-height: 1.05;
    }
    
    .hero-text h2 {
        font-size: 1rem !important;
        margin-bottom: 10px;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 0.9rem !important;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .btn-primary {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
        margin-top: 3px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .servico-card {
        padding: 25px 20px;
    }
    
    .servico-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .estatisticas-grid {
        grid-template-columns: 1fr;
    }
    
    .contato-whatsapp {
        padding: 20px 15px;
    }
    
    .whatsapp-header h3 {
        font-size: 1.2rem;
    }
    
    .btn-whatsapp {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .contato-alternativo {
        padding: 20px 15px;
    }
    
    .contato-alternativo h3 {
        font-size: 1.2rem;
    }
    
    .contato-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contato-item span {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.servico-card,
.depoimento-card,
.estatistica-item {
    animation: fadeInUp 0.6s ease forwards;
}

.servico-card:nth-child(1) { animation-delay: 0.1s; }
.servico-card:nth-child(2) { animation-delay: 0.2s; }
.servico-card:nth-child(3) { animation-delay: 0.3s; }
.servico-card:nth-child(4) { animation-delay: 0.4s; }
.servico-card:nth-child(5) { animation-delay: 0.5s; }
.servico-card:nth-child(6) { animation-delay: 0.6s; }

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Hover effects adicionais */
.servico-card:hover .servico-icon {
    transform: scale(1.1);
}

.sobre-img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: clamp(100px, 15vw, 120px);
    right: clamp(20px, 4vw, 30px);
    width: clamp(60px, 10vw, 70px);
    height: clamp(60px, 10vw, 70px);
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: clamp(28px, 5vw, 32px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Responsividade do WhatsApp Flutuante */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Responsividade para artigos */
@media (max-width: 768px) {
    .artigos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .artigo-card {
        margin: 0 20px;
    }
    
    .artigo-content {
        padding: 25px;
    }
    
    .artigo-content h3 {
        font-size: 20px;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 0 20px;
        margin-top: 40px;
    }
    
    .depoimento-card {
        padding: 20px 15px;
        margin-top: 12px;
    }
    
    .quote-icon {
        top: -10px;
        left: 12px;
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .depoimento-text p {
        padding-left: 18px;
        margin-bottom: 12px;
        font-size: 0.9rem;
    }
    
    .depoimento-text p::before {
        top: -10px;
        left: -2px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .artigo-card {
        margin: 0 15px;
    }
    
    .artigo-content {
        padding: 20px;
    }
    
    .artigo-content h3 {
        font-size: 18px;
    }
    
    .depoimentos-grid {
        margin: 0 15px;
        gap: 20px;
    }
    
    .depoimento-card {
        padding: 20px 15px;
    }
    
    .depoimento-text p {
        font-size: 15px;
    }
    
    .autor-info h4 {
        font-size: 16px;
    }
    
    .autor-info span {
        font-size: 13px;
    }
}

/* Media Queries para Responsividade */
@media (max-width: 768px) {
    .header-content {
        gap: 8px;
    }
    
    .logo {
        gap: 6px;
    }
    
    .logo span {
        font-size: 1.1rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .nav {
        position: fixed;
        top: 100%;
        right: 0;
        width: 280px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        box-shadow: 0 8px 32px rgba(27, 43, 75, 0.1);
        border-top: 1px solid rgba(182, 140, 90, 0.2);
        border-left: 1px solid rgba(182, 140, 90, 0.2);
        border-radius: 0 0 0 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 15px 0;
    }
    
    .nav ul {
        gap: 8px;
        padding: 0 12px;
    }
    
    .nav a {
        padding: 4px 8px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        gap: 6px;
    }
    
    .logo {
        gap: 4px;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .nav {
        width: 250px;
        padding: 12px 0;
    }
    
    .nav ul {
        gap: 6px;
        padding: 0 12px;
    }
    
    .nav a {
        padding: 3px 6px;
        font-size: 0.9rem;
    }
}

/* Hero Buttons */
.hero-buttons {
    margin-top: clamp(20px, 4vw, 30px);
}

@media (max-width: 768px) {
    .hero-content {
        padding-top: 100px; /* Reduzido para mobile */
    }
    
    .hero-text {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .hero-text h2 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding-top: 80px; /* Reduzido ainda mais para mobile pequeno */
    }
    
    .hero-text {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .hero-text h2 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        margin-top: 15px;
    }
}




