:root {
    --primary: #111111;
    --secondary: #F5F5F5;
    --tertiary: #6B6B6B;
    --accent: #275c86;
    --accent-hover: #143964;
    --blue-dark: #004073;
    --bg-light: #F5F5F5;
    --text-dark: #111111;
    --text-muted: #6B6B6B;
    --border-light: #e0e0e0;
    --font-main: Arial, Helvetica, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--secondary);
    line-height: 1.6;
}

   header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    background-color: var(--primary);
    color: var(--secondary);
    position: relative;
    z-index: 1000;
}

/* Container para alinhar os logos no header */
.header-logos {
    display: flex;
    align-items: center;
    gap: 24px; /* Espaçamento entre o logo principal e o selo */
}

/* Estilo do selo da Salesforce */
.partner-badge {
    height: 48px; /* Ajuste este valor para ficar proporcional ao logo da GANT */
    width: auto;
    border-radius: 4px; /* Suaviza as bordas da imagem */
    object-fit: contain;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-link:hover .logo-img {
    opacity: 0.8;
}

.logo-text {
    font-family: var(--font-main);
    color: var(--secondary);
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.logo-text strong {
    font-weight: 900;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--secondary);
    text-decoration: none;
    margin-left: 32px;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--secondary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: var(--secondary);
    overflow: hidden;
    background-color: var(--primary);
}

.carousel-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-media.active {
    opacity: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .dot.active {
    background-color: white;
  }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 5%;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    max-width: 1000px;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.35rem;
    max-width: 700px;
    margin-bottom: 40px;
    color: #e0e0e0;
    font-weight: 400;
}

.cta-btn {
    background-color: var(--accent);
    color: var(--secondary);
    padding: 18px 36px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 4px;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

.services {
    padding: 100px 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.service-card {
    background: #ffffff;
    padding: 0 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: calc(100% + 60px);
    height: 140px;
    margin: 0 -30px 24px -30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.why-gant {
    padding: 100px 5%;
    background-color: var(--secondary);
}

.why-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--tertiary);
}

.feature-label {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.feature-card p strong {
    color: var(--text-dark);
    font-weight: 700;
}

.section-title-parallax {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
}

.section-subtitle-parallax {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.parallax-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--secondary);
    text-align: center;
    padding: 20px 5%;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.parallax-content h4 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.parallax-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    color: #e0e0e0;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.feature-label {
    color: #4da6ff;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    display: block;
}

.parallax-content h3 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.parallax-content strong {
    color: #ffffff;
    font-weight: 900;
}


footer {
    background-color: #111111;
    color: #A0A0A0;
    padding: 80px 5% 40px;
    text-align: center;
    font-size: 0.95rem;
}

.footer-logo {
    margin-bottom: 32px;
}

.logo-img--footer {
    height: 60px;
    opacity: 1;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-social a {
    color: #F5F5F5;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.footer-social a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

footer p {
    margin-top: 20px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.social-icon {
    width: 24px;
    height: 24px;
}

.floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent);
    color: var(--secondary);
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(39, 92, 134, 0.4);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.floating-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(39, 92, 134, 0.5);
}

.floating-btn svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .floating-btn-text {
        display: none;
    }

    .floating-btn {
        padding: 16px;
        bottom: 20px;
        right: 20px;
    }

    .floating-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 768px) {

    .logo-img {
        max-width: 140px;
        height: 30px;
    }

    .hero-parallax {
        background-attachment: scroll;
    }

    .hero-content {
        padding: 80px 5%;
    }

    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}


   .contact-section {
    background-color: var(--primary);
    color: var(--secondary);
    padding: 80px 20px 60px;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--tertiary);
    margin-bottom: 40px;
    line-height: 1.5;
}

.contact-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; 
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--secondary);
    padding: 16px 32px;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px); 
}


@media (max-width: 768px) {
    .contact-section {
        padding: 60px 15px 40px;
    }
    .contact-title {
        font-size: 1.8rem;
    }
    .contact-buttons-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    .btn-whatsapp {
        width: 100%;
    }
}


footer#contato {
    background-color: var(--primary);
    border-top: 1px solid var(--tertiary);
    padding-top: 40px;
    margin-top: 0;
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
        min-height: 70vh;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 36px;
    }
    .logo-text {
        font-size: 1.1rem;
    }
    .logo-link {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .logo-img {
        height: 32px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden; 
        transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        max-height: 350px;
        padding: 20px 0;
    }

    .nav-links a {
        margin: 15px 0;
        margin-left: 0;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .logo-img--footer {
        height: 50px;
    }
}

/* Ajustes responsivos para telas menores */
@media (max-width: 768px) {
    .header-logos {
        gap: 12px;
    }
    
    .partner-badge {
        height: 32px; /* Reduz o tamanho do selo no mobile para não quebrar o layout */
    }
}