:root {
    --primary: #FF3D00;
    --secondary: #2C2C54;
    --accent: #FFC500;
    --dark: #1A1A2E;
    --light: #FFFFFF;
    --gray: #F5F5F5;
    --text: #333333;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background-color: var(--light);
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

:root {
    --primary: #FF3D00;
    --secondary: #FF6E40;
    --accent: #FF9E80;
    --dark: #333333;
    --light: #FFFFFF;
    --gray: #F5F5F5;
    --text: #555555;
}

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

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

/* Header e Navegação */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.header-scrolled .nav-logo img {
    height: 50px;
}

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

.nav-item {
    margin: 0 12px;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.nav-cta:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 61, 0, 0.3);
}

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: relative;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 2.5px 0;
    transition: all 0.3s ease;
    background-color: var(--dark);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 5% 50px;
    background: linear-gradient(135deg, var(--light) 0%, var(--gray) 100%);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.hero:before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    opacity: 0.1;
    top: -250px;
    right: -250px;
    animation: pulse 8s infinite alternate;
}

.hero:after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    opacity: 0.1;
    bottom: -200px;
    left: -200px;
    animation: pulse 10s infinite alternate;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark);
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 61, 0, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #666;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
    gap: 8px;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--secondary);
    transition: all 0.3s ease;
    z-index: -1;
}

.cta-button:hover:before {
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary);
}

.cta-button.secondary:before {
    background: var(--primary);
}

.cta-button.secondary:hover {
    color: white;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.feature i {
    color: var(--primary);
    font-size: 1rem;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(800px) rotateY(-10deg);
    transition: all 0.5s ease;
}

.hero-image img:hover {
    transform: perspective(800px) rotateY(0);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    animation: float 5s infinite ease-in-out;
}

.floating-element.element-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.floating-element.element-2 {
    top: 60%;
    right: -20px;
    animation-delay: 1s;
}

.floating-element.element-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--dark);
    font-size: 14px;
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: var(--primary);
    margin-top: 10px;
    animation: scroll 2s infinite;
}

.scroll-indicator p {
    margin-top: 10px;
    font-weight: 500;
}

/* Animações */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

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

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 12px 25px;
    }
    
    .floating-element {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .nav-logo img {
        height: 50px;
    }
    
    .header-scrolled .nav-logo img {
        height: 40px;
    }
}

/* Produtos */
.produtos {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.produtos::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0.03;
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: pulse 15s infinite alternate;
}

.produtos::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    opacity: 0.03;
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: pulse 12s infinite alternate;
}

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

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
}

.decoration-line {
    width: 40px;
    height: 2px;
    background: var(--primary);
    margin: 0 10px;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.produtos-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--gray);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(255, 61, 0, 0.2);
}

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

.produto-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.produto-card:nth-child(1) { animation-delay: 0.1s; }
.produto-card:nth-child(2) { animation-delay: 0.2s; }
.produto-card:nth-child(3) { animation-delay: 0.3s; }
.produto-card:nth-child(4) { animation-delay: 0.4s; }

.produto-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.produto-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.produto-card:hover .produto-image img {
    transform: scale(1.1);
}

.produto-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.produto-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(44, 44, 84, 0.9) 0%, rgba(44, 44, 84, 0.7) 50%, rgba(44, 44, 84, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.produto-card:hover .produto-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.produto-card:hover .overlay-content {
    transform: translateY(0);
}

.produto-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    background: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.produto-cta:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 61, 0, 0.3);
}

.produto-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark);
}

.action-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.produto-info {
    padding: 25px;
}

.produto-info h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 10px;
}

.produto-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.produto-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.produto-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #777;
}

.produto-features i {
    color: var(--primary);
    font-size: 0.8rem;
}

.produtos-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.produtos-cta p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--dark);
}

