/* ===== CSS RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #D4AF37;
    --primary-light: #F4E4BC;
    --primary-dark: #B8941F;
    --secondary-color: #F8E8E8;
    --accent-color: #E8F4F8;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --gray-dark: #6c757d;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Font Sizes */
    --h1-font-size: 3rem;
    --h2-font-size: 2.5rem;
    --h3-font-size: 2rem;
    --h4-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;
    
    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    
    /* Spacing */
    --mb-0-25: 0.25rem;
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-25: 1.25rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;
    --mb-4: 4rem;
    --mb-5: 5rem;
    --mb-6: 6rem;
    
    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;
    --border-radius-xl: 2rem;
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media screen and (max-width: 992px) {
    :root {
        --h1-font-size: 2.5rem;
        --h2-font-size: 2rem;
        --h3-font-size: 1.75rem;
        --h4-font-size: 1.25rem;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --h1-font-size: 2rem;
        --h2-font-size: 1.75rem;
        --h3-font-size: 1.5rem;
        --h4-font-size: 1.125rem;
    }
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    padding: var(--mb-6) 0;
}

.section__subtitle {
    display: block;
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--mb-0-5);
}

.section__title {
    font-family: var(--font-secondary);
    font-size: var(--h2-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--text-color);
    margin-bottom: var(--mb-1);
    line-height: 1.2;
}

.section__description {
    color: var(--text-light);
    margin-bottom: var(--mb-2);
    max-width: 600px;
}

.section__header {
    text-align: center;
    margin-bottom: var(--mb-4);
}

.section__header .section__description {
    margin: 0 auto var(--mb-2);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    border-radius: var(--border-radius-md);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn--ghost {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn--ghost:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn--large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    z-index: var(--z-fixed);
    transition: var(--transition);
}

.nav {
    height: 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: var(--font-semi-bold);
    color: var(--text-color);
}

.nav__logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.nav__logo-text-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    font-weight: var(--font-medium);
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    opacity: 0.3;
    z-index: -1;
}

.hero__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.hero__data {
    z-index: 1;
}

.hero__title {
    font-family: var(--font-secondary);
    font-size: var(--h1-font-size);
    font-weight: var(--font-bold);
    line-height: 1.1;
    margin-bottom: var(--mb-1);
}

.hero__title-accent {
    color: var(--primary-color);
    position: relative;
}

.hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--mb-2);
    line-height: 1.7;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--mb-3);
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    line-height: 1;
}

.hero__stat-text {
    font-size: var(--small-font-size);
    color: var(--text-light);
    font-weight: var(--font-medium);
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__img {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-heavy);
    z-index: 1;
}

.hero__image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    opacity: 0.8;
    z-index: -1;
}

.hero__image-decoration::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
}

/* ===== ABOUT SECTION ===== */
.about__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.about__image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about__img {
    width: 350px;
    height: 450px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-medium);
}

.about__image-decoration {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    opacity: 0.7;
    z-index: -1;
}

.about__data {
    padding-left: 2rem;
}

.about__description {
    color: var(--text-light);
    margin-bottom: var(--mb-1);
    line-height: 1.7;
}

.about__credentials {
    margin: var(--mb-2) 0;
}

.about__credential {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--mb-0-75);
    color: var(--text-light);
}

.about__credential i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--gray-light);
}

.services__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: var(--mb-3);
}

.service__card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.service__card:hover::before {
    transform: scaleX(1);
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--mb-1);
    transition: var(--transition);
}

.service__icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service__card:hover .service__icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.service__card:hover .service__icon i {
    color: var(--white);
}

.service__title {
    font-size: var(--h4-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-0-75);
    color: var(--text-color);
}

.service__description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: var(--mb-3);
}

.testimonial__card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.testimonial__card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.testimonial__stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--mb-1);
}

.testimonial__stars i {
    color: #ffd700;
    font-size: 1.125rem;
}

