/* Contorno animado para botão Orçamento Express no header */
.btn-primary.animated-outline {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-primary.animated-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(217, 173, 38, 0.3), transparent);
  z-index: -1;
  animation: slideShine 3s ease-in-out infinite;
}

@keyframes slideShine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Efeito Glow para o Hero */
.glow-effect {
  color: #fff;
  text-shadow:
    0 0 4px rgba(217, 173, 38, 0.4),
    0 0 8px rgba(217, 173, 38, 0.3),
    0 0 12px rgba(217, 173, 38, 0.2);
  animation: glow-pulse 3s infinite alternate ease-in-out;
}

@keyframes glow-pulse {
  0% {
    text-shadow:
      0 0 4px rgba(217, 173, 38, 0.3),
      0 0 8px rgba(217, 173, 38, 0.2),
      0 0 12px rgba(217, 173, 38, 0.1);
  }
  100% {
    text-shadow:
      0 0 6px rgba(217, 173, 38, 0.5),
      0 0 12px rgba(217, 173, 38, 0.4),
      0 0 18px rgba(217, 173, 38, 0.3);
  }
}
/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #b0b0b0;
}

/* Botões */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(217, 173, 38, 0.15) 0%, rgba(217, 173, 38, 0.25) 100%);
    border: 2px solid #d9ad26;
    color: #d9ad26;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 173, 38, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(217, 173, 38, 0.25) 0%, rgba(217, 173, 38, 0.35) 100%);
    border-color: #e6c043;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 173, 38, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #d9ad26;
    border: 2px solid #d9ad26;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(217, 173, 38, 0.1) 0%, rgba(217, 173, 38, 0.15) 100%);
    border-color: #e6c043;
    color: #e6c043;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 173, 38, 0.2);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Barra de Urgência */
.urgency-bar {
    background: linear-gradient(90deg, rgba(184, 148, 31, 0.15), rgba(217, 173, 38, 0.15));
    border-bottom: 1px solid rgba(217, 173, 38, 0.3);
    color: #d9ad26;
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    position: relative;
    z-index: 1000;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    margin-top: 48px;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand h3 {
    color: #d9ad26;
    font-size: 1.8rem;
    margin: 0;
}

.nav-brand .logo-clan {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.nav-brand .logo-clan:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d9ad26;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
    padding-top: 120px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/bg_fundo.jpg') center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.85);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 173, 38, 0.15);
    border: 2px solid #d9ad26;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: badge-pulse 2s infinite;
}

.hero-badge .badge-icon {
    font-size: 1.2rem;
}

.hero-badge span:last-child {
    color: #d9ad26;
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(217, 173, 38, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(217, 173, 38, 0);
    }
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    padding: 0 1rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.hero-feature-item i {
    color: #d9ad26;
    font-size: 1.1rem;
}

/* Pulse Button */
.pulse-button {
    animation: button-pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(217, 173, 38, 0.7);
}

@keyframes button-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 173, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(217, 173, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(217, 173, 38, 0);
    }
}

.hero-buttons .btn-large i {
    margin-right: 0.5rem;
}

/* Social Proof */
.hero-social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(217, 173, 38, 0.2);
}

.social-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-proof-item strong {
    font-size: 1.8rem;
    color: #d9ad26;
    font-weight: 800;
    display: block;
    margin-bottom: 0.3rem;
}

.social-proof-item span {
    font-size: 0.85rem;
    color: #b0b0b0;
}

.social-proof-divider {
    width: 1px;
    height: 40px;
    background: rgba(217, 173, 38, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: white;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #b0b0b0;
}

/* Studio Section */
.studio-section {
    background: #111111;
}

/* Features Section */
.features-section {
    background: #0a0a0a;
}

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

.feature-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(217, 173, 38, 0.3);
    border-color: #d9ad26;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(217, 173, 38, 0.1) 0%, rgba(217, 173, 38, 0.2) 100%);
    border: 2px solid #d9ad26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #d9ad26;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(217, 173, 38, 0.1) 50%, transparent 60%);
    animation: shine 3s infinite;
}

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

.feature-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #b0b0b0;
}

/* Tour Section */
.tour-section {
    background: #111111;
}

.tour-gallery {
    max-width: 900px;
    margin: 0 auto;
}

.gallery-main {
    margin-bottom: 1rem;
}

.main-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image img:hover {
    transform: scale(1.05);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-thumbnails img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumbnails img:hover {
    border-color: #d9ad26;
    transform: scale(1.05);
}

/* Clients Section */
.clients-section {
    background: #0a0a0a;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #d9ad26;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: white;
    display: block;
}

.testimonial-author span {
    color: #d9ad26;
    font-size: 0.9rem;
}

/* Packages Section */
.packages-section {
    background: #111111;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #2a2a2a;
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(217, 173, 38, 0.3);
}

.package-card.featured {
    border-color: #d9ad26;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(184, 148, 31, 0.2), rgba(217, 173, 38, 0.2));
    border: 2px solid #d9ad26;
    color: #d9ad26;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.package-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d9ad26;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: normal;
}

.package-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-card li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    border-bottom: 1px solid #2a2a2a;
}

.package-card li:last-child {
    border-bottom: none;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 26, 26, 0.95));
    border-top: 1px solid rgba(217, 173, 38, 0.3);
    border-bottom: 1px solid rgba(217, 173, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(217, 173, 38, 0.02) 10px,
            rgba(217, 173, 38, 0.02) 20px
        );
    pointer-events: none;
}

