/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #003d99;
    --secondary-color: #0052cc;
    --dark-color: #1a1a2e;
    --light-color: #f5f7fa;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --success: #1e7e34;
    --accent: #00a8ff;
    --gradient: linear-gradient(135deg, #003d99 0%, #0052cc 50%, #00a8ff 100%);
    --gradient-light: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 61, 153, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 61, 153, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--gray-light);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle:active {
    transform: scale(0.95);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #003d99 0%, #0052cc 50%, #00a8ff 100%);
    color: var(--white);
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: left;
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 1s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge i {
    color: #ffd700;
    font-size: 1.2rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.95;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: block;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    display: block;
}

.hero-slogan {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 35px;
    line-height: 1.6;
    letter-spacing: 0.3px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-slogan strong {
    font-weight: 600;
    font-size: 1.6rem;
    display: block;
}

.hero-slogan span {
    font-weight: 300;
    opacity: 0.95;
    font-size: 1.3rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    color: #28a745;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    min-height: 400px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
    object-fit: cover;
    min-height: 400px;
    max-width: 100%;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Prevenir zoom indesejado em iOS */
@supports (-webkit-touch-callout: none) {
    input, select, textarea {
        font-size: 16px !important;
    }
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: -1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    min-height: 52px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn i {
    position: relative;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--success);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-primary:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 40px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
}

/* Sobre Section */
.sobre {
    background: var(--light-color);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-text {
    font-size: 1.1rem;
}

.sobre-intro {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.sobre-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--gray);
}

.sobre-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre-image i {
    font-size: 15rem;
    color: var(--secondary-color);
    opacity: 0.2;
    animation: spin 20s linear infinite;
}

/* Serviços Section */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.servico-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--gray-light);
    position: relative;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    border-radius: 15px 15px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.servico-card:hover::before {
    opacity: 1;
}

.servico-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(0, 61, 153, 0.2);
    transition: all 0.3s ease;
}

.servico-card:hover .servico-icon {
    transform: scale(1.1) rotate(5deg);
}

.servico-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.servico-card p {
    color: var(--gray);
}

.orcamento-cta {
    text-align: center;
    padding: 40px;
    background: var(--light-color);
    border-radius: 15px;
}

.orcamento-cta p {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--dark-color);
}