/* Responsividade */
@media (max-width: 992px) {
    .produtos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .produtos-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .produto-image {
        height: 240px;
    }
    
    .produto-info {
        padding: 20px;
    }
    
    .produtos-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .produtos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .produto-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .produtos-filters {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        flex-shrink: 0;
    }
}
/* Sobre Nós */
.sobre {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.sobre::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0.03;
    border-radius: 50%;
    top: -200px;
    left: -200px;
    animation: pulse 15s infinite alternate;
}

.sobre::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    opacity: 0.03;
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    animation: pulse 12s infinite alternate;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sobre-texto h2 {
    margin-bottom: 2rem;
    text-align: left;
}

.sobre-texto h2:after {
    left: 0;
    transform: none;
}

.sobre-descricao {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text);
}

.sobre-descricao strong {
    color: var(--primary);
    font-weight: 600;
}

.timeline {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: -30px;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 61, 0, 0.3);
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-left: 30px;
    border-left: 4px solid var(--primary);
}

.timeline-content h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 2.5rem 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.sobre-lista {
    list-style: none;
    margin-bottom: 2.5rem;
}

.sobre-lista li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.sobre-lista li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.3rem;
}

.sobre-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.sobre-imagem {
    position: relative;
}

.image-container {
    position: relative;
    margin-bottom: 30px;
}

.main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.image-container:hover .main-image {
    transform: scale(1.02);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 61, 0, 0.3);
    animation: pulse 2s infinite;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: white;
    animation: float 6s infinite ease-in-out;
    box-shadow: 0 5px 15px rgba(255, 110, 64, 0.3);
}

.floating-element.element-1 {
    bottom: 30px;
    left: -20px;
    animation-delay: 0s;
}

.floating-element.element-2 {
    top: 40%;
    right: -20px;
    animation-delay: 2s;
}

.sobre-destaques {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.destaque-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.destaque-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.destaque-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 61, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary);
    font-size: 1.5rem;
}

.destaque-card h4 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.destaque-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsividade */
@media (max-width: 992px) {
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sobre-texto h2 {
        text-align: center;
    }
    
    .sobre-texto h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline {
        padding-left: 0;
    }
    
    .timeline::before {
        left: 25px;
    }
    
    .timeline-year {
        left: 0;
    }
    
    .timeline-content {
        margin-left: 70px;
    }
    
    .sobre-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sobre-stats {
        grid-template-columns: 1fr;
    }
    
    .sobre-buttons {
        flex-direction: column;
    }
    
    .sobre-destaques {
        grid-template-columns: 1fr;
    }
    
    .timeline-content {
        margin-left: 60px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-year {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
        left: -10px;
    }
    
    .timeline-content {
        margin-left: 45px;
    }
    
    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .image-badge {
        padding: 10px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
}
/* Depoimentos */
.depoimentos {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.depoimentos::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: pulse 15s infinite alternate;
}

.depoimentos::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: pulse 12s infinite alternate;
}

.depoimentos .section-title,
.depoimentos .section-subtitle {
    color: white;
    position: relative;
    z-index: 2;
}

.depoimentos-container {
    position: relative;
    z-index: 2;
    margin: 3rem 0;
}

.depoimentos-slider {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 0;
    margin-bottom: 30px;
}

.depoimento {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.depoimento:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.depoimento-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.depoimento-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.depoimento-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

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

.depoimento-info {
    flex-grow: 1;
}

.depoimento-info h4 {
    margin-bottom: 5px;
    color: var(--accent);
    font-size: 1.1rem;
}

.depoimento-info span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.depoimento-rating {
    display: flex;
    gap: 2px;
}

.depoimento-rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.depoimento-texto {
    flex-grow: 1;
    margin-bottom: 20px;
}

.depoimento-texto p {
    font-style: italic;
    line-height: 1.8;
    margin: 0;
    position: relative;
    padding-left: 25px;
}

.depoimento-texto p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: Georgia, serif;
}

.depoimento-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    opacity: 0.8;
}