.testimonial__text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--mb-1-5);
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial__img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial__name {
    font-weight: var(--font-semi-bold);
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.testimonial__profession {
    font-size: var(--small-font-size);
    color: var(--text-light);
}

/* ===== BEFORE AFTER SECTION ===== */
.before-after {
    background: var(--gray-light);
}

.before-after__slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
}

.before-after__slide {
    display: none;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.before-after__slide.active {
    display: block;
}

.before-after__comparison {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.before-after__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after__info {
    padding: 2rem;
    text-align: center;
}

.before-after__title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--text-color);
    margin-bottom: var(--mb-0-75);
}

.before-after__description {
    color: var(--text-light);
    line-height: 1.6;
}

.before-after__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: var(--mb-2);
}

.before-after__btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    color: var(--primary-color);
    font-size: 1.25rem;
}

.before-after__btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.before-after__dots {
    display: flex;
    gap: 0.5rem;
}

.before-after__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
}

.before-after__dot.active,
.before-after__dot:hover {
    background: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact__container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__info {
    margin-top: var(--mb-2);
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: var(--mb-1-5);
}

.contact__info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact__info-item h4 {
    font-weight: var(--font-semi-bold);
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.contact__info-item span {
    color: var(--text-light);
    display: block;
}

.contact__form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
}

.contact__form-group {
    margin-bottom: var(--mb-1-5);
    position: relative;
}

.contact__input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-medium);
    border-radius: var(--border-radius-md);
    font-size: var(--normal-font-size);
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.contact__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact__label {
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    background: var(--white);
    padding: 0 0.5rem;
    font-size: var(--small-font-size);
    color: var(--text-light);
}

.contact__btn {
    width: 100%;
    margin-top: var(--mb-1);
}

/* ===== LOCATION SECTION ===== */
.location {
    background: var(--gray-light);
}

.location__content {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: var(--mb-3);
}

.location__map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.location__map iframe {
    border-radius: var(--border-radius-lg);
}

.location__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location__contact h3,
.location__hours h3 {
    font-size: var(--h4-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--text-color);
    margin-bottom: var(--mb-1);
}

.location__contact-item {
    margin-bottom: var(--mb-0-75);
}

.location__contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    transition: var(--transition);
}

.location__contact-link:hover {
    color: var(--primary-color);
}

.location__contact-link i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.location__hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-medium);
    color: var(--text-light);
}

.location__hours-item:last-child {
    border-bottom: none;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-color);
    color: var(--white);
    padding: var(--mb-4) 0 var(--mb-2);
}

.footer__container {
    grid-template-columns: 1fr;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: var(--mb-3);
}

.footer__logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: var(--font-semi-bold);
    color: var(--primary-color);
    margin-bottom: var(--mb-0-75);
    display: block;
}

.footer__description {
    color: #cccccc;
    line-height: 1.6;
}

.footer__title {
    font-size: var(--h4-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-1);
    color: var(--white);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__link {
    color: #cccccc;
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--primary-color);
}

.footer__contact-info p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-top: var(--mb-1);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: var(--transition);
}

.footer__social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer__bottom {
    border-top: 1px solid #444444;
    padding-top: var(--mb-2);
}

