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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

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

        /* Header Styles */
        .header {
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

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

        .nav-brand .logo {
            height: 48px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .nav-brand .logo:hover {
            transform: scale(1.05);
        }

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

        .nav-link {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #ff6b35;
        }

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

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

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

        .nav-toggle span {
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Logo placeholder */
        .logo-placeholder {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            min-height: 100svh; /* Suporte moderno para altura da viewport */
            display: flex;
            align-items: center;
            color: #fff;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            min-height: 100vh;
            min-height: 100svh; /* Garante altura total em mobile */
            z-index: -2;
        }

        .hero-bg-image {
            width: 100%;
            height: 100%;
            min-height: 100vh;
            min-height: 100svh;
            object-fit: cover;
            object-position: center;
            position: absolute;
            top: 0;
            left: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 107, 53, 0.1) 100%);
            z-index: -1;
        }

        .hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem 0;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .hero-title a:hover {
            color: #ff6b35;
        }

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

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

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            color: #ff6b35;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
            font-size: 1.1rem;
        }

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

        .btn-primary {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: #fff;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid #ff6b35;
        }

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

        /* Section Headers */
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.6;
        }

        /* Canais Section */
        .canais-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

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

        .canais-category {
            background: #fff;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.1);
        }

        .canais-category:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: rgba(255, 107, 53, 0.3);
        }

        .category-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            overflow: hidden;
            position: relative;
        }

        .category-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .canais-category:hover .category-icon {
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }

        .canais-category:hover .category-icon img {
            transform: scale(1.1);
        }

        .canais-category h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1rem;
        }

        .canais-category p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        /* Video Section */
        .video-section {
            padding: 5rem 0;
            background: #fff;
        }

        .video-facade {
            position: relative;
            max-width: 800px;
            margin: 3rem auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .video-facade:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .video-facade img {
            width: 100%;
            height: auto;
            display: block;
        }

        .video-facade-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .video-facade-play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
        }

        .video-facade-play-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 55%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border-left: 20px solid #fff;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
        }

        #youtube-player-container {
            max-width: 800px;
            margin: 3rem auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        #youtube-player-container iframe {
            width: 100%;
            height: 450px;
            border: none;
        }

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

        /* Teste Section */
        .teste-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .teste-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-top: 3rem;
        }

        .teste-info h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 2rem;
        }

        .teste-image {
            margin-bottom: 2rem;
        }

        .teste-img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .teste-benefits {
            list-style: none;
            padding: 0;
        }

        .teste-benefits li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #555;
            line-height: 1.6;
        }

        .check-icon {
            width: 24px;
            height: 24px;
            color: #ff6b35;
            flex-shrink: 0;
        }

        .teste-cta-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .teste-cta-card {
            background: #fff;
            padding: 3rem 2.5rem;
            border-radius: 25px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.1);
            max-width: 400px;
            width: 100%;
        }

        .teste-cta-card h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1rem;
        }

        .teste-cta-card p {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .btn-full {
            width: 100%;
            margin-bottom: 1rem;
        }

        .cta-disclaimer {
            font-size: 0.9rem;
            color: #999;
            margin-bottom: 0 !important;
        }

        /* Recursos Section */
        .recursos-section {
            padding: 5rem 0;
            background: #fff;
        }

        .recursos-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin: 3rem 0 4rem;
        }

        .recursos-image {
            position: relative;
        }

        .recursos-img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .recursos-text h3 {
            font-size: 2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .recursos-text p {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.6;
        }

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

        .recurso-card {
            background: #f8f9fa;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 107, 53, 0.1);
        }

        .recurso-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-color: rgba(255, 107, 53, 0.3);
        }

        .recurso-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .recurso-icon svg {
            width: 35px;
            height: 35px;
            color: #fff;
        }

        .recurso-card:hover .recurso-icon {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
        }

        .recurso-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1rem;
        }

        .recurso-card p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
        }

        /* Planos Section */
        .planos-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

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

        .plano-card {
            background: #fff;
            border-radius: 25px;
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

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

        .plano-popular {
            border-color: #ff6b35;
            transform: scale(1.05);
        }

        .plano-popular:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .plano-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: #fff;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }

        .plano-header h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 0.5rem;
        }

        /* ESTILO OPÇÃO B - DESTAQUE NOS VALORES */
        .plano-price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            margin: 1.5rem 0;
            color: #ff6b35;
        }

        .plano-price .currency {
            font-size: 1.4rem;
            font-weight: 700;
            margin-right: 2px;
        }

        .plano-price .amount {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1;
        }

        .plano-price .period {
            font-size: 1.1rem;
            color: #666;
            font-weight: 400;
            margin-left: 5px;
        }

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

        .plano-features li {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1rem;
            font-size: 1rem;
            color: #555;
        }

        .plano-features .check-icon {
            width: 20px;
            height: 20px;
            color: #ff6b35;
            flex-shrink: 0;
        }

        .btn-outline {
            background: transparent;
            color: #ff6b35;
            border: 2px solid #ff6b35;
            width: 100%;
        }

        .btn-outline:hover {
            background: #ff6b35;
            color: #fff;
        }

        /* FAQ Section */
        .faq-section {
            padding: 5rem 0;
            background: #fff;
        }

        .faq-container {
            max-width: 800px;
            margin: 3rem auto 0;
        }

        .faq-item {
            background: #f8f9fa;
            border-radius: 15px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 107, 53, 0.1);
        }

        .faq-item:hover {
            border-color: rgba(255, 107, 53, 0.3);
        }

        .faq-item.active {
            border-color: #ff6b35;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 1.5rem 2rem;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin: 0;
            line-height: 1.4;
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            color: #ff6b35;
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #fff;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-answer p {
            padding: 1.5rem 2rem;
            margin: 0;
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Contato Section */
        .contato-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .contato-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contato-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contato-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            background: #fff;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.1);
            transition: all 0.3s ease;
        }

        .contato-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border-color: rgba(255, 107, 53, 0.3);
        }

        .contato-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contato-icon svg {
            width: 30px;
            height: 30px;
            color: #fff;
        }

        .contato-details h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .contato-details p {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .contato-link {
            color: #ff6b35;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contato-link:hover {
            color: #f7931e;
            text-decoration: underline;
        }

        .contato-cta {
            display: flex;
            align-items: flex-start;
        }

        .contato-cta-card {
            background: #fff;
            padding: 3rem 2.5rem;
            border-radius: 25px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 107, 53, 0.1);
            width: 100%;
        }

        .contato-cta-card h3 {
            font-size: 1.6rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1rem;
        }

        .contato-cta-card p {
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: #fff;
            padding: 3rem 0 1rem;
        }

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

        .footer-brand .footer-logo {
            height: 40px;
            width: auto;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: #ccc;
            line-height: 1.6;
            margin: 0;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .footer-column h4 {
            color: #ff6b35;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
        }

        .footer-column ul li {
            margin-bottom: 0.5rem;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #ff6b35;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: #999;
            margin: 0;
        }

        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #ff6b35;
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: #f7931e;
            transform: translateY(-2px);
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
        }

        .footer-logo-placeholder {
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            color: white;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            display: inline-block;
            margin-bottom: 1rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            /* Correções específicas para mobile */
            .hero {
                min-height: 100vh;
                min-height: 100svh;
                min-height: -webkit-fill-available; /* Safari iOS */
            }

            .hero-bg {
                min-height: 100vh;
                min-height: 100svh;
                min-height: -webkit-fill-available; /* Safari iOS */
            }

            .hero-bg-image {
                min-height: 100vh;
                min-height: 100svh;
                min-height: -webkit-fill-available; /* Safari iOS */
                object-fit: cover;
                object-position: center center;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: rgba(0, 0, 0, 0.95);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                gap: 1rem;
            }

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

            .nav-toggle {
                display: flex;
            }

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

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

            .hero-features {
                gap: 1.5rem;
                flex-direction: column;
                align-items: center;
            }

            .hero-cta {
                flex-direction: column;
                align-items: center;
            }

            .btn-large {
                width: 100%;
                max-width: 300px;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1.1rem;
            }

            .canais-section,
            .video-section,
            .teste-section,
            .recursos-section,
            .planos-section,
            .faq-section,
            .contato-section {
                padding: 3rem 0;
            }

            .canais-showcase {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .canais-category {
                padding: 2rem 1.5rem;
            }

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

            .category-icon img {
                width: 100%;
                height: 100%;
            }

            .video-facade {
                margin: 2rem auto;
                border-radius: 15px;
            }

            .video-facade-play-button {
                width: 60px;
                height: 60px;
            }

            .video-facade-play-button::before {
                border-left: 15px solid #fff;
                border-top: 9px solid transparent;
                border-bottom: 9px solid transparent;
            }

            #youtube-player-container iframe {
                height: 300px;
            }

            .teste-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .teste-info h3 {
                font-size: 1.5rem;
            }

            .teste-benefits li {
                font-size: 1rem;
            }

            .teste-cta-card {
                padding: 2rem 1.5rem;
            }

            .teste-cta-card h3 {
                font-size: 1.4rem;
            }

            .recursos-hero {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .recursos-text h3 {
                font-size: 1.6rem;
            }

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

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

            .recurso-card {
                padding: 2rem 1.5rem;
            }

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

            .recurso-icon svg {
                width: 30px;
                height: 30px;
            }

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

            .plano-card {
                padding: 2rem 1.5rem;
            }

            .plano-popular {
                transform: none;
            }

            .plano-popular:hover {
                transform: translateY(-10px);
            }

            .plano-header h3 {
                font-size: 1.3rem;
            }

            .faq-question {
                padding: 1.2rem 1.5rem;
            }

            .faq-question h3 {
                font-size: 1rem;
            }

            .faq-answer p {
                padding: 1.2rem 1.5rem;
                font-size: 0.95rem;
            }

            .faq-icon {
                width: 20px;
                height: 20px;
            }

            .contato-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .contato-item {
                padding: 1.5rem;
                flex-direction: column;
                text-align: center;
            }

            .contato-icon {
                width: 50px;
                height: 50px;
            }

            .contato-icon svg {
                width: 25px;
                height: 25px;
            }

            .contato-cta-card {
                padding: 2rem 1.5rem;
            }

            .contato-cta-card h3 {
                font-size: 1.4rem;
            }

            .footer {
                padding: 2rem 0 1rem;
            }

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

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

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            /* Garantir cobertura total em smartphones pequenos */
            .hero {
                min-height: 100vh;
                min-height: 100svh;
                min-height: -webkit-fill-available;
            }

            .hero-bg {
                min-height: 100vh;
                min-height: 100svh;
                min-height: -webkit-fill-available;
            }

            .hero-bg-image {
                min-height: 100vh;
                min-height: 100svh;
                min-height: -webkit-fill-available;
                object-fit: cover;
                object-position: center;
            }

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

            .feature-item {
                font-size: 1rem;
            }

            .video-facade-play-button {
                width: 50px;
                height: 50px;
            }

            .video-facade-play-button::before {
                border-left: 12px solid #fff;
                border-top: 7px solid transparent;
                border-bottom: 7px solid transparent;
            }

            #youtube-player-container iframe {
                height: 250px;
            }
        }

        /* Scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Correção adicional para dispositivos móveis */
        @supports (-webkit-touch-callout: none) {
            .hero {
                min-height: -webkit-fill-available;
            }
            
            .hero-bg {
                min-height: -webkit-fill-available;
            }
            
            .hero-bg-image {
                min-height: -webkit-fill-available;
            }
        }

        /* Usando variável customizada para altura precisa */
        .hero {
            height: calc(var(--vh, 1vh) * 100);
        }
        
        .hero-bg {
            height: calc(var(--vh, 1vh) * 100);
        }
        
        .hero-bg-image {
            height: calc(var(--vh, 1vh) * 100);
        }
/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.1);
}
.whatsapp-float svg {
    width: 35px;
    height: 35px;
}
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Sidebar and legal pages layout */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}
.content-main {
    flex: 1 1 65%;
}
.sidebar {
    flex: 1 1 30%;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}
.banner-promocional {
    background: #111;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,107,53,0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}
.banner-promocional:hover {
    transform: translateY(-5px);
}
.banner-img-3d {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.banner-title {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}
.banner-text {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.banner-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    width: 100%;
}
@media (max-width: 992px) {
    .content-main, .sidebar {
        flex: 1 1 100%;
    }
    .sidebar {
        position: static;
        margin-top: 2rem;
    }
}

/* SVG Icons Fixes */
.check-icon, .x-icon, .warning-icon, .info-icon, .dollar-icon, .shield-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.check-icon { stroke: var(--primary-color); }
.x-icon { stroke: #ff4d4d; }
.warning-icon { stroke: #ffb84d; }
.info-icon, .dollar-icon, .shield-icon { stroke: #4da6ff; }
