/* ===== RESET E VARIÁVEIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF6B00;
    --dark-black: #1a1a1a;
    --pure-white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #666;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(255, 107, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-black);
    background: var(--pure-white);
}

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

/* ===== NAVBAR ===== */
.navbar {
    background: var(--pure-white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-img {
    height: 55.64px;
    width: auto;
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-black);
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-black);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--pure-white);
    box-shadow: 0 4px 10px var(--shadow);
    list-style: none;
    min-width: 200px;
    padding: 0.5rem 0;
    border-radius: 5px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--dark-black);
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu li a:hover {
    background: var(--light-gray);
    color: var(--primary-orange);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--dark-black) 0%, #2d2d2d 100%);
    color: var(--pure-white);
    padding: 150px 20px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    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 1200 600"><circle cx="100" cy="100" r="50" fill="%23FF6B00" opacity="0.1"/><circle cx="900" cy="400" r="80" fill="%23FF6B00" opacity="0.1"/><circle cx="1100" cy="150" r="60" fill="%23FF6B00" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-orange);
    color: var(--pure-white);
}

.btn-primary:hover {
    background: #e55f00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-hover);
}

.btn-secondary {
    background: var(--dark-black);
    color: var(--pure-white);
}

.btn-secondary:hover {
    background: #2d2d2d;
    transform: translateY(-2px);
}

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

/* ===== SECTIONS ===== */
section {
    padding: 80px 20px;
}

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

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    margin: 1rem auto;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--medium-gray);
}

/* ===== SOBRE ===== */
.sobre {
    background: var(--light-gray);
}

.sobre-text {
    max-width: 900px;
    margin: 0 auto;
}

.lead {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-black);
}

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

.text-orange {
    color: var(--primary-orange);
    font-weight: 600;
}

.text-black {
    color: var(--dark-black);
    font-weight: 600;
}

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

.value-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow);
    transition: transform 0.3s;
}

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

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

.value-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-black);
}

/* ===== GRUAS ===== */
.info-box {
    background: var(--primary-orange);
    color: var(--pure-white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin: 2rem auto 3rem;
    max-width: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.info-box i {
    font-size: 2rem;
}

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

.price-card {
    background: var(--pure-white);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

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

.price-card.featured {
    border-color: var(--primary-orange);
    box-shadow: 0 5px 20px var(--shadow-hover);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: var(--pure-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-black);
}

.price-card.featured .price-header {
    padding-top: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.price-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-features i {
    color: var(--primary-orange);
}

/* ===== PLATAFORMA 360 ===== */
.plataforma360 {
    background: var(--light-gray);
}

.plataforma-content {
    max-width: 1000px;
    margin: 0 auto;
}

.plataforma-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.plataforma-price-box {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
}

.big-price {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.price-duration {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.included-items h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--dark-black);
}

.included-items i {
    color: var(--primary-orange);
}

.included-items ul {
    list-style: none;
    text-align: left;
}

.included-items li {
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plataforma-optional {
    display: flex;
    align-items: center;
}

.optional-box {
    background: var(--dark-black);
    color: var(--pure-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.optional-box i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.optional-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.optional-price {
    font-size: 2rem;
    color: var(--primary-orange);
    font-weight: bold;
    margin-bottom: 1rem;
}

.optional-desc {
    font-size: 0.95rem;
    opacity: 0.9;
}

.plataforma-benefits h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

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

.benefit-item {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-black);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

.video-demo {
    background: var(--pure-white);
    padding: 2.6rem 1.7rem;
    border-radius: 15px;
    margin-bottom: 2.6rem;
    box-shadow: 0 5px 20px var(--shadow);
}

.video-demo h3 {
    text-align: center;
    font-size: 1.57rem;
    margin-bottom: 1.74rem;
    color: var(--dark-black);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 244px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    background: #000;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* ===== PERSONALIZADOS ===== */
.benefits-banner {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
}

.benefit-highlight i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.benefit-highlight h4 {
    margin-bottom: 0.3rem;
    color: var(--dark-black);
}

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

.product-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.product-icon i {
    font-size: 2rem;
    color: var(--primary-orange);
}

.product-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-black);
}

.product-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* ===== CONTATO ===== */
.contato {
    background: var(--light-gray);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contato-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark-black);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-black);
}

.info-item a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

.contato-form {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-black);
    color: var(--pure-white);
    padding: 3rem 20px 1rem;
}

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

.footer-logo .logo-text {
    color: var(--primary-orange);
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.footer-logo p {
    margin-top: 1rem;
    opacity: 0.8;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 1rem;
    color: var(--primary-orange);
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--pure-white);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-orange);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--primary-orange);
    margin-right: 0.5rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 107, 0, 0.15);
    color: var(--primary-orange);
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 0, 0.3);
    width: 100%;
    max-width: 200px;
}

.social-links a i {
    font-size: 1.3rem;
}

.social-links a span {
    display: inline;
}

.social-links a:hover {
    background: var(--primary-orange);
    color: var(--pure-white);
    transform: translateX(5px);
    border-color: var(--primary-orange);
}

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

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
    .plataforma-main {
        grid-template-columns: 1fr;
    }

    .contato-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--pure-white);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 10px var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        padding: 1rem;
        display: block;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--light-gray);
        margin-top: 0.5rem;
    }

    .hero {
        padding: 120px 20px 80px;
    }

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

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

    .hero-features {
        gap: 1.5rem;
    }

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

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

    .benefits-banner {
        flex-direction: column;
    }

    .benefit-highlight {
        min-width: auto;
    }

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

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    section {
        padding: 60px 20px;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

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

@media (max-width: 480px) {
    .logo-img {
        height: 45px;
    }

    .social-links a {
        max-width: 100%;
    }

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

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

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item span {
        font-size: 0.9rem;
    }

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

    .section-intro {
        font-size: 1rem;
    }

    .info-box {
        flex-direction: column;
        gap: 0.5rem;
    }

    .info-box p {
        font-size: 0.9rem;
    }

    .price-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .price-header h3 {
        font-size: 1.2rem;
    }

    .big-price {
        font-size: 2.5rem;
    }

    .plataforma-price-box {
        padding: 2rem;
    }

    .optional-box {
        padding: 1.5rem;
    }

    .optional-name {
        font-size: 1.2rem;
    }

    .optional-price {
        font-size: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-icon {
        width: 60px;
        height: 60px;
    }

    .product-icon i {
        font-size: 1.5rem;
    }

    .product-card h3 {
        font-size: 0.95rem;
    }

    .product-card p {
        font-size: 0.85rem;
    }

    .contato-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 16px;
    }

    .footer-content {
        gap: 2rem;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-links a {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .social-links a i {
        font-size: 1.1rem;
    }

    section {
        padding: 40px 20px;
    }

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

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

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

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

    .benefit-highlight {
        flex-direction: column;
        text-align: center;
    }

    .benefit-highlight i {
        margin-bottom: 0.5rem;
    }
}
