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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(7, 162, 164, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(7, 162, 164, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #fca824, #ffb84d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.logo-image {
    width: auto;
    height: 70px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

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

.nav-menu a:hover {
    color: #fca824;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fca824;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 162, 164, 0.98);
    padding: 20px;
    gap: 15px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #07a2a4 0%, #05888a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    text-align: center;
}

.header-terms {
    background: linear-gradient(135deg, #07a2a4 0%, #05888a 100%);
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideInLeft 1s ease-out;
}

.hero-text-terms h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideInLeft 1s ease-out;
    text-align: center;
}

.hero-text .highlight {
    color: #fca824;
    background: linear-gradient(45deg, #fca824, #ffb84d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text-terms .highlight {
    color: #fca824;
    background: linear-gradient(45deg, #fca824, #ffb84d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #fca824, #ffb84d);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(252, 168, 36, 0.3);
    animation: slideInLeft 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(252, 168, 36, 0.4);
}

.hero-image {
    text-align: center;
    animation: slideInRight 1s ease-out;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-bubbles {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 250px;
    z-index: 2;
}

.chat-bubbles:not(.right) {
    left: 370px;
    top: 60%;
    transform: translateY(-50%);
}

.chat-bubbles.right {
    right: 370px;
    top: 50%;
    transform: translateY(-50%);

}

.chat-bubble {
    padding: 12px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    animation: floatBubble 3s ease-in-out infinite;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    background: white;
    text-align: left;
    color: #333;
}

.chat-bubble.right {
    background: #dcf8c6;
    margin-left: auto;
    border-radius: 15px 15px 0 15px;
    margin-bottom: 60px
}

.chat-bubble.left {
    background: white;
    margin-right: auto;
    border-radius: 15px 15px 15px 0;
    margin-bottom: 40px
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: #222;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.phone-screen {
    background: white;
    height: 100%;
    border-radius: 25px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.assistant-image {
    /*width: 230px;*/
    /*height: 270px;*/
    /*margin-bottom: 15px;*/
    border-radius: 20px;
    object-fit: cover;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes floatBubble {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.phone-mockup {
    position: relative;
    display: inline-block;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    padding: 20px;
    animation: float 3s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #07a2a4, #05888a);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.whatsapp-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fca824;
}

/* Seções */
.section {
    padding: 100px 0;
}

.section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #07a2a4;
    font-weight: 700;
}

.section p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Funcionalidades */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(7, 162, 164, 0.15);
    border-color: #07a2a4;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #07a2a4, #05888a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #07a2a4;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* Depoimentos */
.testimonials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #fca824;
    font-weight: bold;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #07a2a4, #fca824);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    color: #07a2a4;
    font-weight: 600;
}

.author-info p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

/* Vantagens */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(7, 162, 164, 0.15);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #fca824, #ffb84d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.advantage-item h3 {
    color: #07a2a4;
    font-weight: 600;
    margin-bottom: 15px;
}

.advantage-item p {
    color: #666;
    font-size: 0.95rem;
    text-align: center;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #07a2a4 0%, #05888a 100%);
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fca824;
}

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

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

.footer-text {
    text-align: left;
}

.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.qr-code {
    width: 300px;
    height: auto;
    background: white;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.qr-code img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.qr-text {
    color: #fca824;
    font-weight: 600;
    text-align: center;
    font-size: 0.95rem;
}

.footer-cta {
    text-align: center;
    margin-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 40px;
}

.footer-link {
    color: #fca824;
    text-decoration: none;
    font-weight: 500;
    opacity: 100%;
}

/* Animações */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .header-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .section h2 {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

.main-terms {

    h1,
    h2 {
        color: #53a399;
    }

    h1 {
        font-size: 2em;
        margin-bottom: 0.2em;
    }

    h2 {
        margin-top: 1.5em;
        font-size: 1.3em;
    }

    ul {
        padding-left: 1.5em;
    }
}

.main-terms p,
h2,
ul,
li {
    color: #666;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    max-width: 900px;
    margin-bottom: 0px;
    font-size: inherit;
}

.main-terms h2 {
    color: #666;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    max-width: 900px;
    margin-bottom: 0px;
    font-size: inherit;
}