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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; /* Compensar altura do header fixo */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid #FFD700;
}

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

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    min-height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    color: #FFD700;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
}

.logo svg {
    margin-right: 10px;
    color: #FFD700;
    flex-shrink: 0;
}

.logo span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: 0.3s ease;
    transform-origin: center;
}

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

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

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

.nav-menu {
    display: flex;
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 15px;
    white-space: nowrap;
    border-radius: 8px;
    cursor: pointer;
    display: block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: calc(100% - 30px);
}

.nav-link.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.15);
    font-weight: 600;
}

.nav-link.active::after {
    width: calc(100% - 30px);
}

/* Remover efeitos de clique persistentes */
.nav-link:focus {
    outline: none;
}

.nav-link:active {
    transform: translateY(0);
}

/* Hero Section - SOLUÇÃO DEFINITIVA */
.hero {
    min-height: 100vh;
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* APLICAÇÃO DIRETA DO BACKGROUND */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    z-index: 3;
    position: relative;
    animation: fadeInUp 1s ease-out;
    padding: 2rem;
    width: 100%;
    margin: 0 auto;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.title-line {
    display: block;
    color: #fff;
    animation: slideInLeft 1s ease-out 0.3s both;
    text-align: center;
}

.title-highlight {
    display: block;
    color: #FFD700;
    animation: slideInRight 1s ease-out 0.6s both;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    text-align: center;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content-text {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #ccc;
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease-out 0.9s both;
    text-align: center;
    max-width: 700px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

.hero-content-text p {
    margin-bottom: 1rem;
}

.hero-content-text ul, .hero-content-text ol {
    text-align: left;
    max-width: 500px;
    margin: 1rem auto;
}

.hero-content-text h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
    width: 100%;
}

/* Controles do Carrossel do Hero */
.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-carousel-btn:hover {
    background: #FFD700;
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel-btn svg {
    color: #000;
}

.hero-carousel-prev {
    left: 30px;
}

.hero-carousel-next {
    right: 30px;
}

.hero-carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background: #FFD700;
    transform: scale(1.3);
}

.hero-indicator:hover {
    background: rgba(255, 215, 0, 0.8);
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::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 ease;
}

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

.btn-primary {
    background: #FFD700;
    color: #000;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

.btn-secondary:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(rgba(248, 249, 250, 0.95), rgba(248, 249, 250, 0.95)), url('https://images.pexels.com/photos/5668858/pexels-photo-5668858.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 249, 250, 0.9);
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.highlight {
    color: #FFD700;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #FFD700;
    background: rgba(255, 255, 255, 1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #FFD700;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: #FFC107;
}

.service-icon svg {
    color: #000;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features li {
    color: #555;
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 18px;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.btn-service {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

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

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

.btn-service:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.pexels.com/photos/5668473/pexels-photo-5668473.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

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

.about-text .section-title {
    color: #fff;
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
}

.about-description {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(8px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: #FFD700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    color: #000;
}

.stat-content h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.3rem;
}

.stat-content p {
    color: #ccc;
    font-weight: 500;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carrossel de Fotos */
.photo-carousel {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background: #000;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.carousel-slide:hover .photo-overlay {
    transform: translateY(0);
}

.photo-overlay h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.photo-overlay p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ccc;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #FFD700;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn svg {
    color: #000;
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #FFD700;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 215, 0, 0.8);
}

/* Placeholder padrão (caso não existam fotos) */
.image-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #FFD700, #FFC107);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}

.image-placeholder svg {
    color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(rgba(248, 249, 250, 0.95), rgba(248, 249, 250, 0.95)), url('https://images.pexels.com/photos/5668882/pexels-photo-5668882.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 249, 250, 0.9);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.8rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 18px;
    font-size: 3rem;
    color: #FFD700;
    font-weight: bold;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

/* Estilos para depoimentos com vídeo */
.testimonial-video {
    margin-bottom: 1.5rem;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Estilos para depoimentos de texto */
.testimonial-content {
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.testimonial-content p {
    color: #555;
    font-style: italic;
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.testimonial-author h4 {
    color: #000;
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.testimonial-author span {
    color: #FFD700;
    font-weight: 500;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.pexels.com/photos/5668774/pexels-photo-5668774.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info .section-title {
    color: #fff;
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
}

.contact-description {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-items {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateX(8px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: #FFD700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: #000;
}

.contact-item h4 {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.contact-item p {
    color: #ccc;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    word-break: break-word;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group select {
    color: #fff;
}

.form-group select option {
    background: #000;
    color: #fff;
}

.btn-full {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(rgba(17, 17, 17, 0.95), rgba(17, 17, 17, 0.95)), url('https://images.pexels.com/photos/5668473/pexels-photo-5668473.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ccc;
    padding: 2.5rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.9);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

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

.footer-section h4 {
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-logo {
    display: flex;
    align-items: center;
    color: #FFD700;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.footer-logo svg {
    margin-right: 8px;
    flex-shrink: 0;
}

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

.footer-section ul li {
    margin-bottom: 0.4rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.footer-section p {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    line-height: 1.5;
}

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

.footer-bottom p {
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    margin-bottom: 0.5rem;
}

/* Developer Credit */
.developer-credit {
    font-size: clamp(0.65rem, 1.2vw, 0.75rem);
    color: #888;
    margin-top: 0.5rem;
    font-style: italic;
}

.developer-credit a {
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.developer-credit a:hover {
    color: #FFC107;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.developer-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.developer-credit a:hover::after {
    width: 100%;
}

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

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideInDown 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
}

@keyframes slideInDown {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    color: #999;
    float: right;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #000;
}

/* Enhanced Scroll Animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: 1px solid rgba(255, 215, 0, 0.3);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }

    .nav-menu ul li {
        text-align: center;
        padding: 0;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
        margin: 0;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 215, 0, 0.1);
        color: #FFD700;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }

    .hero-content {
        padding: 1rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }

    .hero-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .hero-carousel-prev {
        left: 15px;
    }

    .hero-carousel-next {
        right: 15px;
    }

    .hero-carousel-indicators {
        bottom: 20px;
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-card {
        min-height: auto;
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }

    /* Carrossel responsivo */
    .carousel-container {
        height: 300px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    /* Disable parallax on mobile for better performance */
    .hero,
    .services,
    .about,
    .testimonials,
    .contact,
    .footer {
        background-attachment: scroll !important;
    }
    
    /* Forçar scroll em mobile para hero background */
    .hero-slide {
        background-attachment: scroll !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .header .container {
        padding: 1rem 15px;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo span {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 0.5rem;
        max-width: 100%;
    }

    .service-card,
    .testimonial-card {
        padding: 1.2rem;
    }

    .contact-form {
        padding: 1.2rem;
    }

    .carousel-container {
        height: 250px;
    }

    .modal-content {
        margin: 15% auto;
        padding: 1rem;
        width: 95%;
    }

    .hero-carousel-btn {
        width: 35px;
        height: 35px;
    }

    .hero-carousel-prev {
        left: 10px;
    }

    .hero-carousel-next {
        right: 10px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.w-100 {
    width: 100%;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print Styles */
@media print {
    .header,
    .hero-buttons,
    .btn,
    .contact-form,
    .whatsapp-float {
        display: none;
    }
    
    .hero {
        background: none;
        color: #000;
    }
    
    .section-title {
        color: #000;
    }
}