@charset "utf-8";
/* CSS Document */

        * {
            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;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            height: 40px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #00ff88;
        }

        .cta-header {
	color: white;
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 25px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
	background-color: rgba(3,105,34,1.00);
        }

        .cta-header:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::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><radialGradient id="g"><stop offset="0%25" stop-color="%2300ff88" stop-opacity="0.1"/><stop offset="100%25" stop-color="%2300ff88" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23g)"/><circle cx="800" cy="400" r="150" fill="url(%23g)"/><circle cx="300" cy="700" r="80" fill="url(%23g)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 4rem;
            align-items: start;
            position: relative;
            z-index: 2;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ffffff, #00ff88);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }

        .hero-text .subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #cccccc;
            font-weight: 300;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 2rem;
        }

        /* Hero Form Styles */
        .hero-form {
            background: rgba(255, 255, 255, 0.95);
            padding: 2.5rem;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(0, 255, 136, 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: sticky;
            top: 120px;
        }

        .hero-form h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #333;
            text-align: center;
        }

        .hero-form .form-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .hero-form .form-group {
            margin-bottom: 1.5rem;
        }

        .hero-form .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #333;
        }

        .hero-form .form-group input {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            background: white;
            color: #333;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .hero-form .form-group input:focus {
            outline: none;
            border-color: #00ff88;
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
        }

        .hero-form .form-group input::placeholder {
            color: #999;
        }

        .hero-form .form-group.error input {
            border-color: #ff4757;
            background: rgba(255, 71, 87, 0.05);
        }

        .hero-form .error-message {
            color: #ff4757;
            font-size: 0.9rem;
            margin-top: 0.5rem;
            display: none;
        }

        .hero-form .form-group.error .error-message {
            display: block;
        }

        .hero-form .btn-submit {
            width: 100%;
            background: linear-gradient(45deg, #00ff88, #00cc6a);
            color: white;
            padding: 1.2rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
        }

        .hero-form .btn-submit:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
        }

        .hero-form .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .hero-form .success-message {
            background: rgba(0, 255, 136, 0.1);
            border: 1px solid #00ff88;
            color: #00ff88;
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            margin-top: 1rem;
            display: none;
        }

        .hero-form .trust-badges {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #e0e0e0;
            font-size: 0.8rem;
            color: #666;
        }

        .hero-form .trust-badge {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .hero-form .trust-badge i {
            color: #00ff88;
        }

        .ai-visualization {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(45deg, #00ff88, #00cc6a);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 50px rgba(0, 255, 136, 0.3); }
            50% { transform: scale(1.05); box-shadow: 0 0 80px rgba(0, 255, 136, 0.5); }
        }

        .ai-visualization i {
            font-size: 4rem;
            color: white;
        }

        .sound-waves {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            border: 2px solid rgba(0, 255, 136, 0.2);
            border-radius: 50%;
            animation: wave 2s ease-in-out infinite;
        }

        .sound-waves:nth-child(2) {
            width: 450px;
            height: 450px;
            animation-delay: 0.5s;
        }

        .sound-waves:nth-child(3) {
            width: 500px;
            height: 500px;
            animation-delay: 1s;
        }

        @keyframes wave {
            0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.1); }
        }

        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(45deg, #00ff88, #00cc6a);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
        }

        .btn-secondary {
            background: transparent;
			width: 30;
            color: white;
            padding: 1rem 2rem;
            border: 2px solid #00ff88;
            border-radius: 30px;
            font-size: 1.0rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary:hover {
            background: #00ff88;
            transform: translateY(-3px);
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #333;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            border: 1px solid #f0f0f0;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 255, 136, 0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, #00ff88, #00cc6a);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .feature-icon i {
            font-size: 2rem;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #333;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            color: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(45deg, #ffffff, #00ff88);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            transition: all 0.3s;
            text-decoration: none;
            color: white;
        }

        .contact-method:hover {
            background: rgba(0, 255, 136, 0.1);
            transform: translateX(10px);
        }

        .contact-method i {
            font-size: 1.5rem;
            color: #00ff88;
            width: 30px;
        }

        /* Contact Form */
        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 2.5rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 255, 136, 0.2);
        }

        .contact-form h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #00ff88;
            text-align: center;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #ffffff;
        }

        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 1rem;
            transition: all 0.3s;
        }

        .form-group input:focus {
            outline: none;
            border-color: #00ff88;
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group.error input {
            border-color: #ff4757;
            background: rgba(255, 71, 87, 0.1);
        }

        .error-message {
            color: #ff4757;
            font-size: 0.9rem;
            margin-top: 0.5rem;
            display: none;
        }

        .form-group.error .error-message {
            display: block;
        }

        .btn-submit {
            width: 100%;
            background: linear-gradient(45deg, #00ff88, #00cc6a);
            color: white;
            padding: 1.2rem;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
        }

        .btn-submit:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
        }

        .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Success Modal Popup */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .success-modal {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            transform: scale(0.7);
            transition: all 0.3s ease;
            position: relative;
        }

        .modal-overlay.show .success-modal {
            transform: scale(1);
        }

        .success-modal .check-icon {
            font-size: 4rem;
            color: #00ff88;
            margin-bottom: 1.5rem;
            animation: checkPulse 0.6s ease-out;
        }

        @keyframes checkPulse {
            0% {
                transform: scale(0);
                opacity: 0;
            }
            50% {
                transform: scale(1.1);
                opacity: 1;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .success-modal h3 {
            color: #333;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .success-modal p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .success-modal .highlight {
            color: #00ff88;
            font-weight: 700;
        }

        .success-modal .close-btn {
            background: linear-gradient(45deg, #00ff88, #00cc6a);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 1.5rem;
            transition: all 0.3s;
        }

        .success-modal .close-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
        }

        .success-modal .emoji {
            font-size: 1.3rem;
            margin: 0 0.3rem;
        }

        /* Floating Contact Enhanced */
        .floating-contact {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .whatsapp-float {
            background: #25D366;
            color: white;
            padding: 1rem;
            border-radius: 50%;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            animation: bounce 2s infinite;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
        }

        .chat-bubble {
            background: white;
            color: #333;
            padding: 12px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            position: relative;
            white-space: nowrap;
            animation: slideIn 0.5s ease-out;
            border: 2px solid #25D366;
        }

        .chat-bubble::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -8px;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 8px 0 8px 8px;
            border-color: transparent transparent transparent #25D366;
        }

        @keyframes slideIn {
            0% {
                opacity: 0;
                transform: translateX(-20px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .chat-bubble .ai-text {
            background: linear-gradient(45deg, #25D366, #128C7E);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }
.termos {
	color: rgba(255,255,255,1.00);
	margin-top: 0px;

			
		}
.redes {
	margin-right: 30px;
	text-decoration: none;
	width: auto;
	height: auto;
	display: inline-block;
}


.termos:hover{
			color: #00B04A;

			
		}
.termos-uso {
	font-size: 15px;
	text-align: left;
	width: 800px;
}
.termos-uso p {
	font-size: 15px;
	text-align: left;
}
.termos-uso li {
	font-size: 15px;
	text-align: left;
	padding-bottom: 10px;
}
.termos-uso h3 {
	font-size: 19px;
	text-align: left;
	padding-top: 20px;
	padding-bottom: 10px;
}
		footer {
	background-color: rgba(10,10,10,1.00);
	color: rgba(0,0,0,1.00);
	background-image: -webkit-linear-gradient(270deg,rgba(27,27,27,1.00) 0%,rgba(9,9,9,1.00) 18.13%,rgba(9,9,9,1.00) 86.70%,rgba(27,27,27,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(27,27,27,1.00) 0%,rgba(9,9,9,1.00) 18.13%,rgba(9,9,9,1.00) 86.70%,rgba(27,27,27,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(27,27,27,1.00) 0%,rgba(9,9,9,1.00) 18.13%,rgba(9,9,9,1.00) 86.70%,rgba(27,27,27,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(27,27,27,1.00) 0%,rgba(9,9,9,1.00) 18.13%,rgba(9,9,9,1.00) 86.70%,rgba(27,27,27,1.00) 100%);
	padding-bottom: 40px;
	padding-top: 40px;
	width: auto;
	height: auto;
		}
		footer div {
			padding: 50px;
			color: rgba(255,255,255,1.00)
		}
.footer-one {
	width: 50%;
	display: inline-block;
}
.footer-two {
	width: 40%;
	display: inline-block;
	position: relative;
	top: 0px;
	margin-top: 0px;
	padding-top: 0px;
	float: right;
}

h1 {
	padding-top: 50px;
	font-size: 2EM;
}
.logo-partner {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	display: flex;
}





		
		
		
		/* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-form {
                position: static;
                order: -1;
                margin-bottom: 2rem;
            }

            .hero-text {
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
                gap: 0.8rem;
            }

            .btn-primary,
            .btn-secondary {
                justify-content: center;
            }

            .contact-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            /* Mobile floating contact */
            .floating-contact {
                bottom: 20px;
                right: 20px;
                flex-direction: column-reverse;
                align-items: flex-end;
                gap: 10px;
            }

            .chat-bubble {
                font-size: 12px;
                padding: 10px 12px;
                max-width: 140px;
                text-align: center;
            }

            .chat-bubble::after {
                top: auto;
                bottom: -8px;
                right: 20px;
                transform: none;
                border-width: 8px 8px 0 8px;
                border-color: #25D366 transparent transparent transparent;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
.footer-one {
	width: 100%;
	display: block;
}
.footer-two {
	display: block;
	width: 100%;
	height: 130px;
}
footer  {
	width: auto;
	height: 500px;
}



        }
