/* ===== FONTES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lora:wght@400;500;600&display=swap');

/* ===== PALETA DE CORES - ROSA, PRETO E BRANCO (EQUILIBRADO E PROFISSIONAL) ===== */
:root {
    /* Cores Principais */
    --primary-rose: #D84C6E;
    --primary-rose-dark: #A83A54;
    --primary-rose-light: #F0D9E6;
    --primary-black: #1F1F1F;
    --primary-white: #FFFFFF;
    --primary-cream: #FAFAFA;
    
    /* Tons Neutros */
    --neutral-light: #F5F5F5;
    --neutral-gray: #E8E8E8;
    --neutral-medium: #999999;
    --neutral-dark: #555555;
    
    /* Neutros */
    --text-dark: #2D2D2D;
    --text-gray: #666666;
    --text-light: #999999;
    --border-light: #EEEEEE;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--primary-cream);
    overflow-x: hidden;
}

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

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-black);
    line-height: 1.2;
}

h1 { font-size: 52px; }
h2 { font-size: 42px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== LINKS E BOTÕES ===== */
a {
    color: var(--primary-rose-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-rose);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-rose-dark), var(--primary-rose));
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-rose-dark);
    border: 2px solid var(--primary-rose-dark);
}

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

.btn-light {
    background-color: var(--primary-cream);
    color: var(--primary-rose-dark);
    border: 2px solid var(--primary-rose-dark);
}

.btn-light:hover {
    background-color: var(--primary-rose-dark);
    color: white;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: var(--primary-cream);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-light);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-black);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 0;
    object-fit: cover;
    border: none;
    box-shadow: var(--shadow-md);
}

.brand-text {
    color: var(--primary-black);
    font-weight: 700;
}

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

.nav-menu a {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    font-size: 15px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-rose-dark);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-cream) 50%, #F5F5F5 100%);
    position: relative;
    overflow: hidden;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at 30% 50%, rgba(216, 76, 110, 0.08) 0%, rgba(216, 76, 110, 0.02) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.bg-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.leaf, .flower {
    position: absolute;
    font-size: 80px;
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

.leaf-1 { top: 10%; right: 5%; animation-delay: 0s; }
.leaf-2 { bottom: 15%; left: 10%; font-size: 60px; animation-delay: 1s; }
.leaf-3 { top: 40%; right: 3%; font-size: 50px; animation-delay: 2s; }
.flower-1 { top: 20%; left: 8%; animation-delay: 0.5s; }
.flower-2 { bottom: 10%; right: 15%; font-size: 70px; animation-delay: 1.5s; }

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

.vine {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-rose), transparent);
    opacity: 0.3;
}

.vine-1 { top: 25%; width: 60%; right: 0; }

.hero .container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

.hero-text {
    animation: slideInLeft 0.8s ease;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-rose-light);
    color: var(--primary-rose-dark);
    padding: 8px 18px;
    border-radius: 25px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 68px;
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--primary-black);
}

.text-rose {
    color: var(--primary-rose-dark);
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--primary-rose-dark);
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.hero-divider {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-rose), var(--primary-rose-dark));
    margin: 25px 0 30px 0;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(216, 76, 110, 0.3);
}

.hero-description {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.9;
    font-weight: 500;
    letter-spacing: 0.3px;
}

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

.hero-visual {
    position: relative;
    text-align: center;
    animation: slideInRight 0.8s ease;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.hero-plant-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleInGentle 0.8s ease 0.2s both;
}

