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

:root {
    --primary-color: #eb8236;
    --secondary-color: #1b6c56;
    --tertiary-color: #ffffff;
    --dark-color: #2d3436;
    --light-color: #ffffff;
    --gray-color: #636e72;
    --bg-light: #f8f9fa;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--light-color);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

.btn-acesso {
    padding: 0.7rem 1.5rem;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-acesso:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eb8236 0%, #ff9d5c 100%);
    color: var(--light-color);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: float 20s linear infinite;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 0.5rem;
}

.hero-img {
    max-width: 100%;
    height: auto;
    display: block;
    animation: floatImg 3s ease-in-out infinite;
}

.hero-notebook {
    width: 900px;
    max-width: 65%;
}

.hero-phone {
    width: 550px;
    max-width: 40%;
    animation-delay: 0.5s;
}

@keyframes floatImg {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

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

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero .btn-secondary {
    color: var(--light-color);
    border: 2px solid var(--light-color);
}

.btn-secondary:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

/* Sobre Section */
.sobre {
    background: var(--bg-light);
    padding: 250px 0 80px;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text-wrapper .section-title {
    text-align: left;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.sobre-text-wrapper .section-subtitle {
    text-align: left;
    margin-bottom: 2rem;
}

.sobre-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.sobre-stats {
    display: grid;
    gap: 1.5rem;
}

.stat-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card:nth-child(2) i,
.stat-card:nth-child(2) h3 {
    color: var(--secondary-color);
}

.stat-card p {
    color: var(--gray-color);
    font-size: 1rem;
}

/* Recursos Section */
.recursos .section-title {
    color: var(--secondary-color);
}

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

.recurso-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.recurso-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.recurso-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--light-color);
}

.recursos-grid .recurso-card:nth-child(even) .recurso-icon {
    background: var(--secondary-color);
}

.recurso-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.recurso-card p {
    color: var(--gray-color);
    line-height: 1.8;
}

/* Planos Section */
.planos .section-title {
    color: var(--secondary-color);
}

.planos {
    background: var(--bg-light);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.plano-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.plano-card.destaque {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(235, 130, 54, 0.05) 0%, rgba(27, 108, 86, 0.05) 100%);
}

.plano-card.destaque:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(235, 130, 54, 0.25);
}

.plano-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--light-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.plano-header {
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 1.5rem;
}

.plano-nome {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.plano-preco {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.preco-valor {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plano-card.destaque .preco-valor {
    color: var(--secondary-color);
}

.preco-periodo {
    color: var(--gray-color);
    font-size: 1rem;
}

.plano-alternativa {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin: 0;
}

.plano-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plano-features li {
    padding: 0.8rem 0;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--bg-light);
}

.plano-features li:last-child {
    border-bottom: none;
}

.plano-features i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.btn-plan {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.planos-info {
    text-align: center;
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-top: 2rem;
}

.planos-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d67329 100%);
    color: var(--light-color);
    text-align: center;
    padding: 100px 0;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contato Section */
.contato .section-title {
    color: var(--secondary-color);
}

.contato {
    background: var(--bg-light);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.social-btn.whatsapp {
    background: #25d366;
    color: var(--light-color);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--light-color);
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.social-btn i {
    font-size: 1.8rem;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--tertiary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-menu a {
    color: var(--tertiary-color);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-menu a:hover {
    opacity: 1;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--tertiary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--tertiary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

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

.footer-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    opacity: 0.7;
    font-size: 0.9rem;
}

.mercadopago-logo {
    height: 24px;
    width: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--light-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .hero-phone {
        display: none;
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }

    .sobre {
        padding: 140px 0 60px;
    }

    .sobre-text-wrapper .section-title {
        text-align: center;
    }

    .sobre-text-wrapper .section-subtitle {
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .footer-menu {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
    }

    .plano-card.destaque {
        transform: scale(1);
    }

    .plano-preco {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* App Mobile Section */
.app-mobile {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.app-mobile::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(235, 130, 54, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.app-mobile .container {
    position: relative;
    z-index: 1;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-text {
    animation: fadeInLeft 0.8s ease-out;
}

.app-text .section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.app-text .section-subtitle {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.app-description {
    color: var(--gray-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.app-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.app-feature:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.app-feature i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.app-feature span {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1rem;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-play-store {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #d47c2a);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(235, 130, 54, 0.3);
}

.btn-play-store:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 130, 54, 0.4);
}

.btn-play-store i {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-small {
    font-size: 0.75rem;
    opacity: 0.9;
}

.btn-large {
    font-size: 1.1rem;
    font-weight: 700;
}

.app-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out;
}

.app-phone-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.app-image:hover .app-phone-img {
    transform: scale(1.05);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .app-mobile {
        padding: 60px 0;
    }

    .app-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-text .section-title {
        font-size: 2rem;
    }

    .app-text .section-subtitle {
        font-size: 1.2rem;
    }

    .btn-play-store {
        width: 100%;
        justify-content: center;
    }

    .app-mobile::before {
        width: 400px;
        height: 400px;
        top: -30%;
        right: -30%;
    }

    .app-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .sobre {
        padding: 120px 0 50px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 1.5rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .plano-nome {
        font-size: 1.5rem;
    }

    .preco-valor {
        font-size: 2rem;
    }

    .plano-features li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }

    .app-text .section-title {
        font-size: 1.5rem;
    }

    .app-text .section-subtitle {
        font-size: 1rem;
    }

    .app-description {
        font-size: 1rem;
    }

    .app-feature {
        padding: 0.6rem;
        border-left-width: 3px;
    }

    .btn-play-store {
        padding: 0.8rem 1.5rem;
        gap: 0.8rem;
    }

    .btn-play-store i {
        font-size: 1.5rem;
    }

    .btn-small {
        font-size: 0.65rem;
    }

    .btn-large {
        font-size: 1rem;
    }
}
