/* Variáveis CSS */
:root {
    --primary-color: #0F1A2A;
    --accent-color: #4ECB71;
    --highlight-color: #F2C94C;
    --text-color: #FFFFFF;
    --secondary-bg: #F5F5F5;
    --dark-text: #333333;
    --gray-text: #777777;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: #FFFFFF;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 40px;
    text-align: center;
}

/* Botões */
.btn-primary {
    display: inline-block;
    background-color: var(--highlight-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #e0b93e;
}

.btn-contato {
    background-color: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-contato:hover {
    background-color: #3db85f;
}

/* Header */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

nav {
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--primary-color);
    font-weight: 500;
}

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

.menu-mobile {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    color: var(--text-color);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
    background-image: url('\images/new-hero-background.png');
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    max-width: 60%;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero h2.highlight {
    color: var(--highlight-color);
    font-size: 3rem;
    margin-bottom: 30px;
}

.hero .intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.problems {
    margin-bottom: 40px;
}

.problem {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.problem i {
    color: var(--highlight-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

.solution {
    margin-bottom: 40px;
}

.solution h2.robotzis {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin: 10px 0;
}

.cta {
    margin-bottom: 30px;
}

.cta p {
    margin-bottom: 20px;
}

.wave {
    display: inline-block;
    animation: wave 1.5s infinite;
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.signature {
    font-style: italic;
    opacity: 0.8;
}

.hero-image {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.robot-animation {
    animation: float 3s ease-in-out infinite;
}

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

/* Benefits Section */
.benefits {
    background-color: var(--secondary-bg);
}

.benefits h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2.2rem;
}

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

.benefit-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.benefit-card.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.benefit-card .icon {
    width: 70px;
    height: 70px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* How It Works Section */
.how-it-works {
    background-color: white;
}

.how-it-works h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.steps {
    max-width: 800px;
    margin: 50px auto 0;
}

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.animate {
    opacity: 1;
    transform: translateY(0);
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% - 10px);
    background-color: var(--accent-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 30px;
    z-index: 1;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.testimonials h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial {
    padding: 30px;
    text-align: center;
    display: none;
}

.testimonial:first-child {
    display: block;
}

.quote {
    margin-bottom: 30px;
}

.quote i {
    color: var(--highlight-color);
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.quote p {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

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

.prev, .next {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
}

.dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: var(--highlight-color);
}

/* About Section */
.about {
    background-color: var(--secondary-bg);
}

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

.about-content {
    max-width: 60%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.about h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.about p {
    margin-bottom: 15px;
}

.about-image {
    width: 30%;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-image.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-image img {
    max-width: 100%;
    height: auto;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Contact Section */
.contact {
    background-color: white;
}

.contact h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

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

.info-item i {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.social-media {
    display: flex;
    margin-top: 30px;
}

.social-media a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: var(--transition);
}

.social-media a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.contact-form {
    flex: 2;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.cta-final {
    text-align: center;
    margin-top: 60px;
}

.cta-final h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-links ul {
    display: flex;
}

.footer-links ul li {
    margin-left: 30px;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-image {
        width: 60%;
    }
    
    .about .container {
        flex-direction: column;
    }
    
    .about-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .about-image {
        width: 60%;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        z-index: 999;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .menu-mobile {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2.highlight {
        font-size: 2.5rem;
    }
    
    .hero-image {
        width: 80%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-links ul {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links ul li {
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero h2.highlight {
        font-size: 2rem;
    }
    
    .hero .intro {
        font-size: 1rem;
    }
    
    .problem p {
        font-size: 0.9rem;
    }
    
    .solution h2.robotzis {
        font-size: 2rem;
    }
    
    .hero-image {
        width: 100%;
    }
    
    .about-image {
        width: 100%;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
}

