/* Reset e configurações globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header */
header {
    background: #361ECA;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    width: 242px;
    height: 68px;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

nav a:hover {
    color: #00FFFF;
}

.btn-consultoria {
    background: linear-gradient(135deg, #FF1493, #00FFFF);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.btn-consultoria:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

/* Hero Section */
.hero-slide {
    background: linear-gradient(135deg, #0A059A 0%, #361ECA 50%, #5B2C87 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

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

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-image {
    text-align: center;
    animation: fadeInRight 1s ease 0.4s both;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Services Content Section */
.services-content {
    background: #F1F1F8;
    padding: 80px 0;
    position: relative;
}

.services-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.services-image {
    text-align: center;
}

.services-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    background: linear-gradient(135deg, #361ECA, #5B2C87);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(54, 30, 202, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

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

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

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(54, 30, 202, 0.3);
}

.service-item i {
    font-size: 2.5rem;
    color: #00FFFF;
    flex-shrink: 0;
    margin-top: 5px;
}

.service-content {
    flex: 1;
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.service-item p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

.bottom-btn {
    display: block;
    text-align: center;
    margin: 40px auto 0;
    width: fit-content;
}

/* Footer */
footer {
    background: #361ECA;
    color: white;
    padding: 40px 0 20px;
    border-radius: 20px 20px 0 0;
    margin-top: 0;
}

footer .container {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 35px;
    align-items: start;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 166px;
    height: 154px;
    object-fit: contain;
}

.footer-menu h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    margin-bottom: 8px;
}

.footer-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
    color: #00FFFF;
}

.contact-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.btn-contact {
    background: #FF1493;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    transition: all 0.3s ease;
}

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

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

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #00FFFF;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.certifications img {
    max-width: 120px;
    height: auto;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    opacity: 0.8;
}

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

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

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header .container {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }
    
    .logo img {
        width: 180px;
        height: 50px;
    }
    
    .hamburger {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 10px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #361ECA;
        flex-direction: column;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        z-index: 1000;
    }
    
    nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-btn-consultoria {
        display: block;
        background: linear-gradient(135deg, #FF1493, #00FFFF);
        color: white;
        padding: 12px 24px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        text-align: center;
        margin-top: 15px;
        transition: all 0.3s ease;
    }
    
    header .btn-consultoria {
        display: none;
    }
    
    .hero-slide {
        padding: 140px 0 60px;
    }
    
    .hero-slide .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .services-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    footer .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .certifications {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .service-item {
        padding: 20px;
    }
    
    .btn-consultoria {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}



/* Custom Development Section */
.custom-development {
    background: linear-gradient(135deg, #07036B, #0A059A, #1C0A4D);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.custom-development h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.development-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.development-item {
    background: linear-gradient(135deg, #361ECA, #5B2C87);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(54, 30, 202, 0.2);
    transition: all 0.3s ease;
}

.development-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(54, 30, 202, 0.3);
}

.development-item i {
    font-size: 3rem;
    color: #00FFFF;
    margin-bottom: 20px;
}

.development-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.development-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.mobile-pwa-image {
    display: none; /* Hidden by default, only shown on mobile PWA */
    margin-bottom: 30px;
}

.mobile-pwa-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .custom-development h2 {
        font-size: 2rem;
    }

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

    .mobile-pwa-image {
        display: block; /* Show on mobile */
    }
}




.custom-development h2 + p {
    margin-top: -30px; /* Ajuste conforme necessário para reduzir o espaçamento */
    margin-bottom: 40px;
}




/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #351ECA 0%, #5B2C87 50%, #FF1493 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

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

.form-image {
    text-align: center;
    animation: fadeInLeft 1s ease;
}

.form-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.form-container {
    animation: fadeInRight 1s ease 0.2s both;
}

.form-container h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.form-container p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00FFFF;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

.form-group select {
    cursor: pointer;
}

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

.form-group textarea::placeholder {
    color: #666;
    opacity: 0.8;
}

.btn-submit {
    background: linear-gradient(135deg, #00FF00, #00CC00);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.4);
    background: linear-gradient(135deg, #00CC00, #009900);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit i {
    font-size: 1.3rem;
}

/* Animações para o formulário */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade para o formulário */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }
    
    .form-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .form-container h2 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
    
    .btn-submit {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .form-container h2 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
}



/* Upcoming Releases Section */
.upcoming-releases {
    background: #F1F1F8;
    padding: 80px 0;
    text-align: center;
}

.upcoming-releases h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #361ECA;
}

.upcoming-releases p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.brand-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    width: fit-content; /* Allow content to define width */
    animation: scrollBrands 20s linear infinite;
}

.carousel-track img {
    width: 249px;
    height: 237px;
    object-fit: contain;
    margin: 0 20px; /* Spacing between images */
    flex-shrink: 0;
    transition: transform 0.3s ease;
    filter: grayscale(0%);
    animation: blink 1.5s infinite alternate;
}

.carousel-track img:hover {
    filter: grayscale(0%);
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Adjust based on total width of duplicated items */
    }
}

/* Responsividade para a seção de lançamentos */
@media (max-width: 768px) {
    .upcoming-releases h2 {
        font-size: 2rem;
    }

    .upcoming-releases p {
        font-size: 1rem;
    }

    .carousel-track img {
        width: 180px;
        height: 170px;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .upcoming-releases h2 {
        font-size: 1.8rem;
    }

    .upcoming-releases p {
        font-size: 0.9rem;
    }

    .carousel-track img {
        width: 150px;
        height: 140px;
        margin: 0 8px;
    }
}




@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}