.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copy {
    color: #cccccc;
    font-size: var(--small-font-size);
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

.footer__legal-link {
    color: #cccccc;
    font-size: var(--small-font-size);
    transition: var(--transition);
}

.footer__legal-link:hover {
    color: var(--primary-color);
}

/* ===== SCROLL UP BUTTON ===== */
.scrollup {
    position: fixed;
    right: 1rem;
    bottom: -20%;
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    z-index: var(--z-tooltip);
}

.scrollup:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.scrollup.show-scroll {
    bottom: 3rem;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 6rem;
    background: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
    z-index: var(--z-tooltip);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero__container,
    .about__container,
    .contact__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero__image,
    .about__image {
        order: -1;
    }
    
    .location__content {
        grid-template-columns: 1fr;
    }
    
    .services__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        z-index: var(--z-modal);
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .nav__link {
        font-size: 1.25rem;
    }
    
    .nav__close,
    .nav__toggle {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }
    
    .hero {
        padding-top: 6rem;
        text-align: center;
    }
    
    .hero__buttons {
        justify-content: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__img {
        width: 300px;
        height: 400px;
    }
    
    .about__data {
        padding-left: 0;
        text-align: center;
    }
    
    .about__img {
        width: 280px;
        height: 350px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact__form {
        padding: 1.5rem;
    }
    
    .footer__bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        right: 1rem;
        bottom: 5rem;
        width: 55px;
        height: 55px;
    }
    
    .scrollup {
        width: 45px;
        height: 45px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: var(--mb-4) 0;
    }
    
    .hero__img {
        width: 250px;
        height: 320px;
    }
    
    .about__img {
        width: 240px;
        height: 300px;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .btn--large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__stats {
        gap: 1rem;
    }
    
    .service__card,
    .testimonial__card {
        padding: 1.5rem;
    }
    
    .contact__form {
        padding: 1.25rem;
    }
    
    .before-after__controls {
        gap: 1rem;
    }
    
    .before-after__btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
}

.animate-on-scroll.animate {
    animation-name: fadeInUp;
}

.animate-on-scroll.animate-left {
    animation-name: fadeInLeft;
}

.animate-on-scroll.animate-right {
    animation-name: fadeInRight;
}


/* ===== FORM VALIDATION STYLES ===== */
.contact__input.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.error-message {
    color: #dc3545;
    font-size: var(--small-font-size);
    margin-top: 0.25rem;
    display: block;
}

/* ===== FORM MESSAGES ===== */
.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    margin-bottom: var(--mb-1);
    font-weight: var(--font-medium);
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message i {
    font-size: 1.25rem;
}

/* ===== LOADING STATES ===== */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ===== SCROLL HEADER ===== */
.header.scroll-header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

/* ===== LAZY LOADING ===== */
img {
    transition: opacity 0.3s ease;
}

img[data-src] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}


/* ===== FIX PARA CARDS DE SERVIÇOS ===== */
.service__card {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    min-height: 200px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


/* ===== CLINIC GALLERY SECTION ===== */
.clinic-gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: var(--mb-3);
}

.clinic-gallery__item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.clinic-gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.clinic-gallery__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.clinic-gallery__item:hover .clinic-gallery__img {
    transform: scale(1.05);
}

.clinic-gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.clinic-gallery__item:hover .clinic-gallery__overlay {
    transform: translateY(0);
}

.clinic-gallery__overlay h4 {
    font-size: var(--h4-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-0-5);
}

.clinic-gallery__overlay p {
    font-size: var(--small-font-size);
    opacity: 0.9;
}

/* ===== SERVICE ICON IMAGES ===== */
.service__icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* ===== FOOTER LOGO ===== */
.footer__logo-img {
    width: 225px;
    height: auto;
    margin-top: var(--mb-1);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media screen and (max-width: 768px) {
    .clinic-gallery__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .clinic-gallery__img {
        height: 250px;
    }
    
    .service__icon-img {
        width: 50px;
        height: 50px;
    }
    
    .footer__logo-img {
        width: 180px;
    }
}


/* ===== CORREÇÃO PARA IMAGEM HERO ===== */
.hero__img {
    object-position: center top !important;
    transform: translateY(-20px) !important;
}

/* ===== CORREÇÃO PARA DEPOIMENTOS ===== */
.testimonial__card {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    min-height: 200px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ===== CORREÇÃO PARA GALERIA DO CONSULTÓRIO ===== */
.clinic-gallery__item {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


/* ===== CORREÇÃO PARA IMAGENS DA GALERIA ===== */
.clinic-gallery__img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    border-radius: 15px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.clinic-gallery__item {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* ===== CORREÇÃO PARA IMAGENS DOS DEPOIMENTOS ===== */
.testimonial__img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}


/* ===== GOOGLE REVIEWS SECTION ===== */
.google-reviews {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.google-reviews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.google-reviews__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.google-reviews__summary {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: sticky;
    top: 100px;
}

.google-reviews__rating {
    margin-bottom: 20px;
}

.google-reviews__stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.google-reviews__stars i {
    color: #ffd700;
    font-size: 24px;
}

.google-reviews__score {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.google-reviews__total {
    color: var(--text-color-light);
    margin-bottom: 30px;
    font-size: 14px;
}

.google-reviews__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4285f4;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.google-reviews__link:hover {
    background: #3367d6;
    transform: translateY(-2px);
}

.google-reviews__link i {
    font-size: 20px;
}

.google-reviews__testimonials {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.google-review__card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.google-review__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.google-review__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.google-review__stars {
    display: flex;
    gap: 3px;
}

.google-review__stars i {
    color: #ffd700;
    font-size: 16px;
}

.google-review__date {
    color: var(--text-color-light);
    font-size: 14px;
}

.google-review__text {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.google-review__author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.google-review__name {
    font-weight: 600;
    color: var(--primary-color);
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    .google-reviews__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .google-reviews__summary {
        position: static;
        padding: 30px;
    }
    
    .google-reviews__score {
        font-size: 36px;
    }
    
    .google-review__card {
        padding: 20px;
    }
    
    .google-review__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


/* ===== FAQ SECTION ===== */
.faq {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 50px 0 40px;
}

.faq__tab {
    background: #f5f5f5;
    color: var(--text-color);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.faq__tab:hover,
.faq__tab--active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.faq__content {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.faq__question:hover {
    background: #f8f9fa;
}

.faq__question span {
    flex: 1;
    margin-right: 20px;
}

.faq__icon {
    font-size: 20px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq__icon.rotate {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 30px 25px;
    color: var(--text-color-light);
    line-height: 1.6;
    display: none;
}

.faq__answer.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* ===== GOOGLE REVIEW LINK ===== */
.location__hours-note {
    margin-top: 20px;
    color: var(--text-color-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location__hours-note i {
    color: var(--primary-color);
}

.location__google-review {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.google-review-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.google-review-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.google-review-stars {
    display: flex;
    gap: 3px;
}

.google-review-stars i {
    color: #ffd700;
    font-size: 18px;
}

.google-review-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4285f4;
    font-weight: 600;
    font-size: 14px;
}

.google-review-text i {
    font-size: 16px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    .faq__tabs {
        gap: 10px;
    }
    
    .faq__tab {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .faq__question {
        padding: 20px;
        font-size: 15px;
    }
    
    .faq__answer {
        padding: 0 20px 20px;
    }
    
    .google-review-link {
        padding: 15px;
    }
}


/* ===== CORREÇÕES PARA SEÇÃO DE LOCALIZAÇÃO ===== */
.location__container {
    display: block;
}

.location__map {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.location__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ===== BOTÃO GOOGLE NO RODAPÉ ===== */
.footer__social {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.google-review-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--first-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.google-review-footer:hover {
    background: var(--first-color-alt);
    transform: translateY(-2px);
}

.google-review-footer span {
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
}

/* ===== RESPONSIVO ===== */
@media screen and (max-width: 768px) {
    .location__container {
        display: block;
    }
    
    .google-review-footer span {
        display: none;
    }
}


/* ===== GALERIA ANTES E DEPOIS ===== */
.before-after__gallery {
    margin-top: 3rem;
}

.before-after__row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.before-after__case {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.before-after__case:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.before-after__case-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.before-after__case:hover .before-after__case-img {
    transform: scale(1.05);
}

.before-after__case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.before-after__case:hover .before-after__case-overlay {
    transform: translateY(0);
}

.before-after__case-number {
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    font-size: var(--small-font-size);
}

/* Responsividade para a galeria */
@media screen and (max-width: 1024px) {
    .before-after__row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .before-after__row {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .before-after__case-img {
        height: 150px;
    }
}

@media screen and (max-width: 480px) {
    .before-after__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .before-after__case-img {
        height: 120px;
    }
}


/* Responsividade adicional para tablets */
@media screen and (max-width: 1024px) {
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media screen and (max-width: 480px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial__card {
        padding: 1.5rem;
    }
}