.depoimento-date,
.depoimento-social {
    display: flex;
    align-items: center;
    gap: 5px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

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

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

.depoimentos-cta {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.depoimentos-cta p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 500;
}

.floating-testimonials {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-quote {
    position: absolute;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.05);
    animation: float 8s infinite ease-in-out;
}

.floating-quote:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-quote:nth-child(2) {
    bottom: 20%;
    right: 10%;
    animation-delay: 4s;
}

/* Responsividade */
@media (max-width: 992px) {
    .depoimento {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .depoimento {
        flex: 0 0 calc(100% - 20px);
    }
    
    .depoimento-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .depoimento-info {
        text-align: center;
    }
    
    .depoimento-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .slider-controls {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .depoimentos-cta {
        padding: 30px 20px;
    }
    
    .floating-quote {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .depoimento {
        min-width: 250px;
        padding: 20px;
    }
    
    .depoimento-texto p {
        padding-left: 20px;
    }
    
    .depoimento-texto p::before {
        font-size: 2rem;
        top: -5px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
}
/* Contato */
.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contato-info h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.contato-info > p {
    margin-bottom: 2rem;
    color: #666;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 15px;
}

.info-item h4 {
    margin-bottom: 5px;
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

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

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.contato-form {
    background: var(--gray);
    padding: 30px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 61, 0, 0.1);
}

.contato-form button {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contato-form button:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
    color: white;
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0.03;
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: pulse 15s infinite alternate;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    margin-bottom: 25px;
    color: var(--accent);
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 1rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.contact-item:hover {
    opacity: 1;
    transform: translateX(5px);
}

.contact-item i {
    color: var(--primary);
    width: 20px;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent);
    transform: translateX(5px);
}

.footer-section ul li a i {
    font-size: 0.8rem;
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin: 20px 0 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 1;
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon i {
    position: relative;
    z-index: 2;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 61, 0, 0.3);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
}

.footer-newsletter h4 {
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 1.2rem;
}

.footer-newsletter p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.footer-middle {
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.footer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 5px;
    color: var(--accent);
    font-size: 1.1rem;
}

.feature-content p {
    opacity: 0.8;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    opacity: 0.8;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.payment-methods {
    text-align: center;
    padding: 20px 0;
}

.payment-methods h4 {
    margin-bottom: 15px;
    color: var(--accent);
    font-size: 1.1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateY(-2px);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

#backToTop {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 61, 0, 0.3);
}

#backToTop:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 61, 0, 0.4);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    width: 180px;
    border-radius: 30px;
}

.whatsapp-text {
    position: absolute;
    left: 60px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    left: 70px;
}

.whatsapp-float i {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Responsividade */
@media (max-width: 1024px) {
    .footer-content {
        gap: 30px;
    }
    
    .footer-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-info {
        align-items: center;
    }
    
    .footer-features {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-features {
        padding: 30px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float:hover {
        width: 160px;
    }
    
    .whatsapp-float:hover .whatsapp-text {
        left: 60px;
    }
    
    #backToTop {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}
/* Seção Trabalhos */
.trabalhos-section {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* Grid de Trabalhos */
.trabalhos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Itens de Trabalho */
.trabalho-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.trabalho-item:nth-child(1) { animation-delay: 0.1s; }
.trabalho-item:nth-child(2) { animation-delay: 0.2s; }
.trabalho-item:nth-child(3) { animation-delay: 0.3s; }
.trabalho-item:nth-child(4) { animation-delay: 0.4s; }
.trabalho-item:nth-child(5) { animation-delay: 0.5s; }
.trabalho-item:nth-child(6) { animation-delay: 0.6s; }
.trabalho-item:nth-child(7) { animation-delay: 0.7s; }
.trabalho-item:nth-child(8) { animation-delay: 0.8s; }
.trabalho-item:nth-child(9) { animation-delay: 0.9s; }
.trabalho-item:nth-child(10) { animation-delay: 1s; }

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

.trabalho-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.trabalho-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

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

/* Responsividade */
@media (max-width: 768px) {
    .trabalhos-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .trabalho-image {
        height: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .trabalhos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trabalho-section {
        padding: 40px 0;
    }
}
