:root {
    --bg-color: #fafaf9;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --primary: #10b981; /* emerald green */
    --primary-hover: #059669;
    --secondary: #ec4899; /* pink */
    --secondary-hover: #db2777;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.05);
    --accent-glow: rgba(16, 185, 129, 0.25);
    --pink-glow: rgba(236, 72, 153, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.02);
}

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

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.nav-links li a.btn-primary {
    color: #fff;
}

.nav-links li a.btn-primary:hover {
    color: #fff;
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-secondary {
    background: #fff;
    color: var(--text-color);
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    display: inline-block;
}

.btn-secondary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    border-color: #94a3b8;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 5%;
    text-align: center;
    background: url('PHOTO-2026-04-03-17-25-11%202.jpg') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.65);
    z-index: 1;
}

.hero-content {
    max-width: 850px;
    z-index: 10;
    position: relative;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--text-color);
}

.hero h1 span {
    background: linear-gradient(90deg, #10b981, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
}

/* Glassmorphism utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* Services */
.services {
    padding: 8rem 5%;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 992px) {
    .services-tabs-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.tabs-nav {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
    gap: 1rem;
    padding-bottom: 1rem;
    flex: 1 1 300px;
}

@media (min-width: 992px) {
    .tabs-nav {
        flex-direction: column;
        overflow-x: visible;
        overflow-y: visible;
        touch-action: auto;
        padding-bottom: 0;
    }
}

.tab-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn svg {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.tab-btn:hover {
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tab-btn.active {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 5px 20px var(--accent-glow);
    color: var(--primary);
}

.tab-btn.active svg {
    color: var(--primary);
}

.tabs-content {
    flex: 2 1 700px;
    position: relative;
    width: 100%;
}

.tab-pane {
    display: none;
    padding: 3rem;
    border-radius: 20px;
    animation: fadeIn 0.4s ease forwards;
}

.tab-pane.active {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .tab-pane.active {
        flex-direction: row;
        align-items: center;
    }
}

.tab-text {
    flex: 1;
}

.tab-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.tab-text p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.tab-features {
    list-style: none;
    margin-top: 2rem;
}

.tab-features.double-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
}

@media (max-width: 600px) {
    .tab-features.double-col {
        grid-template-columns: 1fr;
    }
}

.tab-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-weight: 500;
}

.tab-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.tab-media {
    flex: 1;
}

.tab-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 991px) {
    .tabs-nav::-webkit-scrollbar {
        height: 6px;
    }
    .tabs-nav::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 10px;
    }
    .tab-btn {
        flex-shrink: 0;
    }
    .tab-btn:hover {
        transform: translateY(-2px);
    }
}


/* Contact CTA */
.contact-cta {
    padding: 0 5% 8rem;
    display: flex;
    justify-content: center;
}

.cta-box {
    text-align: center;
    padding: 5rem 3rem;
    max-width: 800px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .contact-details {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--accent-glow);
    transform: translateY(-2px);
}

.contact-link.whatsapp-link {
    color: #128c7e;
    border-color: rgba(18, 140, 126, 0.3);
}

.contact-link.whatsapp-link:hover {
    border-color: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 450px;
    margin: 0 auto;
}

.contact-form input {
    padding: 1.1rem 1.5rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder {
    color: #94a3b8;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px var(--accent-glow);
}

/* Footer */
footer {
    padding: 3rem 5%;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.2s;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards 0.8s;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

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

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .cta-box {
        padding: 3rem 1.5rem;
    }
}
