:root {
    --primary-color: #00d4b3;
    --primary-dark: #00937a;
    --primary-light: #00d4b3;
    --secondary-color: #2d3436;
    --accent-color: #fd79a8;
    --light-color: #ffffff;
    --dark-color: #2d3436;
    --gray-light: #f8f9fa;
    --gray-medium: #dfe6e9;
    --gray-dark: #636e72;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    margin-top: 100px;
    font-size: 0.9rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.top-bar {
    padding: 10px 0;
    color: white;
    width: 100px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: white;
    text-decoration: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.main-nav {
    padding: 10px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.icone-main-nav {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.logo a {
    text-decoration: none;
}

.logo-primary {
    color: var(--primary-color);
}

.logo-secondary {
    color: #00d4b3;
}

.logo h1 {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    display: flex;
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta .btn {
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 5px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
        url('https://media.istockphoto.com/id/2183838623/pt/foto/mature-woman-exercising-on-cadillac-at-a-pilates-studio.webp?a=1&b=1&s=612x612&w=0&k=20&c=Qc4GA2F5sdqaCtICxei-QcWNw65gok8U0bE5LJyQFm0=');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 182, 152, 0.1), rgba(45, 52, 54, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1rem;
    margin-bottom: 25px;
    margin-top: 50px;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.highlight {
    color: var(--primary-light);
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00b698, #5ec4ff);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #00b698;
    border-radius: 2px;
}

.about-title .highlight {
    background: linear-gradient(90deg, #00b698, #5ec4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.visual-container {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.image-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover .about-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    pointer-events: none;
}

.visual-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #00b698, #5ec4ff);
    padding: 1.5rem;
    border-radius: 16px;
    color: white;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 4px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 2rem;
}

.mission-statement {
    background: linear-gradient(135deg, #f0f9ff 0%, #f5f3ff 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #00b698;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mission-icon {
    color: #00b698;
    font-size: 1.5rem;
    margin-top: 2px;
}

.mission-text {
    margin: 0;
    color: #334155;
    line-height: 1.6;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    text-align: center;
    border-top: solid 4px #00b698;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00b698, #5c92f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #00b698;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.benefit-content {
    position: relative;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.service-content p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: var(--transition);
}

.service-link:hover {
    gap: 15px;
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

.plano-lista {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.plano-lista li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-dark);
}

.plano-lista .fa-check {
    color: var(--primary-color);
}

.plano-lista .fa-times {
    color: var(--gray-medium);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: var(--gray-dark);
    font-weight: 400;
}

.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--gray-light) 0%, #e9ecef 100%);
}

.container-contato {
    display: grid;
    place-items: center;
    min-height: auto;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.contato {
    padding: 50px;
    align-items: center;
    width: 100%;
    max-width: 800px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    font-family: 'Montserrat', 'Arial', sans-serif;
    text-align: center;
    transition: var(--transition);
}

.contato:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contato-titulo {
    color: #2d3436;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.contato-titulo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.contato-descricao {
    color: var(--gray-dark);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contato-buttons {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.contato-btn {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contato-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.contato-btn:hover::before {
    left: 100%;
}

.contato-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn {
    border-left: 5px solid #25D366;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(37, 211, 102, 0.02));
}

.whatsapp-btn:hover {
    border-color: #25D366;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
}

.whatsapp-btn .btn-icon {
    background: linear-gradient(45deg, #25D366, #128C7E);
}


.instagram-btn {
    border-left: 5px solid #E4405F;
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.05), rgba(228, 64, 95, 0.02));
}

.instagram-btn:hover {
    border-color: #833AB4;
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.1), rgba(225, 48, 108, 0.05));
}

.instagram-btn .btn-icon {
    background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.btn-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-content {
    flex: 1;
    text-align: left;
}

.btn-title {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.btn-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--gray-dark);
    font-weight: 500;
}

.btn-arrow {
    color: var(--gray-medium);
    font-size: 1.4rem;
    transition: var(--transition);
}

.contato-btn:hover .btn-arrow {
    transform: translateX(8px);
    color: var(--primary-color);
}

.contato-info {
    padding-top: 40px;
    border-top: 1px solid var(--gray-medium);
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--gray-dark);
    font-size: 1.1rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 50px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.footer-col {
    display: block;
    margin-bottom: 0;
}

.footer-col h3 {
    color: white;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-description {
    color: var(--gray-medium);
    margin: 25px 0;
    line-height: 1.8;
    font-size: 1rem;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.footer-social .social-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
}

.footer-social .social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray-medium);
    font-size: 0.95rem;
}

.footer-bottom p {
    margin: 15px 0;
    line-height: 1.6;
}

.fa-heart {
    color: var(--accent-color);
    animation: heartbeat 1.5s ease-in-out infinite;
}

.hidden{
    opacity: 0;
    filter: blur(15px);
    transition: all 1s;
    transform: translateX(-100%);
}

.hidden-blurless{
    opacity: 0;
    filter: blur(15px);
    transition: all 1s;
}

.show{
    opacity: 1;
    filter: blur(0px);
    transition: all 1s;
    transform: translateX(0%);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1300px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .nav-menu {
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 100%;
        padding: 0 25px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contato-titulo {
        font-size: 2.2rem;
    }

    /* Grid ajustado para 2 colunas */
    .benefits-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 0.9rem;
    }

    .logo h1 {
        font-size: 1.6rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .section-title{
        text-align: center;
    }

    .section-subtitle{
        display: none;
    }

    .nav-menu {
        display: none;
    }

    /* CORREÇÃO: Classe que o JavaScript usa para mostrar o menu */
    .nav-menu.active {
        left: 0; /* Traz para dentro da tela */
        display: flex; /* Garante que está visível */
    }

    /* Botão do menu mobile - CORRIGIDO */
    .mobile-menu-btn {
        display: flex !important; /* Força exibição */
        order: 3;
        align-items: center;
        justify-content: center;
        width: 44px; /* Tamanho mínimo para toque */
        height: 44px;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--secondary-color);
        cursor: pointer;
        padding: 10px;
        z-index: 10000; /* Z-index maior que o menu */
        position: relative;
    }
    
    /* Estilo quando menu está aberto */
    .mobile-menu-btn.active {
        position: fixed;
        top: 20px;
        right: 20px;
        background: var(--primary-color);
        color: white;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .nav-cta {
        display: none;
    }

    .main-nav .container {
        display: flex;
        justify-content: space-between;
        /* align-items: center; */
    }

    .main-nav {
        display: flex;
        margin-right: 30%;
        align-items: center;
    }

    .main-nav h1 {
        width:40px;
        align-items: center;
    }

    .logo {
        order: 1;
        flex-grow: 1;
        text-align: center;
    }

    .icone-main-nav {
        order: 0;
        height: 50px;
        width: 50px;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .social-media {
        display: flex;
        justify-content: center;
    }

    .hero {
        padding: 140px 0 60px;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 20px;
        margin-bottom: 50px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btn-large {
        width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
    }

    .about-section,
    .benefits-section,
    .services,
    .contact-section {
        padding: 70px 0;
    }

    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .benefit-card {
        padding: 30px 25px;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 25px;
    }

    .contato {
        padding: 35px 25px;
        border-radius: 15px;
    }

    .contato-titulo {
        font-size: 1.9rem;
    }

    .contato-descricao {
        font-size: 1.05rem;
        margin-bottom: 35px;
    }

    .contato-btn {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .btn-icon {
        margin-right: 0;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .btn-content {
        text-align: center;
    }

    .btn-title {
        font-size: 1.2rem;
    }

    .btn-subtitle {
        font-size: 0.95rem;
    }

    .btn-arrow {
        display: none;
    }

    .footer {
        padding: 70px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .content-card {
        padding: 2rem;
    }

    .mission-statement {
        flex-direction: column;
        text-align: center;
    }

    .info-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .info-item i {
        margin-bottom: 5px;
    }
    
    /* CORREÇÃO: Previne scroll quando menu está aberto */
    body.menu-open {
        overflow: none;
    }
}
/* MOBILE PEQUENO (480px - 575px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    .about-section,
    .benefits-section,
    .services,
    .contact-section {
        padding: 60px 0;
    }

    /* Cards smaller */
    .benefit-card {
        padding: 25px 20px;
    }

    .benefit-title {
        font-size: 1.3rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .contato {
        padding: 30px 20px;
    }

    .contato-titulo {
        font-size: 1.7rem;
    }

    .contato-btn {
        padding: 15px 18px;
    }

    .btn-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .plano-lista li {
        font-size: 0.95rem;
    }

    .footer-col h3 {
        font-size: 1.3rem;
    }

    .about-title {
        font-size: 1.9rem;
    }

    .visual-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: -20px auto 20px;
        width: fit-content;
    }

    .image-frame {
        transform: none;
    }
}

@media (max-width: 479px) {
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .benefit-card {
        padding: 20px 15px;
    }

    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 20px;
    }

    .contato-titulo {
        font-size: 1.5rem;
    }

    .contato-descricao {
        font-size: 0.95rem;
    }

    .btn-title {
        font-size: 1.1rem;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 30px;
    }

    .icone-main-nav {
        height: 45px;
        width: 45px;
    }

    .logo h1 {
        font-size: 1.4rem;
    }
}

@media (max-width: 359px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        padding: 6px 15px;
        font-size: 0.8rem;
    }

    .hero-buttons .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .benefit-card {
        padding: 18px 12px;
    }

    .icon-circle {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .contato-btn {
        padding: 12px 15px;
    }

    .btn-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .btn-title {
        font-size: 1rem;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 120vh;
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 15px;
    }

    .btn-large {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}
