:root {
    --primary: #00bfb0;
    --primary-dark: #00978d;
    --primary-darker: #007772;
    --primary-darkest: #005955;
    --primary-extra-dark: #003d3c;
    --secondary: #ff7eb3;
    --light: #f8fcfb;
    --dark: #1a2a2a;
    --gray: #6b7a7a;
    --light-gray: #e0f0ef;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 191, 176, 0.1);
    --border-radius: 12px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif; /* Mesma fonte do body */
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: var(--shadow);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 191, 176, 0.2);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: #ff6ba3;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin-bottom: 3rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background-color: rgba(248, 252, 251, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(26, 42, 42, 0.05);
}

header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(26, 42, 42, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo-icon {
    width: 45px;
    height: 45px;
    filter: brightness(0) saturate(100%) invert(28%) sepia(25%) saturate(2.5) hue-rotate(166deg);
    transition: var(--transition);
}

.logo-wrapper:hover .navbar-logo-icon {
    transform: rotate(-5deg) scale(1.1);
    filter: brightness(0) saturate(100%) invert(20%) sepia(50%) saturate(3) hue-rotate(155deg);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-darkest);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-links .btn {
    padding: 10px 24px;
    font-size: 15px;
}

.nav-links .btn::after {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
    transition: var(--transition);
}

.hamburger:active {
    transform: scale(0.95);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(248, 252, 251, 1) 0%, rgba(224, 240, 239, 0.5) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 191, 176, 0.1) 0%, rgba(0, 191, 176, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-darkest);
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
    border: 8px solid white;
}

.hero-img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 191, 176, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    animation: float 6s ease-in-out infinite;
    border: 2px solid rgba(0, 191, 176, 0.2);
}

.floating-element:nth-child(1) {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 50%;
    right: -30px;
    animation-delay: 2s;
    width: 80px;
    height: 80px;
}

.floating-element:nth-child(3) {
    bottom: 20px;
    left: 30px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--light-gray);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 191, 176, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 191, 176, 0.1) 0%, rgba(0, 151, 141, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-darkest);
}

.feature-card p {
    color: var(--gray);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 8px solid white;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid var(--light-gray);
}

.about-badge h4 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.about-badge p {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.about-text h2 {
    margin-bottom: 25px;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 25px;
}

.about-list {
    margin-bottom: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.about-list i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: white;
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--light-gray);
    z-index: 1;
}

.step {
    display: flex;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 15px;
    align-items: center;
    flex-direction: column;
}


.step-number {
    width: 80px;
    height: 80px;
    background-color: white;
    border: 3px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 auto 25px;
    transition: var(--transition);
}

.step.active .step-number {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-darkest);
}

.step p {
    color: var(--gray);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    color: var(--primary-darkest);
}

