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

        :root {
            --primary-color: #9c27b0;
            --secondary-color: #ff5722;
            --text-color: #9c27b0;
            --holo-color: rgba(255, 255, 255, 0.6);
            --light-gray: #f5f5f5;
            --medium-gray: #e0e0e0;
            --dark-gray: #757575;
            --button-gradient: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
            --accent-color: #4caf50;
        }

        @keyframes shine {
            0% {
                background-position: -100% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        @keyframes fade-in {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        html, body {
            height: 100%;
            width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: linear-gradient(135deg, #ff5722 0%, #9c27b0 100%);
            min-height: 100vh;
            margin: 0;
            padding: 0;
            padding-top: env(safe-area-inset-top);
            padding-bottom: env(safe-area-inset-bottom);
            padding-left: env(safe-area-inset-left);
            padding-right: env(safe-area-inset-right);
            position: relative;
        }

        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: fade-in 0.5s ease-in-out;
        }

        .profile-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 25px;
            text-align: center;
            width: 100%;
        }

        .profile-img-container {
            position: relative;
            width: 100px;
            height: 100px;
            margin-bottom: 15px;
        }

        .profile-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .profile-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-name {
            font-size: 24px;
            font-weight: bold;
            color: white;
            margin-bottom: 5px;
        }

        .option-buttons {
            display: flex;
            width: 100%;
            max-width: 600px;
            gap: 15px;
            margin-bottom: 20px;
        }

        @media (max-width: 600px) {
            .option-buttons {
                flex-direction: column;
            }
        }

        .option-button {
            flex: 1;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 18px;
            background: var(--button-gradient);
            border-radius: 24px;
            text-decoration: none;
            color: var(--text-color);
            font-weight: bold;
            font-size: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            gap: 10px;
            overflow: hidden;
        }

        .option-button::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                125deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0) 40%,
                var(--holo-color) 50%,
                rgba(255, 255, 255, 0) 60%,
                rgba(255, 255, 255, 0) 100%
            );
            background-size: 200% 200%;
            animation: shine 2s infinite linear;
            z-index: 1;
            pointer-events: none;
        }

        .option-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        .option-button i {
            font-size: 24px;
            z-index: 2;
        }

        .option-button span {
            z-index: 2;
        }

        .content-section {
            background: var(--button-gradient);
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 600px;
            padding: 20px;
            margin-bottom: 20px;
            display: none;
            animation: fade-in 0.5s ease-in-out;
            position: relative;
            overflow: hidden;
        }

        .content-section::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: linear-gradient(
                125deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0) 40%,
                var(--holo-color) 50%,
                rgba(255, 255, 255, 0) 60%,
                rgba(255, 255, 255, 0) 100%
            );*/
            background-size: 200% 200%;
            animation: shine 3s infinite linear;
            z-index: 1;
            pointer-events: none;
        }

        .section-title {
            font-size: 20px;
            color: var(--text-color);
            margin-bottom: 15px;
            text-align: center;
            font-weight: bold;
            position: relative;
            z-index: 2;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

        @media (min-width: 768px) {
            .stats-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .stat-card {
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 12px;
            padding: 15px;
            text-align: center;
        }

        .stat-icon {
            margin-bottom: 8px;
            color: var(--text-color);
            font-size: 20px;
        }

        .stat-title {
            color: var(--text-color);
            font-size: 14px;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .stat-subtitle {
            color: var(--dark-gray);
            font-size: 10px;
            margin-bottom: 10px;
        }

        .stat-value {
            font-size: 24px;
            font-weight: bold;
            color: var(--text-color);
        }

        .verify-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 14px;
            margin-top: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            gap: 8px;
            position: relative;
            z-index: 2;
        }

        .verify-button:hover {
            background-color: #7b1fa2;
            transform: translateY(-2px);
        }

        /* Formulário */
        .form-group {
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            color: var(--text-color);
            margin-bottom: 6px;
            font-weight: 500;
        }

        .input-with-icon {
            position: relative;
        }

        .input-with-icon i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--dark-gray);
            font-size: 20px;
        }

         .form-control-date {
            width: 40%;
            height: 60px;
            padding: 10px 2px 10px 50px;
            border: 1px solid var(--medium-gray);
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background-color: rgba(255, 255, 255, 0.7);
        }

        .form-control-date:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.1);
            outline: none;
        }

        .form-control {
            width: 100%;
            height: 60px;
            padding: 10px 15px 10px 50px;
            border: 1px solid var(--medium-gray);
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background-color: rgba(255, 255, 255, 0.7);
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.1);
            outline: none;
        }

        .form-control::placeholder {
            color: #bdbdbd;
        }

        .select-with-icon {
            position: relative;
        }

        .select-with-icon i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--dark-gray);
            font-size: 20px;
            z-index: 1;
        }

        .select-control {
            width: 100%;
            height: 60px;
            padding: 10px 15px 10px 50px;
            border: 1px solid var(--medium-gray);
            border-radius: 12px;
            font-size: 16px;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23757575' d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-color: rgba(255, 255, 255, 0.7);
        }

        .select-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.1);
            outline: none;
        }

        .textarea-control {
            width: 100%;
            min-height: 120px;
            padding: 15px 15px 15px 50px;
            border: 1px solid var(--medium-gray);
            border-radius: 12px;
            font-size: 16px;
            font-family: Arial, Helvetica, sans-serif;
            resize: vertical;
            background-color: rgba(255, 255, 255, 0.7);
        }

        .textarea-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.1);
            outline: none;
        }

        .textarea-with-icon i {
            position: absolute;
            left: 15px;
            top: 20px;
            color: var(--dark-gray);
            font-size: 20px;
        }

        .submit-button {
            width: 100%;
            height: 60px;
            background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        .submit-button::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                125deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0) 40%,
                var(--holo-color) 50%,
                rgba(255, 255, 255, 0) 60%,
                rgba(255, 255, 255, 0) 100%
            );
            background-size: 200% 200%;
            animation: shine 2s infinite linear;
            z-index: 1;
            pointer-events: none;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .submit-button:active {
            transform: translateY(0);
        }

        .required {
            color: #f44336;
            margin-left: 3px;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-size: 16px;
            margin-top: 20px;
            gap: 5px;
            transition: transform 0.3s ease;
        }

        .back-link:hover {
            transform: translateX(-5px);
        }

        .success-message {
            display: none;
            background-color: rgba(46, 125, 50, 0.9);
            color: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            margin: 20px 0;
            font-weight: bold;
            animation: fade-in 0.5s ease-in-out;
            width: 100%;
            max-width: 600px;
        }
        
        /* Estilos para calculadora de preço */
        .pricing-calculator {
            background-color: rgba(255, 255, 255, 0.2);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }
        
        .pricing-title {
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--text-color);
            text-align: center;
        }
        
        .pricing-subtitle {
            text-align: center;
            color: var(--text-color);
            margin-bottom: 20px;
            font-size: 14px;
        }
        
        .pricing-form {
            margin-bottom: 20px;
        }
        
        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        @media (max-width: 600px) {
            .form-row {
                flex-direction: column;
                gap: 10px;
            }
        }
        
        .form-group.half {
            flex: 1;
            min-width: 0;
        }
        
        .calculate-button {
            width: 100%;
            height: 50px;
            background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .calculate-button::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                125deg,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0) 40%,
                var(--holo-color) 50%,
                rgba(255, 255, 255, 0) 60%,
                rgba(255, 255, 255, 0) 100%
            );
            background-size: 200% 200%;
            animation: shine 2s infinite linear;
            z-index: 1;
            pointer-events: none;
        }
        
        .calculate-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        .price-result {
            background-color: rgba(255, 255, 255, 0.3);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 15px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .price-tag {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        
        .price-label {
            font-size: 16px;
            color: var(--text-color);
            font-weight: 500;
        }
        
        .price-value {
            font-size: 28px;
            font-weight: bold;
            color: var(--text-color);
        }
        
        .price-details {
            font-size: 14px;
            color: var(--text-color);
            padding-top: 10px;
            border-top: 1px solid rgba(156, 39, 176, 0.2);
        }
        
        .highlight {
            color: var(--accent-color);
            font-weight: bold;
        }
        
        .pricing-table-toggle {
            text-align: center;
            margin-bottom: 15px;
        }
        
        .toggle-button {
            background-color: transparent;
            border: 1px solid var(--primary-color);
            color: var(--text-color);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .toggle-button:hover {
            background-color: rgba(156, 39, 176, 0.1);
        }
        
        .full-pricing-table {
            display: none;
            margin-top: 15px;
            overflow-x: auto;
        }
        
        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .pricing-table th, .pricing-table td {
            padding: 12px;
            text-align: center;
            border: 1px solid rgba(156, 39, 176, 0.1);
        }
        
        .pricing-table th {
            background-color: rgba(156, 39, 176, 0.1);
            color: var(--text-color);
            font-weight: bold;
        }
        
        .pricing-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .pricing-table td {
            color: var(--text-color);
        }

        /* Orçamento seção */
        .pricing-info {
            background-color: rgba(255, 255, 255, 0.2);
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
            margin-bottom: 15px;
            font-size: 14px;
            color: var(--text-color);
            position: relative;
            z-index: 2;
        }

        .pricing-title {
            font-weight: bold;
            margin-bottom: 5px;
        }

        /* Responsivo */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
        }

        @media (min-width: 768px) {
            .container {
                padding: 30px;
            }
        }

        .date-inputs {
            position: relative;
        }

        .date-input-group {
            display: flex;
            gap: 10px;
            width: 100%;
        }

        .date-input-group .form-control-date {
            flex: 1;
        }

        .date-input-group select.form-control-date {
            padding-right: 25px;
        }

        .date-inputs i {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
        }

        .date-input-group input,
        .date-input-group select {
            padding-left: 35px;
        }