/* Diferenciais Section */
.diferenciais {
    background: var(--light-color);
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.diferencial-item {
    text-align: center;
}

.diferencial-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.diferencial-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.diferencial-item p {
    color: var(--gray);
}

/* PMOC Section */
.pmoc {
    background: var(--dark-color);
    color: var(--white);
}

.pmoc h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.pmoc-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.pmoc h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.pmoc-beneficios {
    list-style: none;
}

.pmoc-beneficios li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.pmoc-beneficios i {
    color: var(--success);
    font-size: 1.3rem;
    margin-top: 2px;
}

.pmoc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pmoc-icon i {
    font-size: 12rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

/* Stats Section */
.stats {
    background: var(--gradient);
    padding: 80px 20px;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1;
}

.counter {
    display: block;
}

.stat-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    background: var(--light-color);
    padding: 80px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-light);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: var(--dark-color);
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* Contato Section */
.contato {
    background: var(--light-color);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.contato-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.contato-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contato-item:hover i {
    transform: scale(1.15);
}

.contato-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contato-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
}

.contato-item a:hover {
    text-decoration: underline;
}

.contato-item p {
    color: var(--gray);
    font-size: 1.1rem;
}

.contato-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.highlight-box {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.highlight-box:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.highlight-box i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.highlight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.highlight-box p {
    color: var(--gray);
}

.cta-final {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 40px 20px 20px;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 2.2rem;
}

.footer-slogan {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 168, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 20px rgba(40, 167, 69, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(40, 167, 69, 0.7);
    }
    100% {
        box-shadow: 0 5px 20px rgba(40, 167, 69, 0.4);
    }
}

.btn-primary {
    background: #1e7e34;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(30, 126, 52, 0.4);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background: #1a6b2d;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 126, 52, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
/* Tablets e dispositivos médios */
@media (max-width: 968px) {
    .container {
        padding: 0 25px;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        right: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        padding: 20px;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav a {
        display: block;
        padding: 12px 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav a:hover {
        background: var(--light-color);
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .sobre-content,
    .pmoc-content,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .sobre-image i,
    .pmoc-icon i {
        font-size: 8rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Smartphones e tablets pequenos */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header .container {
        padding: 12px 20px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo i {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    
    .main-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .hero-slogan {
        font-size: 1.2rem;
    }
    
    .hero-slogan strong {
        font-size: 1.4rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .hero-features {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .feature-item {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sobre-image i,
    .pmoc-icon i {
        font-size: 6rem;
    }
    
    .image-wrapper img {
        border-radius: 20px;
    }
}

/* Smartphones pequenos (iPhone SE, Android pequenos) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        padding: 10px 15px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo i {
        font-size: 1.4rem;
    }
    
    .menu-toggle {
        font-size: 1.3rem;
    }
    
    .hero {
        padding: 90px 15px 50px;
    }
    
    section {
        padding: 50px 15px;
    }
    
    .main-title {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
    }
    
    .subtitle {
        font-size: 0.95rem;
    }
    
    .hero-slogan {
        font-size: 1.1rem;
    }
    
    .hero-slogan strong {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 10px 18px;
        gap: 8px;
    }
    
    .hero-badge i {
        font-size: 1rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .feature-item i {
        font-size: 0.9rem;
    }
    
    .image-wrapper {
        border-radius: 15px;
    }
    
    .image-decoration {
        display: none;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .btn i {
        font-size: 1.1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 15px;
        right: 15px;
    }
    
    .servico-card,
    .diferencial-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .servico-card h3,
    .diferencial-card h3 {
        font-size: 1.2rem;
    }
    
    .servico-card p,
    .diferencial-card p {
        font-size: 0.95rem;
    }
    
    .servico-icon i,
    .diferencial-icon i {
        font-size: 2.5rem;
    }
    
    .sobre-image i,
    .pmoc-icon i {
        font-size: 5rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    margin: 20px;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease;
    position: relative;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--gray);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-color);
}

.close-modal:hover {
    color: var(--primary-color);
    background: var(--gray-light);
    transform: rotate(90deg);
}

.modal-header {
    background: var(--gradient);
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.modal-header i {
    font-size: 3.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.modal-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.modal-form {
    padding: 40px 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 61, 153, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 30px 20px;
    }
    
    .modal-header i {
        font-size: 3rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-header p {
        font-size: 0.95rem;
    }
    
    .modal-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 14px;
        font-size: 1rem;
    }
    
    .close-modal {
        right: 15px;
        top: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

/* iPhone SE e dispositivos muito pequenos */
@media (max-width: 375px) {
    .main-title {
        font-size: 1.6rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .hero-slogan {
        font-size: 1rem;
    }
    
    .hero-slogan strong {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 15px;
    }
    
    .feature-item {
        font-size: 0.75rem;
        padding: 7px 12px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 98%;
        margin: 5px;
    }
    
    .modal-header {
        padding: 25px 15px;
    }
    
    .modal-header i {
        font-size: 2.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-form {
        padding: 25px 15px;
    }
}

/* Tablets em landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-wrapper {
        gap: 40px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Telas grandes */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .main-title {
        font-size: 4rem;
    }
    
    .hero-slogan {
        font-size: 1.6rem;
    }
    
    .hero-slogan strong {
        font-size: 1.8rem;
    }
}

/* Fix para orientação landscape em smartphones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 20px 40px;
    }
    
    .hero-wrapper {
        gap: 30px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        margin-bottom: 15px;
    }
    
    .hero-slogan {
        margin-bottom: 20px;
    }
}

/* Ajustes para touch devices */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .servico-card,
    .diferencial-card,
    .testimonial-card {
        -webkit-tap-highlight-color: rgba(0, 61, 153, 0.1);
    }
    
    .nav a:hover {
        background: var(--light-color);
    }
    
    /* Aumentar áreas de toque */
    .menu-toggle {
        min-width: 44px;
        min-height: 44px;
    }
    
    .btn {
        min-height: 48px;
    }
    
    .whatsapp-float {
        min-width: 56px;
        min-height: 56px;
    }
}
