* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
    color: #2c2f48;
    height: 100%;
    
}
p {
    text-align: justify;
}
header {
    background: linear-gradient(135deg, #1f2f46 0%, #2c3e5d 50%, #1a2536 100%);
    padding: 1.5rem 3rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(31, 47, 70, 0.2);
}

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

.logo img {
    height: 45px;
    margin-right: 0.8rem;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo span {
    font-size: 1.6rem;
    font-weight: 600;
    background: linear-gradient(45deg, #ffffff, #a8b8c8, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

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

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin-left: 2.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    font-size: 1rem;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #ffffff, #a8b8c8, #ffffff);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.hero {
    padding: 8rem 8% 4rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%),
                url('hero-background.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: -100px;
    width: 80%;
    height: 100%;
    background: url("https://cdn.pixabay.com/photo/2016/10/11/09/28/code-1731288_1280.jpg")
        no-repeat center center / cover;
    opacity: 0.08;
    animation: float 20s ease-in-out infinite;
    z-index: -1;
}

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

.hero h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    z-index: 1;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

.hero p {
    font-size: 1.1rem;
    color: #e0e6ed;
    margin-bottom: 2rem;
    max-width: 500px;
    z-index: 1;
    position: relative;
    line-height: 1.6;
}

.hero a {
    background: linear-gradient(45deg, #ffffff, #e0e6ed, #ffffff);
    background-size: 200% auto;
    color: #1f2f46;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    width: 250px;
    text-align: center;
}

.hero a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background-position: right center;
}

.intro {
    background: linear-gradient(135deg, #f8f9fc 0%, #e8eef5 50%, #ffffff 100%);
    padding: 6rem 8% 4rem;
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1f2f46, #3b4b60, #1f2f46);
    background-size: 200% auto;
    animation: gradient 3s linear infinite;
}

.intro h3 {
    color: #1f2f46;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    max-width: 900px;
}

.intro h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1f2f46, #3b4b60, #1f2f46);
    background-size: 200% auto;
    animation: gradient 3s linear infinite;
}

.intro p {
    color: #4c4f5c;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 900px;
}

.section {
    padding: 6rem 8% 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section h3 {
    color: #1f2f46;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1f2f46, #3b4b60, #1f2f46);
    background-size: 200% auto;
    animation: gradient 3s linear infinite;
}

.section p {
    color: #4c4f5c;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin-bottom: 1.5rem;
}

footer {
    background: linear-gradient(135deg, #1f2f46 0%, #2c3e5d 50%, #1a2536 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    font-size: 1rem;
    position: relative;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-info a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.contact-info a:hover {
    color: #a8b8c8;
}

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

footer p {
    font-size: 0.9rem;
    margin: 0;
    color: #a8b8c8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

@media (max-width: 768px) {
    /* Animações Mobile - apenas opacidade */
    [data-aos] {
        transform: none !important;
        transition-property: opacity !important;
    }

    [data-aos].aos-animate {
        opacity: 1;
    }

    .menu-toggle {
        display: block;
    }

    header {
        padding: 1rem;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, #1f2f46 0%, #2c3e5d 50%, #1a2536 100%);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
    }

    nav.active {
        right: 0;
        z-index: 1000;
    }

    nav a {
        margin: 1rem 0;
        font-size: 1.2rem;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .content-wrapper {
        flex-direction: column !important;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .card {
        max-width: 100%;
        margin: 0 auto;
    }

    .text-content {
        text-align: center;
    }

    .text-content h3 {
        font-size: 1.4rem;
    }

    .logo img {
        height: 35px;
    }
    
    .logo span {
        font-size: 1.4rem;
    }
    
    .hero {
        padding: 8rem 5% 3rem;
        text-align: center;
        align-items: center;
    }
    
    .hero h2 {
        font-size: 2rem;
        margin: 0 auto 1.5rem;
        max-width: 100%;
    }
    
    .hero p {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
        max-width: 100%;
    }
    
    .hero a {
        margin: 0 auto;
    }
    
    .intro, .section {
        padding: 2.5rem 5%;
    }
    
    .intro h3, .section h3 {
        font-size: 1.6rem;
    }
    
    .intro p, .section p {
        font-size: 1.1rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    footer {
        padding: 1.5rem;
    }

    .footer-content {
        gap: 1rem;
    }

    footer p {
        padding-top: 1rem;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-button i {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .logo span {
        font-size: 1.2rem;
    }

    .logo img {
        height: 30px;
    }

    nav {
        width: 100%;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .card {
        padding: 1.2rem;
    }

    .card .icon {
        width: 40px;
        height: 40px;
    }

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

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 769px) {
    nav {
        flex-direction: row;
    }

    nav a {
        margin: 0 0 0 2.5rem;
    }

    .content-wrapper {
        flex-direction: row;
    }

    #empresa .content-wrapper {
        flex-direction: row-reverse;
    }

    /* Animações Desktop */
    [data-aos="fade"] {
        opacity: 0;
        transition-property: opacity, transform;
    }

    [data-aos="fade"].aos-animate {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .text-content[data-aos="fade"] {
        transform: translateX(-50px);
    }

    .card[data-aos="fade"] {
        transform: translateX(50px);
    }

    #empresa .text-content[data-aos="fade"] {
        transform: translateX(50px);
    }

    #empresa .card[data-aos="fade"] {
        transform: translateX(-50px);
    }
}

.text-content {
    flex: 1;
}

.text-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1f2f46;
}

.text-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4c4f5c;
    margin-bottom: 1rem;
}

.card {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 400px;
}

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

.card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1f2f46 0%, #2c3e5d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card .icon i {
    font-size: 1.8rem;
    color: white;
}

.card h4 {
    font-size: 1.4rem;
    color: #1f2f46;
    margin-bottom: 1rem;
}

.card p {
    font-size: 1rem;
    color: #4c4f5c;
    line-height: 1.6;
}
#contato p {
    text-align: center;
}
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button i {
    font-size: 2rem;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #128C7E;
} 