/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores baseada em #440e2e */
    --primary-color: #440e2e;
    --primary-light: #6b1644;
    --primary-dark: #2d0a1e;
    --secondary-color: #d4af37;
    --accent-color: #f4e4d6;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #faf8f6;
    --border-color: #e8e8e8;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(68, 14, 46, 0.15);
    
    /* Fontes */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    /* Transições */
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Sections */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 20px auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    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: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 60px 80px;
    gap: 120px;
    background: 
        radial-gradient(circle at 25% 75%, rgba(198, 151, 2, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 75% 25%, rgba(68, 14, 46, 0.03) 0%, transparent 40%),
        linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c69702' fill-opacity='0.015'%3E%3Ccircle cx='40' cy='40' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: background-float 25s ease-in-out infinite;
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1.2;
    max-width: 520px;
    padding-right: 40px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
    animation: slideInLeft 1s ease-out 0.5s both;
}

.hero-subtitle {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image {
    flex: 1;
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.8s both;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -80px;
    width: 280px;
    height: 400px;
    background: linear-gradient(135deg, 
        rgba(198, 151, 2, 0.03) 0%, 
        rgba(68, 14, 46, 0.05) 40%,
        transparent 70%);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    z-index: 0;
    animation: morph-slow 12s ease-in-out infinite;
    transform: rotate(-8deg);
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -60px;
    width: 180px;
    height: 250px;
    background: linear-gradient(225deg, 
        transparent 0%,
        rgba(198, 151, 2, 0.04) 30%, 
        rgba(68, 14, 46, 0.03) 100%);
    border-radius: 37% 63% 70% 30% / 64% 35% 65% 36%;
    z-index: 0;
    animation: morph-slow 15s ease-in-out infinite reverse;
    transform: rotate(12deg);
}

.hero-image .image-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    height: auto;
    mask: radial-gradient(ellipse 80% 100% at 30% 50%, black 40%, transparent 70%),
          radial-gradient(ellipse 60% 80% at 70% 30%, black 30%, transparent 65%),
          linear-gradient(45deg, transparent 20%, black 40%, black 60%, transparent 80%);
    mask-composite: intersect;
    -webkit-mask: radial-gradient(ellipse 70% 90% at 40% 50%, black 50%, transparent 75%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(1.05) brightness(1.02);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover .image-container {
    transform: scale(1.02) rotate(1deg);
    -webkit-mask: radial-gradient(ellipse 75% 95% at 45% 50%, black 55%, transparent 80%);
    mask: radial-gradient(ellipse 75% 95% at 45% 50%, black 55%, transparent 80%);
}

.hero-image:hover img {
    filter: contrast(1.1) saturate(1.1) brightness(1.05);
}

.hero-image .organic-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.06;
}

.hero-image .organic-shape:nth-child(2) {
    top: 8%;
    right: -15%;
    width: 120px;
    height: 160px;
    background: var(--secondary-color);
    border-radius: 73% 27% 83% 17% / 72% 89% 11% 28%;
    animation: drift 20s ease-in-out infinite;
    transform: rotate(-12deg);
}

.hero-image .organic-shape:nth-child(3) {
    bottom: 15%;
    left: -20%;
    width: 90px;
    height: 140px;
    background: var(--primary-color);
    border-radius: 42% 58% 33% 67% / 89% 23% 77% 11%;
    animation: drift 25s ease-in-out infinite reverse;
    transform: rotate(18deg);
}

.hero-image .organic-shape:nth-child(4) {
    top: 45%;
    right: 5%;
    width: 50px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 89% 11% 78% 22% / 13% 87% 13% 87%;
    animation: drift 18s ease-in-out infinite;
    transform: rotate(-25deg);
}



@keyframes morph-slow {
    0%, 100% {
        border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
        transform: rotate(-8deg) scale(1);
    }
    25% {
        border-radius: 47% 53% 68% 32% / 71% 29% 71% 29%;
        transform: rotate(-3deg) scale(1.02);
    }
    50% {
        border-radius: 82% 18% 37% 63% / 45% 89% 11% 55%;
        transform: rotate(-12deg) scale(0.98);
    }
    75% {
        border-radius: 29% 71% 75% 25% / 64% 35% 65% 36%;
        transform: rotate(-6deg) scale(1.01);
    }
}

@keyframes drift {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        border-radius: 73% 27% 83% 17% / 72% 89% 11% 28%;
    }
    25% {
        transform: translateY(-8px) translateX(3px) rotate(2deg);
        border-radius: 83% 17% 73% 27% / 89% 11% 28% 72%;
    }
    50% {
        transform: translateY(5px) translateX(-2px) rotate(-1deg);
        border-radius: 27% 73% 17% 83% / 11% 72% 89% 28%;
    }
    75% {
        transform: translateY(-3px) translateX(4px) rotate(1deg);
        border-radius: 17% 83% 27% 73% / 28% 89% 72% 11%;
    }
}

