:root {
    --color-bg-primary: #FFFFFF;
    --color-text-primary: #2C2C2C;
    --color-accent-gold: #C5A059;
    --color-bg-secondary: #F8F9FA;
    --color-footer-bg: #2C2C2C;
    --color-footer-text: #FFFFFF;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
}

/* Header & Nav */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-decoration: none;
}

.logo span {
    color: var(--color-accent-gold);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--color-accent-gold);
}

.cta-btn {
    background-color: var(--color-accent-gold);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background-color: #b08d4f;
}

.cta-outline {
    border: 2px solid var(--color-text-primary);
    color: var(--color-text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-outline:hover {
    background: var(--color-text-primary);
    color: white;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 5%;
    background-color: var(--color-bg-secondary);
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Whatsapp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 100;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* About / EEAT */
.about {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 8px;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

/* Services */
.services {
    padding: 5rem 5%;
    background-color: var(--color-bg-secondary);
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    color: var(--color-accent-gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--color-accent-gold);
    text-decoration: underline;
    font-weight: 600;
}

/* Advantages */
.advantages {
    padding: 5rem 5%;
    display: flex;
    gap: 2rem;
    text-align: center;
}

.adv-item {
    flex: 1;
}

.adv-icon {
    font-size: 2rem;
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
}

.adv-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Gallery */
.gallery {
    padding: 5rem 5%;
    background: var(--color-bg-secondary);
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.masonry img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    background-color: #eee;
}

@media (max-width: 768px) {
    .masonry {
        grid-template-columns: 1fr;
    }
}

/* FAQ */
.faq {
    padding: 5rem 5%;
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

details {
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 1rem;
    padding: 1rem;
}

summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    color: var(--color-accent-gold);
    font-size: 1.25rem;
}

details[open] summary::after {
    content: '-';
}

.faq p {
    margin-top: 1rem;
    color: #555;
}

/* Contact */
.contact {
    padding: 5rem 5%;
    background: var(--color-bg-secondary);
    display: flex;
    gap: 4rem;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.contact-info {
    flex: 1;
}

.map {
    width: 100%;
    height: 300px;
    background: #eee;
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: var(--color-footer-bg);
    color: var(--color-footer-text);
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-nap h3 {
    color: var(--color-accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-nap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nap li {
    margin-bottom: 0.5rem;
}

.footer-badges {
    text-align: right;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-accent-gold);
    border-radius: 4px;
    color: var(--color-accent-gold);
    margin-left: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

.footer-bottom a {
    color: #fff;
    text-decoration: underline;
    margin-left: 1rem;
}

@media (max-width: 768px) {

    .hero,
    .about,
    .contact,
    .advantages {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    nav ul {
        display: none;
    }

    .footer-badges {
        text-align: left;
    }
}