@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

:root {
    --primary-color: #1400ff;
    --accent: #00e0ff;
    --text-light: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #1a1a1a;
    --gray: #555;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: #333;
    scroll-behavior: smooth;
    line-height: 1.6;
}

header {
    background: rgba(20, 0, 255, 0.9);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    animation: slideTop 0.6s ease;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

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

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--accent);
    transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.hero {
    background: url('https://images.unsplash.com/photo-1581092334422-9814a8d2e7c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeIn 1.5s ease;
}

section {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: auto;
    animation: fadeInUp 1s ease;
}

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

.card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.btn {
    display: inline-block;
    margin-top: 1rem;
    background: var(--accent);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #00c0d6;
}

form.form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

input[type="text"],
input[type="email"],
textarea {
    padding: 0.75rem;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

footer {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 3rem;
}

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

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

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

.hero-product {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(20, 0, 255, 0.7) 50%), url('https://evermonte.com/wp-content/uploads/2022/09/tecnologia-inteligente-trabalho-humanizado.png') center/cover no-repeat;
    color: var(--text-light);
    padding: 6rem 2rem;
    text-align: center;
}

.hero-product h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-product p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.detail-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 5px solid var(--accent);
}

.detail-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.call-to-action {
    text-align: center;
    padding: 5rem 2rem;
    background: #f0f8ff;
    border-radius: 10px;
    margin-top: 4rem;
}

.call-to-action h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.call-to-action .btn.primary {
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    transition: background 0.3s ease;
}

.call-to-action .btn.primary:hover {
    background: #0d00b3;
}

