* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Montserrat", sans-serif;
}

:root {
    --primary-color: #26991b; /* Azul escuro */
    --secondary-color: #cc7402; /* Amarelo queimado */
    --menu-color: #0e0585; /* Amarelo escuro para menus */
    --background-color: #121212; /* Preto */
    --text-color: #db800a; /* Branco */
    --text-secondary: #b8b8d0;
    --transition-speed: 0.3s;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #283593);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #ff6f00);
    --gradient-menu: linear-gradient(135deg, var(--menu-color), #daa520);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 35, 126, 0.9), rgba(255, 143, 0, 0.9));
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.5;
    min-height: 100vh;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    padding: 0.3rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: var(--gradient-menu);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: "Orbitron", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
    transition: all 0.3s ease;
}

.logo-img {
    height: 70px; /* Altura fixa para o logo */
    width: auto; /* Largura automática para manter a proporção */
    object-fit: contain; /* Garante que a imagem mantenha suas proporções */
}

.logo:hover {
    opacity: 0.9; /* Efeito sutil ao passar o mouse */
}

header nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

header nav ul {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 999;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--menu-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

header nav ul li a:hover {
    color: var(--menu-color);
}

header nav ul li a:hover::after {
    width: 100%;
}

header nav ul li a.active {
    color: var(--menu-color);
}

header nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.container {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, var(--background-color) 0%, #1f1f3a 100%);
    padding-top: 80px;
    overflow: hidden;
}

.container::before {
    content: '';
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 247, 255, 0.2) 0%, rgba(15, 15, 30, 0) 70%);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(50px);
    z-index: 1;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.list {
    width: 90%;
    max-width: 1400px;
    height: calc(100vh - 80px);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.item {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(100vw);
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
    gap: 2rem;
    padding: 20px;
}

.active {
    opacity: 1;
    transform: translateX(0);
}

.product-img {
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.product-img img {
    max-width: 80%;
    max-height: 60%;
    filter: drop-shadow(0 0 30px rgba(0, 247, 255, 0.3));
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s, filter var(--transition-speed);
    transition-delay: 0.3s;
}

.active .product-img img {
    transform: translateX(0);
    opacity: 1;
}

.content {
    width: 55%;
    padding-right: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 2;
    flex-direction: column;
}

.product-tag {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-name {
    font-size: 1.5rem;
    font-family: "Orbitron", sans-serif !important;
    line-height: 1.1;
    margin: 20px 0;
    transform: translateX(200px);
    opacity: 0;
    transition: transform 1.6s;
    transition-delay: 0.4s;
}

.active .product-name {
    transform: translateX(0);
    opacity: 1;
}

.product-description {
    font-size: 1.0rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    transform: translateX(200px);
    opacity: 0;
    transition: transform 1.8s;
    transition-delay: 0.2s;
}

.active .product-description {
    transform: translateX(0);
    opacity: 1;
}

.btn-product-top {
    background: #D4A017;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.active .btn-product-top {
    transform: translateX(0);
    opacity: 1;
}

.btn-product-top:hover {
    background: #B88A14;
    transform: translateY(-2px);
}

.arrows {
    position: absolute;
    width: 90%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.arrow-btn {
    background: #1723d4;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 30%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-btn:hover {
    background: #B88A14;
}

.indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 5;
}

.numbers {
    font-family: "Orbitron", sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-speed);
}

.dot.active {
    background-color: #D4A017;
}

.tech-circle {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 247, 255, 0.1);
    animation: rotate 20s linear infinite;
}

.circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-duration: 15s;
}

.circle:nth-child(2) {
    width: 400px;
    height: 400px;
    top: 20%;
    right: 10%;
    animation-duration: 20s;
    animation-direction: reverse;
}

.circle:nth-child(3) {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 20%;
    animation-duration: 12s;
}

.circle:nth-child(4) {
    width: 350px;
    height: 350px;
    bottom: 10%;
    right: 20%;
    animation-duration: 18s;
    animation-direction: reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Media Queries */
@media (max-width: 1200px) {
    .product-name {
        font-size: 3.5rem;
    }
    
    .content {
        padding-right: 40px;
    }
}

@media (max-width: 992px) {
    .item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 10px;
    }

    .product-img {
        width: 100%;
        height: 50%;
        max-height: 300px;
    }

    .content {
        width: 100%;
        padding-right: 0;
        align-items: center;
    }

    .product-description {
        text-align: center;
        max-width: 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    header nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--gradient-menu);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    header nav ul.active {
        right: 0;
    }

    header nav ul li {
        width: 100%;
        margin: 10px 0;
    }

    header nav ul li a {
        display: block;
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    .user-actions {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        transition: opacity 0.3s;
        opacity: 1;
    }

    .product-name {
        font-size: 2.5rem;
    }

    .product-description {
        font-size: 1rem;
        padding: 0 15px;
    }

    .arrows {
        width: 95%;
    }

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

    .container::before {
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

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

    .product-tag {
        font-size: 0.9rem;
    }

    .btn-product-top {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .indicators {
        bottom: 20px;
    }

    .numbers {
        font-size: 1rem;
    }

    .container::before {
        width: 150px;
        height: 150px;
    }

    .circle {
        display: none;
    }

    .circle:nth-child(1) {
        display: block;
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
    }
}

/* Animações de entrada */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Estilos para as seções */
.section {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
}

.section.active {
    display: block;
}

.section-title {
    font-family: "Orbitron", sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

/* Estilos para a seção de produtos */
.product-categories {
    margin: 2rem 0;
    padding: 1rem;
    background: var(--gradient-overlay);
    border-radius: 8px;
}

.product-categories ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    list-style: none;
    padding: 0;
}

.category-btn {
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn:hover {
    background: var(--gradient-secondary);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--gradient-secondary);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(255, 143, 0, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
    min-height: 200px;
    position: relative;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 143, 0, 0.4);
    border-color: var(--secondary-color);
}

.product-media {
    position: relative;
    overflow: hidden;
}

.media-carousel {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.media-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

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

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 2;
}

.prev-media,
.next-media {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

.prev-media:hover,
.next-media:hover {
    background: rgba(0, 0, 0, 0.8);
}

.media-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

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

.indicator.active {
    background: white;
}

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

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    color: var(--text-color);
    margin: 0.5rem 0;
    font-size: 1.4rem;
    font-family: "Orbitron", sans-serif;
}

.product-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-price {
    margin: 1rem 0;
}

.price {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.installments {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.btn-buy {
    background: var(--gradient-secondary);
    color: var(--text-color);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 143, 0, 0.5);
}

/* Estilos para a seção de contatos */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-info {
    color: var(--text-color);
}

.contact-info h3 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
}

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

.btn-submit {
    background: #D4A017;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-submit:hover {
    background: #B88A14;
    transform: translateY(-2px);
}

.form-feedback {
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
}

.form-feedback.error {
    display: block;
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.form-feedback.success {
    display: block;
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

/* Estilos para o modal de vídeo */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.video-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: var(--background-color);
    border-radius: 15px;
    padding: 2rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    transition: color var(--transition-speed);
}

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

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Estilos para a seção Sobre */
.about-section {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about-text {
    color: var(--text-color);
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: "Orbitron", sans-serif;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.values-list li::before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    text-shadow: 0 0 5px rgba(0, 247, 255, 0.3);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.9), rgba(31, 31, 58, 0.9));
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 247, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 247, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Estilos para a seção de Equipe */
.team-section {
    padding: 4rem 0;
}

.team-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: "Orbitron", sans-serif;
}

.team-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.team-card {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.9), rgba(31, 31, 58, 0.9));
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 247, 255, 0.15);
}

.team-media {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-media img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

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

.team-info {
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.5), rgba(31, 31, 58, 0.8));
}

