:root {
    --pink: #fd79a8;
    --laranja: #e17055;
    --lilas: #a29bfe;
    --silver-grad: linear-gradient(180deg, #fdfdfd 0%, #e8e8e8 100%);
    --lilas-grad: linear-gradient(135deg, #a29bfe, #fd79a8);
    --gradient: linear-gradient(135deg, #fd79a8, #e17055);
    --radius: 20px;
    --dark: #2d3436;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
html { scroll-behavior: smooth; }
body { background: var(--silver-grad); color: var(--dark); overflow-x: hidden; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.section-title { text-align: center; margin-bottom: 40px; font-size: 2.2rem; font-weight: 700; }

.navbar { position: fixed; top: 0; width: 100%; background: white; z-index: 2000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; max-width: 1200px; margin: 0 auto; }
.logo { font-weight: 700; color: var(--pink); font-size: 1.2rem; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 0.9rem; }

.hero { height: 75vh; display: flex; align-items: center; justify-content: center; position: relative; color: white; text-align: center; overflow: hidden; margin-top: 50px; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background-size: cover; background-position: center; filter: brightness(0.4); transition: opacity 1.5s ease; }
.hero-content h1 { font-size: 3rem; margin-bottom: 10px; }

.card-border-lilas {
    background: white; padding: 20px; border-radius: var(--radius); position: relative;
    border: 3px solid transparent; background-clip: padding-box; transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.card-border-lilas::before {
    content: ""; position: absolute; top: -3px; left: -3px; right: -3px; bottom: -3px;
    background: var(--lilas-grad); border-radius: calc(var(--radius) + 3px); z-index: -1;
}

.service-img { width: 100%; height: 200px; object-fit: cover; border-radius: 15px; margin-bottom: 15px; }

.btn-gradient { 
    padding: 12px 30px; border: none; border-radius: 50px; background: var(--gradient); 
    color: white; font-weight: 700; cursor: pointer; transition: 0.3s; text-decoration: none; display: inline-block;
}
.btn-sm { padding: 8px 20px; font-size: 0.8rem; margin-top: 10px; }
.btn-info { background: #f8f9fa; color: var(--dark); border: 1px solid #ddd; font-size: 0.7rem; margin-top: 8px; }

.grid-trends { display: grid; grid-template-columns: 1fr; gap: 30px; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.trend-card img { width: 100%; height: 250px; object-fit: cover; border-radius: 15px; margin-bottom: 15px; }

/* Estilo dos Cards de Cores */
.color-card { 
    min-width: 200px; background: white; border-radius: var(--radius); 
    padding: 30px 20px; text-align: center; display: flex; flex-direction: column; align-items: center;
}
.color-swatch { 
    width: 80px; height: 80px; border-radius: 50%; margin-bottom: 15px; 
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.1);
}
.color-card h4 { font-size: 1rem; margin-bottom: 5px; color: var(--dark); }
.color-type { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #7f8c8d; }

.products-wrapper { overflow: hidden; cursor: grab; padding: 20px 0; }
.products-scroll { display: flex; gap: 20px; }

.split-layout { display: flex; flex-direction: column; gap: 30px; }
.contact-card { background: var(--gradient); padding: 35px; border-radius: var(--radius); color: white; }
.contact-card input, .contact-card textarea { width: 100%; padding: 15px; margin-bottom: 15px; border-radius: 10px; border: none; }
.btn-submit { width: 100%; padding: 15px; border-radius: 50px; border: none; background: var(--dark); color: white; font-weight: 700; cursor: pointer; }

.social-box { margin-top: 30px; text-align: center; }
.social-icons { display: flex; justify-content: center; gap: 25px; margin-top: 15px; }
.social-icons a { font-size: 30px; color: var(--dark); transition: 0.3s; }
.social-icons a:hover { color: var(--pink); transform: translateY(-5px); }

.footer { background: #1e272e; color: white; padding: 40px 0; text-align: center; font-size: 0.9rem; }
.footer-badges { margin: 20px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
.badge-group { display: flex; align-items: center; gap: 10px; }

.whatsapp-float { 
    position: fixed; 
    bottom: 30px; right: 30px; 
    background: #25d366; 
    width: 60px; height: 60px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: white; 
    font-size: 32px; 
    z-index: 1500; 
}


@media (min-width: 768px) {
    .split-layout { flex-direction: row; align-items: stretch; }
    .split-form, .split-map { flex: 1; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .grid-trends { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .grid-trends { grid-template-columns: repeat(4, 1fr); }
}