.quote-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-content h2 {
    color: #d9ad26;
    margin-bottom: 0.5rem;
}

.quote-content p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.quote-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-express {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, rgba(217, 173, 38, 0.08), rgba(230, 192, 67, 0.12));
    color: #d9ad26;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #d9ad26;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(217, 173, 38, 0.2);
}

.btn-express::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 173, 38, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-express:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, rgba(217, 173, 38, 0.15), rgba(230, 192, 67, 0.2));
    box-shadow: 0 10px 30px rgba(217, 173, 38, 0.3);
    color: #e6c043;
    border-color: #e6c043;
}

.btn-express:hover::before {
    left: 100%;
}

.btn-express i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.btn-express:hover i {
    transform: translateX(5px);
}

/* Location Section */
.location-section {
    background: #0a0a0a;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h2 {
    color: white;
    margin-bottom: 1rem;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #b0b0b0;
}

.location-feature i {
    color: #d9ad26;
    font-size: 1.2rem;
    width: 20px;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq-section {
    background: #111111;
}

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

.faq-item {
    background: #1a1a1a;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #222222;
}

.faq-question h3 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #d9ad26;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #b0b0b0;
    margin: 0;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 1px solid #2a2a2a;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section .logo-clan {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-section p,
.footer-section li {
    color: #c0c0c0;
    margin-bottom: 0.5rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(217, 173, 38, 0.1), rgba(217, 173, 38, 0.2));
    border: 2px solid #d9ad26;
    color: #d9ad26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, rgba(217, 173, 38, 0.2), rgba(217, 173, 38, 0.3));
    border-color: #e6c043;
    transform: translateY(-2px);
    color: #e6c043;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    margin: 0;
}

/* Quote Form Styles */
.quote-form {
    display: grid;
    gap: 1rem;
}

.form-group {
    text-align: left;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #d9ad26;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(217, 173, 38, 0.05);
    border: 2px solid rgba(217, 173, 38, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(217, 173, 38, 0.1);
    border-color: #d9ad26;
    box-shadow: 0 0 0 3px rgba(217, 173, 38, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: transparent;
    background-image: linear-gradient(135deg, rgba(217, 173, 38, 0.1), rgba(230, 192, 67, 0.15));
    color: #d9ad26;
    padding: 1rem 3rem;
    border: 2px solid #d9ad26;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-image: linear-gradient(135deg, rgba(217, 173, 38, 0.2), rgba(230, 192, 67, 0.25));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 173, 38, 0.3);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 8px;
    }
    h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    h2 {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
    }
    .header {
        margin-top: 0;
        padding: 0.5rem 0;
    }
    .navbar {
        padding: 0.5rem 0;
    }
    .nav-brand .logo-clan {
        height: 40px !important;
    }
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 1rem 1rem 1rem;
        transition: left 0.3s ease;
        opacity: 0;
        visibility: hidden;
        z-index: 1001;
    }
    .nav-menu.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    .nav-menu a, .nav-menu button {
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
    }
    .hero {
        min-height: 70vh;
        padding-top: 100px;
        padding-bottom: 30px;
    }
    .hero-content {
        padding: 0 0.5rem;
    }
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    .hero-features {
        gap: 1rem;
        margin: 1.5rem 0;
    }
    .hero-feature-item {
        font-size: 0.85rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    .hero-buttons .btn-large {
        width: 100%;
        justify-content: center;
    }
    .hero-social-proof {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 1.2rem;
    }
    .social-proof-divider {
        width: 80%;
        height: 1px;
    }
    .social-proof-item strong {
        font-size: 1.5rem;
    }
    section {
        padding: 36px 0;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .features-grid, .packages-grid, .testimonials, .gallery-thumbnails {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .feature-card, .package-card, .testimonial {
        padding: 1.2rem;
    }
    .location-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        text-align: center;
    }
    .footer-section {
        margin-bottom: 1.2rem;
    }
    .footer-section .logo-clan {
        height: 40px;
        margin: 0 auto 1rem auto;
    }
    .footer-section ul {
        padding-left: 0;
    }
    .whatsapp-float {
        bottom: 12px;
        right: 12px;
    }
    .whatsapp-float a {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .main-image img {
        height: 180px;
    }
    .gallery-thumbnails img {
        height: 60px;
    }
    .faq-question {
        padding: 1rem;
    }
    .faq-answer {
        padding: 0 1rem;
    }
}


@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .package-card {
        padding: 1.5rem;
    }

    .btn-express {
        padding: 14px 28px;
        font-size: 1rem;
        gap: 10px;
    }

    .btn-express span {
        font-size: 0.95rem;
    }

    .quote-form {
        padding: 1.5rem;
    }

    .urgency-bar {
        font-size: 0.9rem;
        padding: 10px 0;
    }
}

/* Animações de Scroll */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* Estados de loading */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Menu mobile melhorado */
body.nav-open {
    overflow: hidden;
}

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

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

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

/* Galeria interativa */
.gallery-thumbnails img {
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.gallery-thumbnails img:hover,
.gallery-thumbnails img.active {
    opacity: 1;
    transform: scale(1.05);
    border-color: #d9ad26;
}

.main-image img {
    transition: opacity 0.3s ease;
}

/* Responsividade melhorada para galeria */
@media (max-width: 768px) {
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
        margin-top: 1rem !important;
    }
    
    .gallery-thumbnails img {
        height: 80px !important;
        object-fit: cover;
    }
}

/* Efeitos hover adicionais */
.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    left: 100%;
}