.team-info h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.team-role {
    display: block;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Estilos para a seção de Certificações */
.certifications-section {
    padding: 4rem 0;
    text-align: center;
}

.certifications-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: "Orbitron", sans-serif;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.certification-item {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.9), rgba(31, 31, 58, 0.9));
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(10px);
}

.certification-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 247, 255, 0.15);
}

.certification-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 247, 255, 0.3));
}

.certification-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.certification-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .team-media {
        height: 250px;
    }

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

    .team-title,
    .certifications-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .team-media {
        height: 200px;
    }

    .team-info h3 {
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Estilos para ações do usuário */
.user-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-btn,
.register-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.login-btn {
    color: var(--menu-color);
    border: 1px solid var(--menu-color);
    text-shadow: 0 0 5px rgba(0, 247, 255, 0.3);
}

.register-btn {
    background: transparent;
    color: var(--menu-color);
    border: 1px solid var(--menu-color);
    text-shadow: 0 0 5px rgba(0, 247, 255, 0.3);
}

.login-btn:hover {
    background: var(--menu-color);
    color: var(--background-color);
    box-shadow: 0 4px 15px rgba(14, 5, 133, 0.5);
}

.register-btn:hover {
    background: var(--menu-color);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 5, 133, 0.5);
}

.cart-btn {
    position: relative;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.cart-btn:hover {
    color: var(--menu-color);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff0000;
    color: var(--background-color);
    font-size: 0.75rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 1px solid var(--background-color);
}

footer {
    background: var(--background-color);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 247, 255, 0.1);
}

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

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 247, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1rem 1rem;
    }

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

    .footer-section {
        margin-bottom: 2rem;
    }

    .footer-bottom {
        margin-top: 1rem;
        padding-top: 1rem;
    }
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.prev-media,
.next-media {
    background: rgba(0, 247, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--background-color);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.prev-media:hover,
.next-media:hover {
    background: rgba(0, 247, 255, 1);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .prev-media,
    .next-media {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

/* Estilos da Página de Marcas */
.brands-section {
    padding: 4rem 0;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.brand-categories {
    margin-bottom: 3rem;
}

.brand-categories ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.brand-card {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.9), rgba(31, 31, 58, 0.9));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(10px);
}

.brand-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 247, 255, 0.15);
}

