:root {
    --mint: #8CC8B5;
    --coral: #F7A18A;
    --yellow: #F6D776;
    --aqua: #9ED3BE;
    --bg: #F9F5F1;
    --text: #3D3D3D;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 25px 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(249, 245, 241, 0.98);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.04);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -1px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: var(--coral);
    font-weight: 300;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mint);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--mint);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero */
.hero {
    padding: 180px 0 120px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.tag {
    color: var(--mint);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #2D2D2D;
    font-weight: 700;
}

.hero p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.hero-stats.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-box {
    text-align: left;
}

.stat-box strong {
    font-size: 2.5rem;
    color: var(--mint);
    display: inline;
    font-weight: 700;
}

.stat-box span {
    font-size: 0.85rem;
    color: #666;
    display: block;
    margin-top: 5px;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.parallax-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.shape-blob {
    position: absolute;
    filter: blur(60px);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

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

.color-1 {
    width: 280px;
    height: 280px;
    background: var(--aqua);
    top: -40px;
    right: -40px;
    opacity: 0.4;
}

.color-2 {
    width: 220px;
    height: 220px;
    background: var(--yellow);
    bottom: -30px;
    left: -30px;
    opacity: 0.5;
    animation-delay: 2s;
}

.color-3 {
    width: 180px;
    height: 180px;
    background: var(--coral);
    top: 50%;
    left: -60px;
    opacity: 0.3;
    animation-delay: 4s;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 3;
    animation: slideIn 1s ease 0.5s backwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.whatsapp-btn a{
     font-size: 0.80rem;
    color: #666
}
.badge-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--mint), var(--aqua));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
}

.floating-badge strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
}

.floating-badge span {
    font-size: 0.85rem;
    color: #999;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease;
}

.animate-slide-up {
    animation: slideUp 1s ease backwards;
}

.animate-slide-up.delay-1 {
    animation-delay: 0.2s;
}

.animate-slide-up.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Benefícios */
.beneficios {
    padding: 80px 0;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.beneficio-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.beneficio-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.beneficio-icon {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 15px;
    padding: 8px 16px;
    background: rgba(140, 200, 181, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.beneficio-card h3 {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 600;
}

.beneficio-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Sobre */
.sobre {
    padding: 100px 0;
    background: white;
}

.grid-2 {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.sobre-imagem {
    position: relative;
}

.moldura-imagem {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.moldura-imagem img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.moldura-imagem:hover img {
    transform: scale(1.05);
}

.imagem-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

.experiencia-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: linear-gradient(135deg, var(--coral), #f89f86);
    color: white;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    z-index: 10;
}

.experiencia-badge strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.experiencia-badge span {
    font-size: 0.85rem;
    opacity: 0.95;
}

.floating-element {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: float 5s ease-in-out infinite;
}

.element-1 {
    background: var(--yellow);
    bottom: 50px;
    right: -50px;
}

.element-2 {
    background: var(--aqua);
    top: 100px;
    right: -30px;
    animation-delay: 2.5s;
}

.sobre-texto h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #2D2D2D;
    font-weight: 700;
    line-height: 1.2;
}

.sobre-texto > p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.8;
}

.pilares {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.pilar-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.pilar-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.pilar-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.pilar-dot.yellow {
    background: var(--yellow);
}

.pilar-dot.coral {
    background: var(--coral);
}

.pilar-dot.aqua {
    background: var(--aqua);
}

.pilar-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.certificacoes {
    background: var(--bg);
    padding: 25px 30px;
    border-radius: 20px;
    border-left: 4px solid var(--mint);
}

.certificacoes h4 {
    font-size: 1.1rem;
    color: var(--mint);
    margin-bottom: 15px;
    font-weight: 600;
}

.certificacoes ul {
    list-style: none;
}

.certificacoes li {
    font-size: 0.9rem;
    color: #666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.certificacoes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mint);
    font-weight: bold;
}

/* Serviços */
.servicos {
    padding: 100px 0;
    background: var(--bg);
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #2D2D2D;
}

.subtitle {
    font-size: 1.05rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--coral));
    margin: 25px auto;
    border-radius: 2px;
}

.servicos-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    border-top: 4px solid transparent;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) {
    border-top-color: var(--coral);
}

.service-card:nth-child(2) {
    border-top-color: var(--aqua);
}

.service-card:nth-child(3) {
    border-top-color: var(--yellow);
}

.service-card:nth-child(4) {
    border-top-color: var(--mint);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mint);
    background: rgba(140, 200, 181, 0.15);
    padding: 8px 18px;
    border-radius: 20px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #2D2D2D;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-link {
    color: var(--mint);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
    gap: 8px;
}

.service-link:hover {
    gap: 14px;
}

/* Processo */
.processo {
    padding: 100px 0;
    background: white;
}

.processo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.processo-step {
    text-align: center;
    padding: 40px 25px;
    border-radius: 20px;
    background: var(--bg);
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.processo-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.processo-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--mint), var(--aqua));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.processo-step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text);
    font-weight: 600;
}