.faq-question:hover {
    background-color: rgba(0, 191, 176, 0.05);
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--gray);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta .btn {
    background-color: white;
    color: var(--primary);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.cta .btn:hover {
    background-color: var(--light);
}

/* Footer */
footer {
    background-color: var(--primary-extra-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: block;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    filter: brightness(0) saturate(100%) invert(100%);
    opacity: 0.9;
    transition: var(--transition);
}

.footer-logo-wrapper:hover .footer-logo-icon {
    opacity: 1;
    transform: rotate(5deg) scale(1.05);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.footer-logo span {
    color: var(--primary);
}

.footer-quote {
    font-style: italic;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
    border-left: 3px solid var(--primary);
    padding-left: 15px;
}

.footer-author {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links-bottom a:hover {
    color: var(--primary);
}

/* Responsive Design */

/* Tablets e Laptops Menores (até 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content, .about-content {
        gap: 50px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 35px;
    }
}

/* Tablets (até 992px) */
@media (max-width: 992px) {
    .hero {
        padding: 150px 0 100px;
    }
    
    .hero-content, .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text h2 {
        font-size: 1.6rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-img {
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .about-text {
        order: 1;
    }

    .about-image {
        order: 2;
    }

    .about-badge {
        right: 10px;
        bottom: 20px;
        padding: 15px;
    }

    .about-badge h4 {
        font-size: 2rem;
    }
    
    .steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .steps::before {
        display: none;
    }

    .step {
        display: grid;
        grid-template-columns: 80px 1fr;
        text-align: left;
        column-gap: 20px;
    }

    .step-number {
        grid-row: 1 / 3;
        margin: 0;
        align-self: center;
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .features, .about, .how-it-works, .faq, .cta {
        padding: 80px 0;
    }
    
    .cta h2 {
        font-size: 2.3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Tablets Pequenos e Celulares Grandes (até 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navegação Mobile */
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links .btn {
        margin-top: 10px;
    }
    
    .hamburger {
        display: block;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .navbar-logo-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Hero */
    .hero {
        padding: 130px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 2.4rem;
    }
    
    .hero-text h2 {
        font-size: 1.4rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero::before {
        width: 300px;
        height: 300px;
    }
    
    .floating-element {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .floating-element:nth-child(2) {
        width: 60px;
        height: 60px;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-card {
        padding: 35px 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* About */
    .about-badge {
        position: static;
        margin: 20px auto 0;
        display: block;
        width: fit-content;
    }
    
    .about-text {
        order: 1;
    }

    .about-image {
        order: 2;
    }
    
    /* Section Title */
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* CTA */
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
    
    .cta::before, .cta::after {
        width: 200px;
        height: 200px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

/* Celulares (até 576px) */
@media (max-width: 576px) {
    html {
        scroll-padding-top: 75px;
    }

    .container {
        padding: 0 15px;
    }
    
    /* Header */
    header {
        padding: 15px 0;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    /* Nav */
    .nav-links {
        top: 70px;
    }

    /* Hero */
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .hero-img {
        border: 5px solid white;
    }
    
    .floating-element {
        display: none;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .nav-links .btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    /* Sections */
    .features, .about, .how-it-works, .faq, .cta {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .feature-card {
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    /* About */
    .about-img {
        border: 5px solid white;
    }
    
    .about-badge {
        padding: 15px;
    }
    
    .about-badge h4 {
        font-size: 2rem;
    }
    
    .about-badge p {
        font-size: 0.85rem;
    }
    
    /* Steps */
    .step {
        grid-template-columns: 60px 1fr;
        column-gap: 15px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        margin: 0;
    }
    
    .step h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .step p {
        font-size: 0.95rem;
    }
    
    /* FAQ */
    .faq-question {
        padding: 20px 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    /* CTA */
    .cta h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .cta p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    /* Footer */
    footer {
        padding: 60px 0 20px;
    }
    
    .footer-logo {
        font-size: 1.6rem;
    }
    
    .footer-logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .footer-heading {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .footer-content {
        margin-bottom: 40px;
    }
    
    .footer-quote {
        font-size: 0.95rem;
    }
    
    .contact-info i {
        font-size: 1rem;
    }
}

/* Celulares Pequenos (até 375px) */
@media (max-width: 375px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text h2 {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .cta h2 {
        font-size: 1.6rem;
    }
    
    .step {
        grid-template-columns: 55px 1fr;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
        margin: 0;
    }
}

/* Landscape Mobile (altura menor) */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .floating-element {
        display: none;
    }
    
    .nav-links {
        max-height: 70vh;
        overflow-y: auto;
        padding: 20px 0;
    }
}

/* Melhorias para Touch Devices */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }
    
    .feature-card:hover {
        transform: none;
    }
    
    .nav-links a:hover::after {
        width: 0;
    }
}

/* Impressão */
@media print {
    header, .hamburger, .floating-elements, .cta {
        display: none;
    }
    
    body {
        background-color: white;
    }
    
    .hero, .features, .about, .how-it-works, .faq {
        page-break-inside: avoid;
        padding: 30px 0;
    }
}