.brand-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.brand-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-brand {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-brand:hover {
    background: var(--secondary-color);
}

.brand-info {
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(15, 15, 30, 0.5), rgba(31, 31, 58, 0.8));
}

.brand-info h3 {
    margin: 0 0 1rem;
    color: var(--primary-color);
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.brand-info p {
    margin: 0 0 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.brand-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.brand-features li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    text-shadow: 0 0 5px rgba(0, 247, 255, 0.3);
}

/* Seção de Destaque */
.brands-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    margin: 4rem 0;
    color: white;
}

.highlight-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.highlight-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    margin: 0 0 1rem;
    font-size: 1.3rem;
}

.highlight-item p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    margin-top: 4rem;
}

.cta-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.cta-section p {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

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

    .category-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Estilos para a página de Contato */
.contact-section {
    padding: 4rem 0;
}

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

.contact-card {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.9), rgba(31, 31, 58, 0.9));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 247, 255, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 247, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.contact-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: "Orbitron", sans-serif;
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-card a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.9), rgba(31, 31, 58, 0.9));
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form-container h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: "Orbitron", sans-serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: var(--text-color);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 247, 255, 0.2);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
}

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

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

.btn-submit {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--background-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
}

.map-container {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.9), rgba(31, 31, 58, 0.9));
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(10px);
}

.map-container h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: "Orbitron", sans-serif;
}

.map {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Seção de Redes Sociais */
.social-section {
    text-align: center;
    padding: 4rem 0;
}

.social-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: "Orbitron", sans-serif;
}

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

.social-card {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.9), rgba(31, 31, 58, 0.9));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 247, 255, 0.15);
}

.social-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.social-card span {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Feedback do Formulário */
.form-feedback {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-feedback.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4444;
}

.form-feedback.success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
}

/* Media Queries */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-container,
    .map-container {
        padding: 1.5rem;
    }

    .contact-form-container h2,
    .map-container h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr;
    }

    .btn-submit {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-icon i {
        font-size: 1.2rem;
    }
}

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.9), rgba(31, 31, 58, 0.9));
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/pattern.png') repeat;
    opacity: 0.1;
    z-index: 0;
}

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

.services-hero .section-title {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero .section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Processo de Trabalho */
.work-process {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(31, 31, 58, 0.95), rgba(15, 15, 30, 0.95));
}

.work-process h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2rem;
    color: #fff;
}

.process-step h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Serviços Grid */
.services-grid-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.95), rgba(31, 31, 58, 0.95));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #357abd);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.service-features li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #4a90e2;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.btn-service {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Depoimentos */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(31, 31, 58, 0.95), rgba(15, 15, 30, 0.95));
}

.testimonials-section h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    position: relative;
    margin-bottom: 1rem;
}

.testimonial-content i {
    color: #4a90e2;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 0.25rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.95), rgba(31, 31, 58, 0.95));
    text-align: center;
}

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

.cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta.primary {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: #fff;
}

.btn-cta.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta i {
    margin-right: 0.5rem;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsividade */
@media (max-width: 1200px) {
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .services-hero .section-title {
        font-size: 2.5rem;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .services-hero .section-title {
        font-size: 2rem;
    }

    .services-hero .section-description {
        font-size: 1rem;
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

/* Aplicando animações */
.services-hero .section-title {
    animation: fadeInUp 0.8s ease-out;
}

.services-hero .section-description {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.process-step {
    animation: scaleIn 0.6s ease-out backwards;
}

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

.service-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.testimonial-card {
    animation: scaleIn 0.6s ease-out backwards;
}

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

.cta-content {
    animation: fadeInUp 0.8s ease-out;
}

.cta-buttons {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Efeitos de hover aprimorados */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.service-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.btn-service {
    position: relative;
    overflow: hidden;
}

.btn-service::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-service:hover::after {
    transform: translateX(100%);
}

.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-content i {
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-content i {
    transform: scale(1.2);
}

.product-card-transition {
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.product-card.hidden {
    opacity: 0;
    transform: scale(0.95);
    visibility: hidden;
    pointer-events: none;
    position: absolute;
}

.product-card.visible {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
    pointer-events: auto;
    position: relative;
}

.products-grid {
    position: relative;
    min-height: 200px;
}

/* Estilos específicos para a página de produtos */
#produtos .product-card .product-category {
    color: var(--primary-color); /* Aplica a cor verde dos rótulos */
}

#produtos .product-card .btn-buy {
    background: var(--gradient-menu); /* Usa o gradiente com azul escuro */
    color: var(--text-color); /* Mantém a cor do texto visível no fundo escuro */
    /* Remove ou ajusta a transição de background se necessário */
    transition: all 0.3s ease;
}

#produtos .product-card .btn-buy:hover {
    background: var(--secondary-color); /* Mantém o hover original ou ajusta */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 143, 0, 0.5);
}

/* Adicionar ou ajustar outras regras se necessário */