:root {
    --gold: #C9A646;
    --white: #FFFFFF;
    --black: #1a1a1a;
    --gray: #666;
    --light-gray: #f5f5f5;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

.nav-desktop {
    display: none;
}

.nav-desktop a {
    color: var(--black);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-desktop a:hover {
    color: var(--gold);
}

.menu-toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-mobile {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 15px var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
    pointer-events: none;
}

.nav-mobile.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.nav-mobile a {
    color: var(--black);
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-mobile a:hover {
    color: var(--gold);
}

.hero {
    margin-top: 70px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero .container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 12px;
    color: var(--black);
    margin-bottom: 18px;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 166, 70, 0.3);
}

.cta-button:hover {
    background: var(--white);
    color: var(--gold);
    box-shadow: 0 4px 20px rgba(201, 166, 70, 0.4);
    transform: translateY(-2px);
}

.section-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--black);
    font-weight: 600;
}

.services {
    padding: 60px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
}

.service-icon {
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(201, 166, 70, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    overflow: hidden;
}

.benefits-container {
    margin-top: 60px;
    position: relative;
}

.benefits-image-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 600px;
}

.benefits-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.benefit-point {
    position: absolute;
    z-index: 10;
}

.point-dot {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border: 3px solid var(--white);
    border-radius: 50%;
    position: relative;
    z-index: 3;
    cursor: pointer;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 20px rgba(201, 166, 70, 0.5);
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(201, 166, 70, 0.5);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(201, 166, 70, 0.8);
    }
}

.point-line {
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.point-line::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    right: -4px;
    top: -3px;
}

.point-line.right {
    left: auto;
    right: 100%;
    background: linear-gradient(-90deg, var(--gold), transparent);
}

.point-line.right::before {
    right: auto;
    left: -4px;
}

.point-line.bottom {
    width: 2px;
    height: 80px;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--gold), transparent);
}

.point-line.bottom::before {
    left: -3px;
    bottom: -4px;
    top: auto;
}

.benefit-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 120px;
    white-space: nowrap;
}

.benefit-text span {
    color: var(--gold);
    font-weight: 600;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
    border: 2px solid var(--gold);
}

.benefit-text.right {
    left: auto;
    right: 120px;
}

.benefit-point:hover .point-dot {
    transform: scale(1.3);
    background: var(--white);
    border-color: var(--gold);
}

.benefit-point:hover .benefit-text span {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.05);
}

.benefits-cta {
    text-align: center;
    margin-top: 60px;
}

.benefits-subtitle {
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .benefits-image-wrapper {
        min-height: auto;
    }

    .benefit-text {
        left: 80px;
    }

    .benefit-text.right {
        right: 80px;
    }

    .benefit-text span {
        font-size: 14px;
        padding: 3px 10px;
    }

    .point-line {
        width: 60px;
    }
}

.about {
    padding: 60px 0;
    background: var(--light-gray);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-image {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px var(--shadow);
}

.about-text {
    flex: 1;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-text blockquote {
    font-style: italic;
    color: var(--gold);
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin: 20px 0;
    font-weight: 500;
}

.results {
    padding: 60px 0;
    background: var(--white);
}

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

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

.result-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 166, 70, 0.3);
}

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

.result-item:hover img {
    transform: scale(1.1);
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.result-item:hover .result-overlay {
    transform: translateY(0);
}

.result-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.results-cta {
    text-align: center;
}

.results-cta p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonials {
    padding: 60px 0;
    background: var(--light-gray);
}

.testimonials-carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-card span {
    color: var(--gold);
    font-weight: 600;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--gray);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    width: 25px;
    border-radius: 5px;
}

.cta-final {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.cta-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-final .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    padding: 30px 20px;
}

.cta-final .section-title {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-final p {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 14px;
}

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

.social-links a {
    display: flex;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(201, 166, 70, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 166, 70, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(201, 166, 70, 0.6);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(201, 166, 70, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(201, 166, 70, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(201, 166, 70, 0.4);
    }
}

.results {
    padding: 80px 0;
    background: var(--white);
}

.results-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 50px;
    font-size: 18px;
}

.results-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.result-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(201, 166, 70, 0.2);
}

.result-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.result-item.before-after img {
    object-fit: contain;
    background: var(--light-gray);
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.result-item:hover .result-overlay {
    transform: translateY(0);
}

.result-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.result-cta {
    background: var(--white);
    color: var(--gold);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.result-cta:hover {
    background: var(--gold);
    color: var(--white);
}

.results-cta {
    text-align: center;
}

.results-cta p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 16px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slideIn 0.3s ease;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--gold);
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-info {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    text-align: center;
    max-width: 500px;
}

.modal-title {
    color: var(--black);
    font-size: 24px;
    margin-bottom: 10px;
}

.modal-description {
    color: var(--gray);
    margin-bottom: 20px;
}

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

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

@media (min-width: 768px) {
    .header-content {
        padding: 20px 0;
    }

    .logo-img {
        height: 60px;
    }

    .nav-desktop {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .nav-mobile {
        display: none;
    }

    .hero-image {
        height: 500px;
    }

    .hero .container {
        bottom: 80px;
    }

    .hero-content {
        padding: 40px;
    }

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

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

    .services {
        padding: 80px 0;
    }

    .services-grid {
        gap: 30px;
    }

    .about {
        padding: 80px 0;
    }

    .about-content {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .about-image {
        flex: 0 0 400px;
    }

    .testimonials {
        padding: 80px 0;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-info {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}