@keyframes background-float {
    0%, 100% {
        transform: translateX(0px) translateY(0px);
    }
    33% {
        transform: translateX(30px) translateY(-30px);
    }
    66% {
        transform: translateX(-20px) translateY(20px);
    }
}

@keyframes slideInLeft {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.schedule-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    font-size: 1.1rem;
    padding: 18px 35px;
    box-shadow: var(--shadow);
}

.schedule-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

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

.feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    width: 20px;
}

.feature span {
    font-weight: 600;
    color: var(--text-dark);
}

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

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

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

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}

/* Gallery Section */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(68, 14, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

.service-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(198, 151, 2, 0.9);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.gallery-loading i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gallery-loading p {
    font-size: 1.1rem;
}

.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    background: var(--light-bg);
    border-radius: 15px;
    border: 2px dashed var(--border-color);
}

.gallery-empty p {
    font-size: 1.1rem;
    margin: 0;
}

.service-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(198, 151, 2, 0.9);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

/* Reviews Section */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

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

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--primary-color);
    font-family: var(--font-primary);
    line-height: 1;
}

.review-stars {
    margin-bottom: 20px;
}

.review-stars i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 0 2px;
}

.review-text {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 5px;
    min-width: 25px;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-cta {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-cta h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-cta p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.schedule-contact-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.schedule-contact-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* FAQ Section */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.faq-item h3 {
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-social h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 600;
    border: 2px solid;
}

.whatsapp-btn {
    color: #25d366;
    border-color: #25d366;
}

.whatsapp-btn:hover {
    background: #25d366;
    color: var(--white);
    transform: translateY(-2px);
}

.instagram-btn {
    color: #e4405f;
    border-color: #e4405f;
}

.instagram-btn:hover {
    background: #e4405f;
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--secondary-color);
    width: 20px;
}

.footer-social h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-buttons-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-btn-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 25px;
    transition: var(--transition);
    font-weight: 500;
    border: 2px solid;
    background: transparent;
}

.social-btn-footer.whatsapp-btn {
    color: #25d366;
    border-color: #25d366;
}

.social-btn-footer.whatsapp-btn:hover {
    background: #25d366;
    color: var(--white);
    transform: translateY(-2px);
}

.social-btn-footer.instagram-btn {
    color: #e4405f;
    border-color: #e4405f;
}

.social-btn-footer.instagram-btn:hover {
    background: #e4405f;
    color: var(--white);
    transform: translateY(-2px);
}

.social-btn-footer i {
    font-size: 1.2rem;
}

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

/* Tablet */
@media (min-width: 769px) and (max-width: 1199px) {
    .hero {
        padding: 100px 40px 60px;
        gap: 80px;
    }
    
    .hero-content {
        max-width: 450px;
        padding-right: 40px;
    }
    
    .hero-image {
        max-width: 380px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .hero {
        padding: 120px 80px 80px;
        gap: 160px;
    }
    
    .hero-content {
        max-width: 580px;
        padding-right: 60px;
    }
    
    .hero-image {
        max-width: 480px;
    }
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
    .hero {
        gap: 200px;
        padding: 120px 100px 80px;
    }
    
    .hero-content {
        padding-right: 80px;
    }
    
    .hero-image {
        max-width: 500px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
        gap: 40px;
    }
    
    .hero-content {
        margin-bottom: 0;
        padding-right: 0;
        max-width: 100%;
    }
    
    .hero-image {
        margin: 0 auto;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        max-width: 320px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .reviews-slider {
        grid-template-columns: 1fr;
    }
    
    .social-buttons-footer {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }
    
    .social-btn-footer {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .social-btn-footer span {
        display: none;
    }
    
    .social-btn-footer i {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .filter-btn {
        white-space: nowrap;
        min-width: auto;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}