/* css/style.css - VERSÃO FINAL COMPLETA COM NOVO MENU */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores - Tons Pastel com #84dbbb como base */
    --primary-pastel: #84dbbb;
    --primary-light-pastel: #a3e8d1;
    --primary-extra-light: #c2f0e4;
    --primary-soft-green: #b8e0c4;
    --primary-mint: #d1f0e5;
    --primary-sage: #c4ddcf;
    
    /* Tons de Acento Pastel */
    --accent-pink: #fbd4d4;
    --accent-peach: #ffe0c0;
    --accent-lavender: #e2d1f0;
    --accent-soft-yellow: #fff1c1;
    
    /* Cores Neutras Pastel */
    --text-dark: #4a5568;
    --text-soft: #6b7a8f;
    --text-light: #8f9eb2;
    --white: #FFFFFF;
    --white-soft: #f9fbfd;
    --gray-light-pastel: #f0f3f7;
    --gray-medium-pastel: #d6dee7;
    
    /* Sombras Suaves */
    --shadow-soft: 0 4px 20px rgba(132, 219, 187, 0.15);
    --shadow-medium: 0 6px 30px rgba(132, 219, 187, 0.2);
    --shadow-strong: 0 10px 40px rgba(132, 219, 187, 0.25);
    
    /* Gradientes Pastel */
    --gradient-primary: linear-gradient(135deg, #c2f0e4, #a3e8d1);
    --gradient-soft: linear-gradient(135deg, #a3e8d1, #84dbbb);
    --gradient-mint: linear-gradient(135deg, #d1f0e5, #c2f0e4);
    --gradient-warm: linear-gradient(135deg, #ffe0c0, #fbd4d4);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white-soft);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-light-pastel);
}

/* ===== NOVO MENU ===== */
.novo-menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 0;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

/* Botão Hamburguer */
.hamburguer-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2000;
}

.hamburguer-btn span {
    width: 100%;
    height: 4px;
    background: #4a7c6a;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburguer-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburguer-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburguer-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Menu Desktop */
.novo-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.novo-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

.novo-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-soft);
    transition: width 0.3s;
}

.novo-menu a:hover::after,
.novo-menu a.active::after {
    width: 100%;
}

.novo-menu a:hover,
.novo-menu a.active {
    color: var(--primary-pastel);
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {
    .logo-img {
        height: 70px;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .hamburguer-btn {
        display: flex;
    }
    
    .novo-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        z-index: 1999;
        padding: 100px 30px 30px;
        overflow-y: auto;
    }
    
    .novo-menu.active {
        right: 0;
    }
    
    .novo-menu ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .novo-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 18px;
        background: var(--gray-light-pastel);
        border-radius: 10px;
        border: 1px solid var(--primary-pastel);
        text-align: center;
        color: var(--text-dark);
        text-decoration: none;
        transition: all 0.3s;
    }
    
    .novo-menu a:hover,
    .novo-menu a:active {
        background: var(--primary-extra-light);
        transform: translateY(-2px);
    }
    
    .novo-menu a.active {
        background: var(--primary-pastel);
        color: white;
    }
    
    .logo-img {
        height: 60px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
        max-width: 180px;
    }
    
    .novo-menu {
        width: 85%;
        padding: 80px 20px 20px;
    }
}

/* Esconder elementos antigos do menu */
.menu-toggle,
.nav-menu {
    display: none !important;
}

/* Main content */
main {
    margin-top: 110px;
    min-height: calc(100vh - 110px - 450px);
}

@media (max-width: 992px) {
    main {
        margin-top: 100px;
    }
}

@media (max-width: 768px) {
    main {
        margin-top: 90px;
    }
}

@media (max-width: 480px) {
    main {
        margin-top: 80px;
    }
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    animation: shine 10s infinite;
}

@keyframes shine {
    0% { transform: rotate(45deg) translateY(-100%); }
    20% { transform: rotate(45deg) translateY(100%); }
    100% { transform: rotate(45deg) translateY(100%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-pastel);
    text-shadow: 2px 2px 4px rgba(132, 219, 187, 0.1);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-soft);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-pastel);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(132, 219, 187, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light-pastel);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(132, 219, 187, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-pastel);
    border: 2px solid var(--primary-pastel);
}

.btn-secondary:hover {
    background: var(--primary-extra-light);
    transform: translateY(-2px);
    border-color: var(--primary-light-pastel);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-pastel);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(132, 219, 187, 0.1);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-soft);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-soft);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--primary-light-pastel);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-soft);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-mint);
    color: var(--primary-pastel);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    transition: all 0.3s;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-soft);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background: var(--gradient-soft);
}

.service-card h3 {
    color: var(--primary-pastel);
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    color: var(--text-soft);
    line-height: 1.7;
}

/* About Section */
.about-home {
    padding: 80px 0;
    background: var(--gradient-mint);
    position: relative;
    overflow: hidden;
}

.about-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(35deg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-extra-light), transparent);
    opacity: 0.3;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 40px;
}

.about-content h2 {
    font-size: 36px;
    color: var(--primary-pastel);
    margin-bottom: 25px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(132, 219, 187, 0.1);
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-soft);
    border-radius: 2px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-pastel);
    display: block;
    line-height: 1.2;
}

.stat-label {
    color: var(--text-soft);
    font-size: 14px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    position: relative;
    border: 1px solid var(--primary-light-pastel);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: var(--primary-light-pastel);
    font-family: serif;
    opacity: 0.5;
    line-height: 1;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-soft);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light-pastel);
}

.testimonial-author h4 {
    color: var(--primary-pastel);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 14px;
}

/* Blog Section */
.blog-preview {
    padding: 80px 0;
    background: var(--gradient-mint);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    border: 1px solid var(--primary-light-pastel);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.blog-meta i {
    color: var(--primary-pastel);
    margin-right: 5px;
}

.blog-content h3 {
    margin-bottom: 15px;
    color: var(--primary-pastel);
    font-size: 20px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-soft);
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    color: var(--primary-pastel);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 15px;
}

.read-more i {
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-soft);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--white-soft);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-pastel);
}

.cta-buttons .btn-primary:hover {
    background: var(--white-soft);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-soft);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary-light-pastel);
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-light-pastel);
}

.footer-section p {
    margin-bottom: 10px;
    color: var(--gray-light-pastel);
    line-height: 1.8;
}

.footer-section i {
    margin-right: 10px;
    color: var(--primary-light-pastel);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-light-pastel);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-medium-pastel);
}

.footer-bottom a {
    color: var(--primary-light-pastel);
    text-decoration: none;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-pink);
    color: var(--text-dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(251, 212, 212, 0.3);
    z-index: 1000;
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 212, 212, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(251, 212, 212, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(251, 212, 212, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: var(--accent-peach);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 42px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 28px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* Garantir que imagens não quebrem */
img {
    max-width: 100%;
    height: auto;
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Proteção anti-cópia */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea, [contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}