@keyframes scaleInGentle {
    from {
        opacity: 0;
        transform: scale(0.9) rotateY(10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
}

.plant-large {
    font-size: 200px;
    position: absolute;
    top: 0;
    right: 20%;
    opacity: 0.9;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.plant-medium {
    font-size: 100px;
    position: absolute;
    bottom: 80px;
    left: 10%;
    opacity: 0.7;
}

.plant-small {
    font-size: 70px;
    position: absolute;
    bottom: 20%;
    right: 5%;
    opacity: 0.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: var(--primary-rose-dark);
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== HIGHLIGHTS SECTION ===== */
.highlights {
    padding: 80px 0;
    background-color: white;
}

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

.highlight-card {
    background: linear-gradient(135deg, #F5F5F5, #FAFAFA);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-rose);
}

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

.highlight-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.highlight-card h3 {
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-cream) 50%, #F5F5F5 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.header-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.flower-header-1 { top: 10%; right: 5%; font-size: 100px; opacity: 0.3; }
.flower-header-2 { bottom: 10%; left: 5%; font-size: 90px; opacity: 0.3; }
.leaf-header-1 { top: 50%; right: 10%; font-size: 80px; opacity: 0.2; }
.vine-page { position: absolute; top: 30%; width: 80%; left: 10%; }

.page-header h1 {
    position: relative;
    z-index: 1;
    font-size: 52px;
    margin-bottom: 15px;
}

.page-header p {
    position: relative;
    z-index: 1;
    font-size: 18px;
    color: var(--primary-rose-dark);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.slogan {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--primary-rose-dark);
    font-style: italic;
    font-weight: 600;
    margin-bottom: 25px;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-rose), var(--primary-rose-dark));
    margin: 25px 0;
    border-radius: 2px;
}

.about-content h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 18px;
}

.about-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-card {
    background: linear-gradient(135deg, var(--primary-rose-light), #F5F5F5);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-rose);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.about-card h4 {
    margin-bottom: 10px;
}

.about-card p {
    font-size: 14px;
    margin: 0;
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-rose-light), var(--primary-cream));
    position: relative;
    overflow: hidden;
}

.bg-values {
    position: absolute;
    width: 100%;
    height: 100%;
}

.flower-values-1 { position: absolute; top: 10%; right: 10%; font-size: 120px; opacity: 0.2; }
.flower-values-2 { position: absolute; bottom: 15%; left: 5%; font-size: 100px; opacity: 0.2; }

.values-section h2 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.value-card {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--primary-rose);
}

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

.value-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--primary-rose-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* ===== TRABALHOS SECTION ===== */
.trabalhos-section {
    padding: 80px 0;
    background-color: var(--primary-cream);
}

.filtro-trabalhos {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filtro-btn {
    padding: 12px 28px;
    border: 2px solid var(--primary-rose);
    background-color: transparent;
    color: var(--primary-rose-dark);
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filtro-btn:hover,
.filtro-btn.active {
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
    color: white;
    border-color: var(--primary-rose-dark);
}

.trabalhos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.trabalho-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-rose);
}

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

.trabalho-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.trabalho-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trabalho-card:hover .trabalho-image img {
    transform: scale(1.08);
}

.trabalho-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(216, 76, 110, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trabalho-card:hover .trabalho-overlay {
    opacity: 1;
}

.btn-view {
    background-color: white;
    color: var(--primary-rose-dark);
    padding: 12px 28px;
    border-radius: 25px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: var(--primary-rose-light);
    color: var(--primary-rose-dark);
}

.trabalho-info {
    padding: 28px;
}

.trabalho-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.trabalho-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
    color: var(--text-gray);
}

.trabalho-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    background-color: var(--primary-rose-light);
    color: var(--primary-rose-dark);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.trabalho-card.hidden {
    display: none;
}

/* ===== SERVIÇOS SECTION ===== */
.servicos-section {
    padding: 80px 0;
    background-color: white;
}

.servicos-section .container {
    display: block;
}