.processo-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Avaliações */
.avaliacoes {
    padding: 100px 0;
    background: var(--bg);
}

.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.avaliacao-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.avaliacao-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.avaliacao-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.stars {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.avaliacao-card > p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.avaliacao-autor {
    display: flex;
    gap: 15px;
    align-items: center;
}

.autor-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--mint), var(--aqua));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.avaliacao-autor strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 3px;
}

.avaliacao-autor span {
    font-size: 0.85rem;
    color: #999;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--bg);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text);
    text-align: left;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    background: rgba(140, 200, 181, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--mint);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Contato */
.contato {
    padding: 100px 0;
    background: var(--bg);
}
.contato a {
    color: #666;
    font-size: 0.95rem;
}

.contato-content {
    padding-right: 40px;
}

.contato-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    margin-top: 15px;
    font-weight: 700;
    color: #2D2D2D;
}

.contato-content > p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

.c-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    color: var(--mint);
}

.detail-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 5px;
    font-weight: 600;
}

.detail-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

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

.social-btn {
    padding: 12px 25px;
    border: 2px solid var(--mint);
    border-radius: 50px;
    text-decoration: none;
    color: var(--mint);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--mint);
    color: white;
    transform: translateY(-2px);
}

.c-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
}

.c-form input,
.c-form select,
.c-form textarea {
    padding: 18px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    background: var(--bg);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text);
    transition: all 0.3s ease;
}

.c-form input:focus,
.c-form select:focus,
.c-form textarea:focus {
    outline: none;
    border-color: var(--mint);
    background: white;
    box-shadow: 0 0 0 4px rgba(140, 200, 181, 0.1);
}

.c-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Botões */
.btn-primary {
    background: linear-gradient(135deg, var(--mint), var(--aqua));
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(140, 200, 181, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(140, 200, 181, 0.4);
}

.btn-primary.full-width {
    width: 100%;
}

.btn-secondary {
    padding: 18px 40px;
    border: 2px solid var(--mint);
    border-radius: 50px;
    text-decoration: none;
    color: var(--mint);
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-secondary:hover {
    background: var(--mint);
    color: white;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 12px 28px;
    border: 2px solid var(--mint);
    border-radius: 50px;
    text-decoration: none;
    color: var(--mint);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-sm:hover {
    background: var(--mint);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
footer {
    padding: 60px 0;
    background: #2D2D2D;
    color: white;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--coral);
    font-weight: 300;
}

footer p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-small {
    font-size: 0.85rem !important;
    opacity: 0.6 !important;
}
a {
    text-decoration: none;
    color: inherit;
}
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}


/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 400px;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servicos-wrapper {
        grid-template-columns: 1fr;
    }

    /* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 400px;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sobre-imagem {
        order: -1;
    }

    .moldura-imagem img {
        height: 450px;
    }

    .servicos-wrapper {
        grid-template-columns: 1fr;
    }

    .processo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .avaliacoes-grid {
        grid-template-columns: 1fr;
    }

    .contato-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(249, 245, 241, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        gap: 25px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        transition: transform 0.4s ease;
        border-radius: 0 0 20px 20px;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-box strong {
        font-size: 2rem;
    }

    .hero-visual {
        height: 350px;
    }

    .floating-badge {
        padding: 15px 20px;
        bottom: 20px;
        right: 20px;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .floating-badge strong {
        font-size: 0.9rem;
    }

    .beneficios {
        padding: 60px 0;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sobre {
        padding: 60px 0;
    }

    .sobre-texto h2 {
        font-size: 2rem;
    }

    .moldura-imagem img {
        height: 350px;
    }

    .experiencia-badge {
        left: 20px;
        padding: 20px 25px;
    }

    .servicos {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .service-card {
        padding: 35px 30px;
    }

    .processo {
        padding: 60px 0;
    }

    .processo-grid {
        grid-template-columns: 1fr;
    }

    .avaliacoes {
        padding: 60px 0;
    }

    .contato {
        padding: 60px 0;
    }

    .contato-content h2 {
        font-size: 2rem;
    }

    .c-form {
        padding: 30px 25px;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-visual {
        height: 300px;
    }

    .color-1,
    .color-2,
    .color-3 {
        display: none;
    }

    .floating-badge {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .sobre-texto h2 {
        font-size: 1.75rem;
    }

    .moldura-imagem img {
        height: 300px;
    }

    .experiencia-badge {
        padding: 15px 20px;
    }

    .experiencia-badge strong {
        font-size: 1.5rem;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .avaliacao-card {
        padding: 30px 25px;
    }

    .c-form {
        padding: 25px 20px;
    }

    .c-form input,
    .c-form select,
    .c-form textarea {
        padding: 15px;
        font-size: 0.95rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 15px 30px;
        font-size: 0.95rem;
    }

    footer {
        padding: 40px 0;
    }
}

@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .section-header h2,
    .sobre-texto h2,
    .contato-content h2 {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }
}
}