/* ===== VARIABLES ===== */
:root {
    --primary-color: #440099;
    --primary-dark: #330077;
    --primary-light: #5500bb;
    --secondary-color: #41b6e6;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #440099 0%, #330077 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    height: 70px;
    background-color: var(--primary-color);
}

.nav__logo h1 {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__logo {
    padding-right: 1rem;
    overflow: visible;
}

.nav__logo svg {
    height: 50px;
    width: auto;
    max-width: 250px;
    margin-left: -0.5rem;
    overflow: visible;
}

.nav__logo .svg-anim-wrapper svg {
    height: 40px;
    width: auto;
    max-width: 200px;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    text-decoration: none;
    color: var(--bg-light);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover {
    color: var(--secondary-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    -webkit-text-fill-color: var(--primary-color);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    -webkit-text-fill-color: var(--secondary-color);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero__title--highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: left;
}

.stat__number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat__label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__illustration {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 400px;
}

.illustration__card {
    position: absolute;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    padding: 0.5rem;
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
    display: block;
}

.illustration__card--1 {
    top: 0;
    left: 0;
    width: 65%;
    height: 55%;
    animation-delay: 0s;
}

.illustration__card--2 {
    top: 28%;
    right: 0;
    width: 60%;
    height: 50%;
    animation-delay: 2s;
}

.illustration__card--3 {
    bottom: 0;
    left: 18%;
    width: 55%;
    height: 45%;
    animation-delay: 4s;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--secondary-color);
    -webkit-text-fill-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== SECTION STYLES ===== */
.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section__tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section__description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 6rem 0;
    background: var(--bg-white);
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about__card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.about__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.about__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about__card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.about__card-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== PRODUCT SECTION ===== */
.product {
    padding: 6rem 0;
    background: var(--bg-light);
}

.product__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product__description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product__features {
    margin-bottom: 2rem;
}

.feature__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature__check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.feature__content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.feature__content p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.product__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 0; /* Permite que o grid shrink corretamente */
}

/* ===== CAROUSEL ===== */
.product__carousel {
    width: 100%;
    min-width: 0; /* Permite shrink */
}

.carousel__container {
    position: relative;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    min-height: 450px;
}

.carousel__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel__slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel__slide.active {
    opacity: 1;
    position: relative;
}

.carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(68, 0, 153, 0.4);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
}

.carousel__container:hover .carousel__button {
    opacity: 1;
    pointer-events: auto;
}

.carousel__button:hover {
    background: rgba(68, 0, 153, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.carousel__button:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel__button--prev {
    left: 1rem;
}

.carousel__button--next {
    right: 1rem;
}

.carousel__button svg {
    width: 24px;
    height: 24px;
}

.carousel__indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.carousel__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel__indicator:hover {
    transform: scale(1.2);
    background: rgba(68, 0, 153, 0.3);
}

.carousel__indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.dashboard__header {
    background: var(--gradient-primary);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard__dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard__dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.dashboard__title {
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.dashboard__content {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.dashboard__widget {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
}

.dashboard__widget--large {
    grid-column: 1 / -1;
}

.widget__header {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.widget__value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.widget__chart {
    height: 120px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.3) 100%);
    border-radius: 0.5rem;
    position: relative;
    overflow: hidden;
}

.widget__chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, var(--primary-color), var(--primary-light));
    border-radius: 0.5rem 0.5rem 0 0;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: 6rem 0;
    background: var(--bg-white);
}

/* ===== BLOG SECTION ===== */
.blog {
    padding: 6rem 0;
    background: var(--bg-light);
}

.blog__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.blog__subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.blog__text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.blog__topics {
    list-style: none;
    margin-bottom: 2.5rem;
}

.blog__topic {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog__topic:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.blog__topic-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.blog__topic span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

.blog__visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.blog__card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

.blog__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.blog__card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog__card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.blog__card-text {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit__card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.benefit__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit__card:hover::before {
    transform: scaleY(1);
}

.benefit__number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.1);
    margin-bottom: 1rem;
    line-height: 1;
}

.benefit__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit__text {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta {
    position: relative;
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
    overflow: hidden;
}

.cta__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta__description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.8;
}

.cta__form {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    text-align: left;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__group--full {
    grid-column: 1 / -1;
}

.form__input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.form__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.cta__form .btn--primary {
    width: 100%;
    background: var(--gradient-primary);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    margin-bottom: 1rem;
}

.footer__logo svg {
    height: 40px;
    width: auto;
    max-width: 180px;
}

.footer__text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: white;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVE ===== */

/* Tablet e Desktop Pequeno */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero__title {
        font-size: 3rem;
    }

    .section__title {
        font-size: 2.25rem;
    }

    .product__content {
        gap: 3rem;
    }

    .about__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Tablet */
@media (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-color);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

    .nav__menu.active {
        left: 0;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__link {
        color: white;
        font-size: 1.125rem;
        padding: 0.75rem 0;
    }

    .nav__link--cta {
        background: var(--secondary-color);
        margin-top: 1rem;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__description {
        font-size: 1.125rem;
    }

    .hero__stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__illustration {
        max-width: 500px;
        height: 400px;
        margin: 0 auto;
    }

    .product__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product__info {
        order: 2;
    }

    .product__visual {
        order: 1;
    }

    .section__title {
        font-size: 2rem;
    }

    .section__description {
        font-size: 1rem;
    }

    .about__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .carousel__container {
        min-height: 400px;
    }
}

/* Mobile Grande */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero {
        padding: 7rem 0 4rem;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .hero__buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero__stats {
        gap: 2rem;
    }

    .stat__number {
        font-size: 1.75rem;
    }

    .about,
    .product,
    .benefits,
    .blog,
    .cta {
        padding: 4rem 0;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit__card {
        padding: 2rem;
    }

    .feature__item {
        margin-bottom: 1.25rem;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer__brand {
        text-align: center;
    }

    .carousel__button {
        width: 40px;
        height: 40px;
    }

    .carousel__button svg {
        width: 20px;
        height: 20px;
    }

    .carousel__indicators {
        gap: 0.5rem;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .nav {
        padding: 1rem 1.5rem;
    }

    .nav__logo .svg-anim-wrapper svg {
        height: 35px;
        max-width: 160px;
    }

    .hero {
        padding: 6rem 0 3rem;
        min-height: auto;
    }

    .hero__title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero__description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }

    .hero__stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stat {
        text-align: center;
    }

    .stat__number {
        font-size: 1.5rem;
    }

    .hero__illustration {
        max-width: 100%;
        height: 300px;
        margin-top: 2rem;
    }

    .illustration__card {
        padding: 0.25rem;
    }

    .section__header {
        margin-bottom: 3rem;
    }

    .section__tag {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }

    .section__title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .section__description {
        font-size: 0.9375rem;
    }

    .about,
    .product,
    .benefits,
    .blog,
    .cta {
        padding: 3rem 0;
    }

    .about__card {
        padding: 1.5rem;
    }

    .about__icon {
        font-size: 2.5rem;
    }

    .about__card-title {
        font-size: 1.125rem;
    }

    .product__description {
        font-size: 1rem;
    }

    .feature__check {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .feature__content h4 {
        font-size: 1rem;
    }

    .benefit__number {
        font-size: 2.5rem;
    }

    .benefit__title {
        font-size: 1.25rem;
    }

    .benefit__text {
        font-size: 0.9375rem;
    }

    .blog__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog__subtitle {
        font-size: 1.5rem;
    }

    .blog__text {
        font-size: 1rem;
    }

    .blog__card {
        padding: 1.5rem;
    }

    .blog__card-icon {
        font-size: 2.5rem;
    }

    .cta {
        padding: 4rem 0;
    }

    .cta__title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .cta__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta__form {
        padding: 1.5rem;
    }

    .form__group {
        margin-bottom: 1.25rem;
    }

    .form__input {
        padding: 0.875rem;
        font-size: 0.9375rem;
    }

    .carousel__container {
        min-height: 300px;
        aspect-ratio: 4 / 3;
    }

    .carousel__button {
        width: 36px;
        height: 36px;
    }

    .carousel__button--prev {
        left: 0.5rem;
    }

    .carousel__button--next {
        right: 0.5rem;
    }

    .carousel__button svg {
        width: 18px;
        height: 18px;
    }

    .carousel__indicator {
        width: 10px;
        height: 10px;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer__logo svg {
        height: 35px;
        max-width: 160px;
    }

    .footer__content {
        margin-bottom: 2rem;
    }

    .cta__background {
        opacity: 0.15;
    }

    .product__carousel {
        max-width: 100%;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .hero__title {
        font-size: 1.75rem;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .cta__title {
        font-size: 1.5rem;
    }

    .about__card,
    .benefit__card {
        padding: 1.25rem;
    }

    .carousel__container {
        min-height: 250px;
    }

    .btn {
        font-size: 0.9375rem;
        padding: 0.75rem 1.25rem;
    }

    .cta__background {
        opacity: 0.1;
    }

    .cta {
        padding: 3rem 0;
    }
}

