As Seen On
Recognized By
8 Aspects of Arizona Law on Sexual Offenses
Â
Introduction
Welcome to the Tamou Law Group PLLC blog, where we aim to provide you with clear and informative insights into legal matters that impact our community. Today, we’re delving into a sensitive yet crucial topic: the aspects of Arizona law pertaining to sexual offenses. Our goal is to shed light on the intricacies of these laws to help you understand your rights and the legal framework that governs such offenses in Arizona.1
Definition and Scope
Arizona law defines sexual offenses broadly, encompassing acts from sexual assault to indecent exposure. These offenses are outlined under various statutes, including ARS §13-1406 (Sexual Assault), ARS §13-1404 (Sexual Abuse), and others. It’s essential to understand that these laws are designed to protect individuals from unwelcome sexual conduct and to uphold the dignity and safety of the community.2
Consent
Consent plays a pivotal role in Arizona’s sexual offense laws. Arizona statutes stipulate that consent must be affirmative, voluntary, and explicit. Lack of resistance does not imply consent, and certain circumstances, such as when the victim is incapacitated, automatically negate consent. Understanding the nuances of consent is crucial for both individuals and legal professionals navigating these cases.3
Age of Consent
Arizona sets the age of consent at 18 years old (ARS §13-1405). Engaging in sexual activity with individuals under this age can lead to charges of statutory rape or sexual conduct with a minor, depending on the circumstances. This law aims to protect minors from exploitation and abuse, underscoring the importance of age in consent-related matters.4
Sexual Assault
Sexual assault, often referred to as rape, is a serious offense in Arizona. ARS §13-1406 defines sexual assault as knowingly engaging in sexual intercourse or oral sexual contact without the other person’s consent. Convictions can lead to significant prison time, underscoring the gravity of the offense.5
Sexual Abuse
Distinct from sexual assault, sexual abuse involves intentionally or knowingly engaging in sexual contact with someone without their consent (ARS §13-1404). This category is broad and can include a range of non-consensual behaviors that fall short of sexual assault.6
Indecent Exposure and Public Sexual Indecency
Arizona law addresses behaviors that may not involve physical contact but are still considered sexual offenses. Indecent exposure (ARS §13-1402) and public sexual indecency (ARS §13-1403) cover acts that are offensive or not appropriate for public view, aiming to maintain public decency.7
Romeo and Juliet Law
Arizona’s “Romeo and Juliet” law provides certain allowances for consensual sexual activity between minors or between a minor and someone close in age (ARS §13-1407). This law recognizes that teenagers close in age might engage in consensual activities, providing legal protection against severe statutory rape charges under specific, regulated circumstances.8
Legal Consequences and Registry
Convictions for sexual offenses in Arizona can lead to harsh penalties, including lengthy prison sentences, fines, and mandatory registration as a sex offender. This registry is a public record, significantly impacting an individual’s life and opportunities. It’s a stark reminder of the lasting consequences of these offenses.
Navigating the Legal System
Facing charges or accusations related to sexual offenses can be overwhelming and complex. The laws are intricate, with various factors influencing the outcomes of cases. Whether you’re seeking justice, defending your rights, or simply looking to understand more about Arizona’s legal system in this area, it’s essential to have knowledgeable and experienced legal support.At Tamou Law Group PLLC, we are committed to providing our clients with compassionate, comprehensive legal representation. Our experienced in Arizona’s legal system, especially concerning sexual offenses, positions us to offer the guidance and support you need during such challenging times.If you or someone you know is navigating the complexities of sexual offense laws in Arizona, don’t hesitate to reach out to us. Contact Tamou Law at 623-321-4699 for a consultation where we can discuss your situation confidentially and explore your legal options. Remember, you’re not alone, and having the right legal team can make all the difference.
Awards & Recognition
Our recognition for Phoenix sex crime defense is independently verified, click any award to confirm it:
- National Trial Lawyers Top 100
- National Trial Lawyers Top 40 Under 40
- Elite Lawyer 2026 – Criminal Defense
- Super Lawyers – Southwest
- National College for DUI Defense (NCDD)
When you are looking for the best Phoenix sex crime lawyers, these are the independently verified credentials that matter, earned by Founding Attorney Michael Tamou and a full team of attorneys, including former prosecutors.
What Clients Say About Tamou Law
Real Google reviews from clients we have defended across Phoenix and Maricopa County. Every review is from a criminal defense client, never padded with non-legal work.
Two Arizona Offices, One Team
We serve all of Maricopa County and the surrounding area, with free, confidential consultations 24/7 by phone and in-person meetings at either office by appointment.
Case Results Disclaimer: The results described on this page are based on specific facts and circumstances and do not guarantee or predict a similar outcome in any future case. Every case is different. Past results do not guarantee future results. No attorney-client relationship is formed by viewing this page or submitting a contact form until a written fee agreement has been signed. Tamou Law Group, PLLC is licensed to practice law in the State of Arizona. This website is for informational purposes only and does not constitute legal advice.
(function() {
function customizeConsultForm() {
var form = document.querySelector('#consult-form');
if (!form) return false;
var fields = form.querySelectorAll('.gfield');
var emailField = null;
var didWork = false;
fields.forEach(function(field) {
var label = field.querySelector('.gfield_label, label');
if (!label) return;
var labelText = (label.textContent || '').trim().toLowerCase();
if (labelText.indexOf('best way to reply') !== -1 || labelText.indexOf('preferred contact') !== -1) {
field.classList.add('tlg-hide-field');
field.querySelectorAll('input').forEach(function(input) {
input.checked = false;
input.removeAttribute('required');
});
didWork = true;
}
if (labelText.indexOf('email') !== -1) {
emailField = field;
field.classList.add('tlg-email-required');
field.querySelectorAll('input[type="email"], input[type="text"]').forEach(function(input) {
input.setAttribute('required', 'required');
input.setAttribute('aria-required', 'true');
});
didWork = true;
}
});
var gform = form.tagName === 'FORM' ? form : (form.querySelector('form') || form.closest('form'));
if (!gform) gform = document.querySelector('#consult-form form, form[id^="gform_"]');
if (gform && !gform.dataset.tlgSourceBound) {
gform.dataset.tlgSourceBound = '1';
var pageUrl = window.location.href;
var pageTitle = document.title || 'Phoenix White Collar Defense Lawyers';
var pagePath = window.location.pathname;
var sourceTag = '[Source: ' + pageTitle.replace(/\s*[,|].*$/, '') + ' | ' + pagePath + ']';
['source_page', 'page_url', 'lander_url'].forEach(function(name) {
var h = document.createElement('input');
h.type = 'hidden';
h.name = name;
h.value = pageUrl;
gform.appendChild(h);
});
var hp = document.createElement('input');
hp.type = 'hidden';
hp.name = 'source_path';
hp.value = pagePath;
gform.appendChild(hp);
function findMessageField() {
var match = null;
form.querySelectorAll('.gfield').forEach(function(field) {
var label = field.querySelector('.gfield_label, label');
if (!label) return;
var t = (label.textContent || '').trim().toLowerCase();
if (t.indexOf('message') !== -1 || t.indexOf('comment') !== -1 || t.indexOf('detail') !== -1 || t.indexOf('describe') !== -1 || t.indexOf('tell us') !== -1 || t.indexOf('your story') !== -1) {
match = field.querySelector('textarea, input[type="text"]');
}
});
if (!match) match = form.querySelector('textarea');
return match;
}
function prependSource() {
var textarea = findMessageField();
if (textarea && textarea.value.indexOf('[Source:') === -1) {
textarea.value = sourceTag + '\n\n' + (textarea.value || '');
}
}
gform.addEventListener('submit', prependSource, true);
var submitBtns = gform.querySelectorAll('input[type="submit"], button[type="submit"], .gform_button');
submitBtns.forEach(function(btn) {
btn.addEventListener('click', function() {
setTimeout(prependSource, 0);
prependSource();
}, true);
});
}
var submitBtn = form.querySelector('input[type="submit"], button[type="submit"]');
if (submitBtn && emailField && !submitBtn.dataset.tlgBound) {
submitBtn.dataset.tlgBound = '1';
submitBtn.addEventListener('click', function(e) {
var emailInput = emailField.querySelector('input[type="email"], input[type="text"]');
if (emailInput && !emailInput.value.trim()) {
e.preventDefault();
emailInput.focus();
emailInput.style.borderColor = '#c62828';
emailInput.style.boxShadow = '0 0 0 3px rgba(198,40,40,.15)';
}
});
}
return didWork;
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', customizeConsultForm);
} else {
customizeConsultForm();
}
var attempts = 0;
var interval = setInterval(function() {
attempts++;
var done = customizeConsultForm();
if (done || attempts > 10) clearInterval(interval);
}, 500);
})();






