/* Style contents from current setup */
:root {
    --primary-color: #0f3424;
    --secondary-color: #c5a059;
    --bg-light: #f7f9f6;
    --text-dark: #0f0f10;
    --text-light: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, .slogan { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
header { background-color: var(--text-light); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
.logo-area { display: flex; align-items: center; gap: 15px; }
.site-logo { height: 70px; width: auto; border-radius: 50%; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
.logo-text h1 { font-size: 1.5rem; color: var(--primary-color); line-height: 1.1; }
.logo-text span { font-size: 0.85rem; color: var(--primary-color); letter-spacing: 2px; font-weight: 600; display: block; }
.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-link { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); transition: var(--transition); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--primary-color); }
.nav-link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background-color: var(--secondary-color); transition: var(--transition); }
.nav-link:hover::after { width: 100%; }
.header-btn { background-color: #25d366; color: white; padding: 10px 20px; border-radius: 30px; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2); }
.header-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3); background-color: #20ba5a; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 25px; height: 3px; background-color: var(--primary-color); border-radius: 3px; transition: var(--transition); }
.hero { background-color: var(--primary-color); background: linear-gradient(135deg, rgb(15, 52, 36) 0%, rgba(15, 52, 36, 0.75) 100%), url('img/hero.jpg') no-repeat center center/cover; padding: 140px 0 120px 0; color: var(--text-light); text-align: center; position: relative; }
.hero-content { max-width: 900px; margin: 0 auto; }
.hero h2 { font-size: 3.5rem; margin-bottom: 25px; color: var(--secondary-color); text-shadow: 2px 2px 8px rgba(0,0,0,0.9); font-weight: 700; line-height: 1.2; }
.hero p { font-size: 1.5rem; margin-bottom: 45px; color: #ffffff; font-weight: 500; text-shadow: 1px 1px 6px rgba(0,0,0,0.9); line-height: 1.5; }
.hero-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn { padding: 16px 35px; border-radius: 35px; font-weight: 600; font-size: 1.1rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 10px; }
.btn-primary { background-color: var(--secondary-color); color: var(--primary-color); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
.btn-primary:hover { background-color: #b38f4b; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.4); }
.btn-secondary { border: 2px solid var(--text-light); color: var(--text-light); background-color: rgba(0,0,0,0.3); }
.btn-secondary:hover { background-color: var(--text-light); color: var(--primary-color); transform: translateY(-3px); }
.services-section { padding: 80px 0; background-color: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.4rem; color: var(--primary-color); margin-bottom: 15px; }
.section-header p { color: #191a1b; max-width: 600px; margin: 0 auto; font-size: 1.1rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.service-card { background-color: var(--text-light); border-radius: 15px; padding: 35px 25px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); border-bottom: 4px solid transparent; }
.service-card:hover { transform: translateY(-10px); border-bottom: 4px solid var(--secondary-color); }
.service-icon { width: 70px; height: 70px; background-color: rgba(15, 52, 36, 0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; color: var(--primary-color); font-size: 1.8rem; transition: var(--transition); }
.service-card:hover .service-icon { background-color: var(--primary-color); color: var(--secondary-color); }
.service-card h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--primary-color); }
.service-card p { font-size: 0.95rem; color: #191a1b; font-weight: 500; }
.process-section { padding: 80px 0; background-color: #ffffff; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 40px; position: relative; }
.step-card { text-align: center; position: relative; }
.step-number { width: 50px; height: 50px; background-color: var(--secondary-color); color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; margin: 0 auto 20px auto; box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3); }
.step-card h3 { margin-bottom: 10px; color: var(--primary-color); }
.step-card p { font-size: 0.95rem; color: #191a1b; }
.gallery-section { padding: 80px 0; background-color: var(--bg-light); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; }
.gallery-item { background-color: var(--text-light); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.gallery-images { display: flex; position: relative; }
.gallery-img-container { width: 50%; position: relative; }
.gallery-img-container img { width: 100%; height: 320px; object-fit: cover; display: block; }
.badge { position: absolute; bottom: 10px; padding: 4px 12px; border-radius: 4px; font-size: 1rem; font-weight: 600; color: white; }
.badge-before { background-color: #e74c3c; right: 10px; }
.badge-after { background-color: #2ecc71; left: 10px; }
.gallery-info { padding: 15px 20px; text-align: center; }
.gallery-info h4 { color: var(--primary-color); font-size: 1.05rem; }
.contact-section { padding: 80px 0; background-color: #ffffff; }
.contact-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 50px; align-items: center; }
.contact-info h2 { font-size: 2.2rem; color: var(--primary-color); margin-bottom: 20px; }
.contact-info p { color: #191a1b; margin-bottom: 30px; font-size: 1.1rem; }
.contact-method { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.contact-icon { width: 45px; height: 45px; background-color: rgba(15, 52, 36, 0.05); color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-text h4 { font-size: 0.9rem; color: #272828; text-transform: uppercase; letter-spacing: 1px; }
.contact-text p { margin-bottom: 0; font-weight: 600; color: var(--text-dark); font-size: 1.1rem; }
.contact-social a { display: inline-flex; align-items: center; gap: 8px; background-color: #e1306c; color: white; padding: 12px 25px; border-radius: 25px; margin-top: 15px; font-weight: 600; transition: var(--transition); }
.contact-social a:hover { background-color: #c13584; transform: translateY(-2px); }
.contact-logo { width: 180px; height: 180px; border-radius: 50%; margin: 0 auto 20px auto; display: block; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 35px; box-shadow: 2px 2px 15px rgba(0,0,0,0.2); z-index: 2000; transition: var(--transition); animation: pulse 2s infinite; }
.whatsapp-float:hover { background-color: #20ba5a; transform: scale(1.1); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }
footer { background-color: var(--primary-color); color: var(--text-light); padding: 40px 0 20px 0; text-align: center; border-top: 3px solid var(--secondary-color); }
footer p.footer-slogan { font-family: 'Playfair Display', serif; font-style: italic; color: var(--secondary-color); font-size: 1.3rem; margin-bottom: 20px; }
.footer-divider { height: 1px; background-color: rgba(255,255,255,0.1); margin: 20px 0; }
.copyright { font-size: 0.9rem; opacity: 0.8; }
@media (max-width: 992px) { .hero h2 { font-size: 2.8rem; } .hero p { font-size: 1.2rem; } .contact-logo { width: 140px; height: 140px; } }
@media (max-width: 768px) {
    .nav-menu { position: fixed; left: -100%; top: 90px; gap: 0; flex-direction: column; background-color: #ffffff; width: 100%; text-align: center; box-shadow: 0 10px 15px rgba(0,0,0,0.05); transition: 0.3s; padding: 20px 0; }
    .nav-menu.active { left: 0; } .nav-item { margin: 16px 0; width: 100%; } .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); } .hamburger.active span:nth-child(2) { opacity: 0; } .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .header-btn { display: none; } .hero { padding: 100px 0 80px 0; } .hero h2 { font-size: 2.2rem; } .hero p { font-size: 1.1rem; } .section-header h2 { font-size: 2rem; } .logo-text h1 { font-size: 1.2rem; } .site-logo { height: 50px; }
}