.services-grid {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-grid h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-grid .section-description {
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.services-grid .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    align-items: center;
    gap: 0.5rem;
}

.service-card h3 i {
    font-size: 1.2rem;
    color: var(--accent);
}

.service-card p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card .service-details {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-card .service-details li {
    color: var(--gray);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-card .service-details li::before {
    content: "\2022";
    color: var(--accent);
    position: absolute;
    left: 0;
}

.service-card .btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-card .btn.primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.service-card .btn.primary:hover {
    background-color: #0d00b3;
}

.service-card .btn.secondary {
    background-color: #eee;
    color: #333;
}

.service-card .btn.secondary:hover {
    background-color: #ddd;
}

.hero-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(20, 0, 255, 0.7) 50%), url('https://images.unsplash.com/photo-1551033406-611cf9a28f67?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
    color: var(--text-light);
    padding: 8rem 2rem;
    text-align: center;
}

.hero-contact h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-contact p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-details-section {
    padding: 5rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-details-section .section-description {
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 9rem;
    margin-top: 0.5rem;
}

.contact-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-card i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.map-container {
    grid-column: 1 / -1;
}

.map-placeholder {
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.contact-form-section {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.form {
    display: grid;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    padding: 0.75rem;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

textarea {
    resize: vertical;
}

.form button[type="submit"] {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form button[type="submit"]:hover {
    background-color: #0d00b3;
}

.hero-onagon {
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(20, 0, 255, 0.7) 35%, rgba(255, 255, 255, 0.1) 100%);
    color: var(--text-light);
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-onagon .hero-content {
    max-width: 550px;
}

.hero-onagon h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-onagon h1 span {
    color: var(--accent);
}

.hero-onagon p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-onagon .hero-buttons a {
    margin-right: 1rem;
}

.hero-onagon .btn.large {
    padding: 1rem 2.5rem;font-size:1.2rem;
}

.hero-onagon .btn.outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.hero-onagon .btn.outline:hover {
    background-color: var(--accent);
    color: var(--bg-dark);
}

.hero-onagon .hero-image {
    max-width: 400px;
}

.hero-onagon .hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.onagon-announcement {
    background-color: var(--bg-light);
    padding: 4rem 2rem;
}

.onagon-announcement .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.onagon-announcement .announcement-content {
    text-align: left;
}

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

.onagon-announcement p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.onagon-announcement .btn.secondary {
    background-color: #eee;
    color: #333;
}

.onagon-announcement .btn.secondary:hover {
    background-color: #ddd;
}

.onagon-announcement .announcement-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.section-divider {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #f9f9f9;
}

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

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

.services-overview {
    padding: 4rem 2rem;
}

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

.services-overview .service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.services-overview .service-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-overview .service-card h3 {
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    text-align: center;
}

.services-overview .service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.location-highlight {
    background-color: var(--bg-light);
    padding: 4rem 2rem;
}

.location-highlight .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.location-highlight .location-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.location-highlight .location-text {
    text-align: left;
}

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

.location-highlight p {
    color: var(--gray);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-onagon {
     flex-direction: column;
     text-align: center;
    }

    .hero-onagon .hero-content {
     max-width: 100%;
     margin-bottom: 2rem;
    }

    .hero-onagon .hero-buttons a {
     margin-right: 0;
     margin-bottom: 1rem;
     display: block;
    }

    .hero-onagon .hero-image {
     max-width: 100%;
    }

    .onagon-announcement .container,
    .location-highlight .container {
     grid-template-columns: 1fr;
     text-align: center;
    }

    .onagon-announcement .announcement-image,
    .location-highlight .location-image {
     order: -1;
     margin-bottom: 1.5rem;
    }
}

.services-overview .service-card .service-icon {
    display: block;
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.services-overview .service-card i,
.services-overview .service-card img.service-icon {
     display: block;
     height: 40px;
     object-fit: contain;
}

.partners-strip {
    background-color: #f9f9f9;
    padding: 2rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

.partners-strip h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.partners-strip .logo-container {
    overflow: hidden;
}

.partners-strip .logo-container .logo-track {
    display: flex;
    animation: scrollLogos 22s linear infinite;
}

.partners-strip .logo-container .logo-track .partner-logo {
    background-color: #4400ff;
    color: #ffffff;
    padding: 2rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-right: 2rem;
}

.partners-strip .logo-container .logo-track .partner-logo:last-child {
    margin-right: 0;
}

.partners-strip .partner-cta {
    color: var(--gray);
    font-size: 1rem;
    margin-top: 1.5rem;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    99% { transform: translateX(calc(-100% + (8 * (100px + 2rem)) - 2rem)); }
    100% { transform: translateX(0); }
}

.partners-strip.animate .logo-container .logo-track {
    animation: scrollLogos 18s linear infinite;
}

.partners-strip .logo-container {
    overflow: hidden;
    position: relative;
}

.partners-strip .logo-container::before,
.partners-strip .logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50px;
    z-index: 10;
}

.partners-strip .logo-container::before {
    left: 0;
    background: linear-gradient(to left, transparent 0%, #f9f9f9 100%);
}

.partners-strip .logo-container::after {
    right: 0;
    background: linear-gradient(to right, transparent 0%, #f9f9f9 100%);
}

.partners-strip .logo-container .logo-track {
    display: flex;
    animation: scrollLogos 22s linear infinite;
    padding: 0 50px;
}

.partners-strip .logo-container .logo-track .partner-logo {
    background-color: #4400ff;
    color: #ffffff;
    padding: 2rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-right: 2rem;
}

.partners-strip .logo-container .logo-track .partner-logo:last-child {
    margin-right: 0;
}

.partners-strip.animate .logo-container .logo-track {
    animation-duration: 18s;
}

.hero-subpage {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(20, 0, 255, 0.7) 50%), url('https://clubedenegociadores.com/wp-content/uploads/aperto-de-maos.jpg') center/cover no-repeat;
    color: var(--text-light);
    padding: 8rem 2rem;
    text-align: center;
}

.hero-subpage h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-section {
    display: flex;
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.about-section img {
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-section .text-content {
    flex: 1;
}

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

.personal-section img {
    max-width: 40%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.goals-objectives {
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

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

.goals-objectives ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
}

.goals-objectives ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.2rem;
    position: relative;
}

.goals-objectives ul li::before {
    content: "\2022";
    color: var(--accent);
    position: absolute;
    left: 0;
}

.personal-section {
    display: flex;
    align-items: center; 
    gap: 20px; 
    padding: 20px; 
    flex-direction: row-reverse; 
}


.personal-section img {
    order: 0;
}

.personal-section .text-content {
    order: 1;
    text-align: left; 
}

.header-left {
    display: flex;
    align-items: center;
}

.header-logo.logo-mobile {
    display: none;
}

.header-logo.logo-desktop {
    height: 45px;
    margin-right: 10px;
}

header h1 {
    margin: 0;
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    header {
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .header-logo.logo-desktop {
        display: none;
    }

    .header-logo.logo-mobile {
        display: block;
        height: 45px;
        margin-right: 9px;
    }

    header h1 {
        color: rgba(20, 0, 255, 0.9);
        font-size: 1.5rem;
    }
}