.servico-card {
    background: linear-gradient(135deg, var(--primary-rose-light), #F5F5F5);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-rose);
}

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

.servico-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.servico-header i {
    font-size: 40px;
    color: var(--primary-rose-dark);
}

.servico-header h2 {
    margin: 0;
    font-size: 24px;
}

.servico-body p {
    margin-bottom: 20px;
    font-size: 14px;
}

.paletas-principal {
    background: linear-gradient(135deg, rgba(216, 76, 110, 0.08), rgba(31, 31, 31, 0.04));
    border: 2px solid var(--primary-rose-light);
    margin-bottom: 40px;
}

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

.paleta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.paleta-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paleta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2);
}

.paleta-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.paleta-preview .cor {
    height: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.paleta-card h3 {
    font-size: 18px;
    color: var(--primary-rose);
    margin: 15px 0 10px 0;
    font-family: 'Playfair Display', serif;
}

.paleta-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.cor {
    height: 45px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.rose-primary { background-color: var(--primary-rose); }
.rose-dark { background-color: var(--primary-black); }
.rose-accent { background-color: var(--primary-rose-light); }
.rose-light { background-color: var(--primary-cream); }

.forest-dark { background-color: var(--primary-black); }
.forest-green { background-color: var(--primary-rose); }
.forest-light { background-color: #F5F5F5; }
.forest-beige { background-color: #EEEEEE; }

.earthy-brown { background-color: #999999; }
.earthy-green { background-color: var(--primary-rose-light); }
.earthy-tan { background-color: #CCCCCC; }
.earthy-cream { background-color: #FAFAFA; }

.luxury-dark { background-color: var(--primary-black); }
.luxury-gold { background-color: var(--primary-rose); }
.luxury-light { background-color: var(--primary-rose-light); }
.luxury-cream { background-color: #FAFAFA; }

.paleta p {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    text-align: center;
    margin: 0;
}

.estilos-list,
.funcionalidades-list,
.diferenciais-list {
    list-style: none;
}

.estilos-list li,
.funcionalidades-list li,
.diferenciais-list li {
    padding: 12px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.estilos-list li:last-child,
.funcionalidades-list li:last-child,
.diferenciais-list li:last-child {
    border-bottom: none;
}

.estilos-list li i,
.funcionalidades-list li i,
.diferenciais-list li i {
    color: var(--primary-rose-dark);
    font-weight: bold;
}

/* ===== CONFIGURADOR ===== */
.configurador-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-rose-light), var(--primary-cream));
    position: relative;
    overflow: hidden;
}

.bg-config {
    position: absolute;
    width: 100%;
    height: 100%;
}

.flower-config-1 { position: absolute; top: 10%; right: 5%; font-size: 100px; opacity: 0.2; }
.flower-config-2 { position: absolute; bottom: 20%; left: 10%; font-size: 90px; opacity: 0.2; }

.configurador {
    background-color: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.configurador h2 {
    text-align: center;
    margin-bottom: 15px;
}

.configurador > p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 35px;
    font-size: 15px;
}

.config-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.config-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.config-group label {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-black);
    font-size: 14px;
}

.config-group select {
    padding: 12px 15px;
    border: 2px solid var(--primary-rose);
    border-radius: 8px;
    background-color: white;
    color: var(--text-dark);
    font-size: 14px;
    font-family: 'Lora', serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.config-group select:hover {
    border-color: var(--primary-rose-dark);
}

.config-group select:focus {
    outline: none;
    border-color: var(--primary-rose-dark);
    box-shadow: 0 0 0 3px rgba(216, 76, 110, 0.15);
}

.preview-box {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.preview-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
    color: white;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.preview-content {
    padding: 50px 30px;
    text-align: center;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* ===== CONTATO SECTION ===== */
.contato-section {
    padding: 80px 0;
    background-color: white;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.contato-info h2 {
    margin-bottom: 10px;
}

.contato-info .subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.info-card {
    background: linear-gradient(135deg, var(--primary-rose-light), #F5F5F5);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 5px solid var(--primary-rose);
    transition: all 0.3s ease;
}

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

.info-card i {
    font-size: 40px;
    color: var(--primary-rose-dark);
    margin-bottom: 15px;
}

.info-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.info-card p {
    margin-bottom: 10px;
}

.info-card a {
    font-weight: 600;
    color: var(--primary-rose-dark);
}

.info-note {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
}

.contact-hours {
    background: linear-gradient(135deg, var(--primary-rose-light), #F5F5F5);
    padding: 30px;
    border-radius: 12px;
    border-top: 5px solid var(--primary-rose);
}

.contact-hours h4 {
    margin-bottom: 15px;
}

.contact-hours p {
    margin-bottom: 8px;
    font-size: 14px;
}

.contato-form {
    background: linear-gradient(135deg, var(--primary-rose-light), #F5F5F5);
    padding: 35px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.contato-form h2 {
    margin-bottom: 25px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-black);
    font-size: 14px;
}

.contato-form input,
.contato-form select,
.contato-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 13px;
    color: var(--text-dark);
    background-color: white;
    transition: all 0.3s ease;
}

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: var(--primary-rose-dark);
    box-shadow: 0 0 0 3px rgba(216, 76, 110, 0.15);
}

.contato-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.form-group.checkbox input {
    width: auto;
    margin: 0;
}

.form-group.checkbox label {
    margin: 0;
    font-size: 13px;
}

.contato-form button {
    width: 100%;
}

.form-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-rose-light), var(--primary-cream));
    position: relative;
    overflow: hidden;
}

.bg-why {
    position: absolute;
    width: 100%;
    height: 100%;
}

.flower-why-1 { position: absolute; top: 15%; right: 5%; font-size: 110px; opacity: 0.15; }
.flower-why-2 { position: absolute; bottom: 10%; left: 10%; font-size: 100px; opacity: 0.15; }

.why-section h2 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.why-card {
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-bottom: 4px solid var(--primary-rose);
}

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

.why-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.why-card h3 {
    margin-bottom: 15px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
    position: relative;
    overflow: hidden;
    text-align: center;
}

.bg-cta {
    position: absolute;
    width: 100%;
    height: 100%;
}

.flower-3 { position: absolute; top: 10%; right: 10%; font-size: 100px; opacity: 0.2; }
.flower-4 { position: absolute; bottom: 15%; left: 10%; font-size: 90px; opacity: 0.2; }
.vine-2 { position: absolute; top: 50%; width: 100%; height: 2px; background: rgba(255, 255, 255, 0.1); }

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
    font-size: 40px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    font-size: 16px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-black);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.bg-footer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.leaf-footer-1 { position: absolute; top: 10%; right: 5%; font-size: 80px; opacity: 0.08; }
.leaf-footer-2 { position: absolute; bottom: 10%; left: 10%; font-size: 70px; opacity: 0.08; }

.footer {
    background-color: var(--primary-black);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-header .footer-brand {
    display: inline-block;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-rose);
    font-weight: 700;
}

.footer-brand p {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

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

.footer-section h4 {
    font-size: 15px;
    margin: 0;
    color: var(--primary-rose);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 15px;
    margin-bottom: 18px;
    color: var(--primary-rose);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links-list li {
    margin-bottom: 0;
}

.footer-links-list a {
    display: inline-block;
    border: 2px solid var(--primary-rose);
    border-radius: 25px;
    color: var(--primary-rose);
    padding: 8px 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links-list a:hover {
    background: var(--primary-rose);
    border-color: var(--primary-rose);
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(216, 76, 110, 0.3);
    color: white;
}

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

.social-links a {
    width: 42px;
    height: 42px;
    border: 2px solid var(--primary-rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-rose);
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background-color: var(--primary-rose);
    color: white;
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(216, 76, 110, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #555;
    color: #b0b0b0;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 5px 0;
    font-size: 13px;
}

.github-note {
    color: var(--primary-rose);
    font-weight: 600;
    margin-top: 10px !important;
}

/* ===== TRABALHOS - NOVOS ESTILOS ===== */
.work-type-card {
    background: linear-gradient(135deg, var(--primary-rose-light), var(--primary-cream));
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-rose);
    transition: all 0.3s ease;
}

.work-type-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.work-type-card h3 {
    margin-bottom: 15px;
    color: var(--primary-black);
}

.work-type-card p {
    line-height: 1.8;
    color: var(--text-gray);
    margin: 0;
}

.business-sectors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.sector-item {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-rose);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.sector-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.sector-item strong {
    display: block;
    color: var(--primary-rose-dark);
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.sector-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.process-step {
    background-color: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-rose);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--primary-rose-dark);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.process-step h4 {
    margin-bottom: 15px;
    color: var(--primary-black);
}

.process-step p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* ===== VISUALIZADOR DE PALETAS ===== */
.palette-selector {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    max-width: 100%;
}

.palette-btn {
    padding: 10px 18px;
    border: 2px solid var(--primary-rose);
    background-color: transparent;
    color: var(--primary-rose-dark);
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 13px;
    white-space: nowrap;
}

.palette-btn:hover {
    background: var(--primary-rose);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.palette-btn.active {
    background: linear-gradient(135deg, var(--primary-rose), var(--primary-rose-dark));
    color: white;
    border-color: var(--primary-rose-dark);
    box-shadow: var(--shadow-md);
}

.color-visualizer {
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.palette-display {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 45px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.palette-color-bar {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.palette-color-bar:hover {
    filter: brightness(1.1);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.palette-color-bar::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.palette-color-bar:hover::after {
    opacity: 1;
}

.palette-colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-bottom: 45px;
}

.color-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.color-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.color-box {
    width: 100%;
    height: 130px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 2px solid #f0f0f0;
}

.color-box:hover {
    filter: brightness(1.08);
}

.color-info {
    padding: 18px 16px;
    text-align: center;
}

.color-info h4 {
    margin: 0 0 10px 0;
    font-size: 12px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Playfair Display', serif;
}

.color-info code {
    display: block;
    background-color: #f8f8f8;
    padding: 8px 10px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--primary-rose-dark);
    font-weight: 700;
    margin-bottom: 10px;
    user-select: all;
    border: 1px solid #f0f0f0;
}

.copy-btn {
    display: inline-block;
    padding: 5px 10px;
    background: var(--primary-rose);
    color: white;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
}

.copy-btn:hover {
    background: var(--primary-rose-dark);
    transform: scale(1.05);
}

.palette-description {
    background: linear-gradient(135deg, var(--primary-rose-light), var(--primary-cream));
    padding: 35px 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-rose);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.palette-description h3 {
    color: var(--primary-rose-dark);
    margin-bottom: 12px;
    font-size: 24px;
}

.palette-description p {
    margin: 0;
    line-height: 1.7;
    font-size: 14px;
    color: var(--text-gray);
}

/* ===== RESPONSIVIDADE TABLET (768px) ===== */
@media (max-width: 768px) {
    /* Navbar */
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-cream);
        list-style: none;
        border-top: 1px solid var(--border-light);
        padding: 15px 0;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        display: block;
        padding: 12px 20px;
        font-size: 14px;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Tipografia */
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 22px; }
    h4 { font-size: 16px; }

    /* Hero */
    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-visual {
        height: 400px;
    }

    .hero::after {
        display: none;
    }

    .plant-large { font-size: 140px; }
    .plant-medium { font-size: 80px; }
    .plant-small { font-size: 60px; }

    /* Grids */
    .paletas {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-grid,
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    /* Cards */
    .paleta-card {
        padding: 20px;
    }

    /* Page Header */
    .page-header {
        padding: 50px 0;
    }

    .page-header h1 {
        font-size: 38px;
    }

    /* Formulário */
    .contato-form {
        position: static;
    }

    /* Visualizador */
    .palette-selector {
        gap: 8px;
    }

    .palette-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .color-visualizer {
        padding: 25px 15px;
    }

    .palette-display {
        height: 200px;
        margin-bottom: 30px;
    }

    .palette-colors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
        margin-bottom: 30px;
    }

    .color-box {
        height: 100px;
    }

    .color-info {
        padding: 12px 10px;
    }

    .palette-description {
        padding: 20px;
    }

    .palette-description h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .palette-description p {
        font-size: 13px;
    }
}
    .palette-selector {
        gap: 8px;
    }

    .palette-btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    .color-visualizer {
        padding: 25px 15px;
    }

    .palette-display {
        height: 200px;
        margin-bottom: 30px;
    }

    .palette-colors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
        margin-bottom: 30px;
    }

    .color-box {
        height: 100px;
    }

    .color-info {
        padding: 12px 10px;
    }

    .palette-description {
        padding: 20px;
    }

    .palette-description h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .palette-description p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Navbar */
    .navbar {
        padding: 12px 0;
    }

    .nav-brand {
        font-size: 16px;
        gap: 8px;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .nav-menu {
        position: fixed;
        top: 63px;
        left: 0;
        right: 0;
        width: 100%;
        padding-top: 10px;
        z-index: 999;
    }

    .nav-menu a {
        border-bottom: 1px solid var(--border-light);
    }

    /* Tipografia */
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    h3 { font-size: 18px; }
    h4 { font-size: 16px; }

    /* Botões */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }

    /* Hero */
    .hero {
        padding: 40px 0;
        min-height: 600px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-divider {
        width: 60px;
        height: 4px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-visual {
        height: 350px;
    }

    .plant-large { 
        font-size: 120px; 
    }

    .plant-medium { 
        font-size: 70px; 
    }

    .plant-small { 
        font-size: 50px; 
    }

    .leaf, .flower {
        font-size: 40px;
    }

    /* Seções */
    .about-section,
    .trabalhos-section,
    .servicos-section,
    .contato-section,
    .values-section,
    .why-section,
    .cta-section {
        padding: 40px 0;
    }

    /* Grids */
    .about-grid,
    .contato-grid,
    .paletas,
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trabalhos-grid,
    .work-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 30px;
    }

    /* Cards */
    .paleta-card {
        padding: 15px;
    }

    .servico-card,
    .info-card {
        padding: 20px;
    }

    /* Formulário */
    .contato-form {
        padding: 20px;
        position: static;
    }

    .config-options {
        grid-template-columns: 1fr;
    }

    /* Filtros */
    .filtro-trabalhos {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .filtro-btn {
        width: 100%;
        padding: 10px 16px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-header {
        margin-bottom: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 20px;
        max-width: none;
    }

    .footer-header h2 {
        font-size: 24px;
    }

    .footer-links h4,
    .footer-social h4 {
        font-size: 14px;
    }

    .footer-links ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-links a {
        font-size: 12px;
        padding: 7px 16px;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* Visualizador */
    .palette-selector {
        gap: 5px;
        flex-wrap: wrap;
    }

    .palette-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .color-visualizer {
        padding: 20px 15px;
    }

    .palette-display {
        height: 150px;
        gap: 8px;
        margin-bottom: 20px;
    }

    .palette-colors-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
        margin-bottom: 20px;
    }

    .color-box {
        height: 70px;
    }

    .color-info {
        padding: 8px 6px;
    }

    .color-info h4 {
        font-size: 11px;
    }

    .color-info code {
        font-size: 9px;
        padding: 4px 6px;
        margin-bottom: 6px;
    }

    .copy-btn {
        padding: 4px 8px;
        font-size: 9px;
    }

    .palette-description {
        padding: 15px;
    }

    .palette-description h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .palette-description p {
        font-size: 12px;
    }

    /* Scroll Indicator */
    .scroll-indicator {
        display: none;
    }
}
