/* =====================================================
   PRIMECLEAN - STYLE.CSS
   ===================================================== */

:root {
    --bg: #08111f;
    --bg-secondary: #0d1b33;
    --bg-card: #101f38;
    --bg-card-light: #142844;

    --blue: #1e90ff;
    --blue-light: #54aaff;
    --blue-dark: #096dcc;

    --white: #ffffff;
    --text: #d9e5f2;
    --text-muted: #8fa5bc;

    --border: rgba(255, 255, 255, 0.08);

    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

    --transition: 0.3s ease;
}


/* =====================================================
   RESET
   ===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =====================================================
   SCROLLBAR
   ===================================================== */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #060d18;
}

::-webkit-scrollbar-thumb {
    background: var(--blue-dark);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue);
}


/* =====================================================
   HEADER
   ===================================================== */

.header {
    width: 100%;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    padding: 18px 0;

    background: transparent;

    border-bottom: 1px solid transparent;

    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;

    background: rgba(8, 17, 31, 0.94);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =====================================================
   LOGO
   ===================================================== */

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    width: auto;
    height: 58px;

    object-fit: contain;

    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 50px;
}

.logo:hover .logo-img {
    transform: scale(1.03);
}

.footer-logo-img {
    height: 65px;
}


/* =====================================================
   NAVEGAÇÃO
   ===================================================== */

.nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.nav a {
    color: var(--text);

    font-size: 14px;
    font-weight: 500;

    transition: var(--transition);

    position: relative;
}

.nav a::after {
    content: "";

    position: absolute;

    width: 0;
    height: 2px;

    background: var(--blue);

    left: 0;
    bottom: -7px;

    transition: var(--transition);
}

.nav a:hover {
    color: var(--white);
}

.nav a:hover::after {
    width: 100%;
}


/* =====================================================
   BOTÃO HEADER
   ===================================================== */

.btn-header {
    height: 44px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    gap: 9px;

    border-radius: 10px;

    color: var(--white);
    background: var(--blue);

    font-weight: 600;
    font-size: 14px;

    transition: var(--transition);

    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.25);
}

.btn-header:hover {
    background: var(--blue-light);

    transform: translateY(-2px);

    box-shadow: 0 12px 30px rgba(30, 144, 255, 0.38);
}


/* =====================================================
   MENU MOBILE
   ===================================================== */

.menu-mobile {
    width: 44px;
    height: 44px;

    display: none;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.04);

    color: var(--white);

    font-size: 21px;

    cursor: pointer;
}


/* =====================================================
   HERO
   ===================================================== */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    position: relative;

    overflow: hidden;

    padding: 150px 0 90px;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(30, 144, 255, 0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 30% 80%,
            rgba(30, 144, 255, 0.08),
            transparent 30%
        ),
        linear-gradient(
            130deg,
            #07101d 0%,
            #0b1830 55%,
            #07101d 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    border: 1px solid rgba(30, 144, 255, 0.13);

    right: -180px;
    top: 70px;
}

.hero::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(30, 144, 255, 0.05);

    filter: blur(10px);

    left: -100px;
    bottom: 20px;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 70%,
            var(--bg)
        );

    pointer-events: none;
}

.hero-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 80px;
}


/* =====================================================
   HERO CONTEÚDO
   ===================================================== */

.hero-content {
    max-width: 650px;
}

.hero-tag,
.section-tag {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    color: var(--blue-light);

    margin-bottom: 20px;
}

.hero-tag::before,
.section-tag::before {
    content: "";

    width: 26px;
    height: 2px;

    background: var(--blue);
}

.hero h1 {
    font-family: "Montserrat", sans-serif;

    font-size: clamp(45px, 5vw, 72px);

    line-height: 1.05;

    letter-spacing: -3px;

    color: var(--white);

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;

    color: var(--blue);
}

.hero-content > p {
    max-width: 580px;

    font-size: 17px;

    color: var(--text-muted);

    line-height: 1.8;

    margin-bottom: 34px;
}


/* =====================================================
   BOTÕES
   ===================================================== */

.hero-buttons {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 45px;
}

.btn {
    min-height: 52px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 11px;

    font-size: 15px;
    font-weight: 700;

    transition: var(--transition);
}

.btn-primary {
    background: var(--blue);

    color: var(--white);

    box-shadow: 0 12px 30px rgba(30, 144, 255, 0.22);
}

.btn-primary:hover {
    background: var(--blue-light);

    transform: translateY(-3px);

    box-shadow: 0 15px 36px rgba(30, 144, 255, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);

    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.13);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);

    border-color: rgba(255, 255, 255, 0.25);

    transform: translateY(-3px);
}


/* =====================================================
   HERO FEATURES
   ===================================================== */

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 13px;
}

.hero-feature i {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: var(--blue);

    background: rgba(30, 144, 255, 0.1);

    border: 1px solid rgba(30, 144, 255, 0.15);
}

.hero-feature strong {
    display: block;

    color: var(--white);

    font-size: 13px;

    margin-bottom: 2px;
}

.hero-feature span {
    color: var(--text-muted);

    font-size: 12px;
}


/* =====================================================
   FOTO HERO
   ===================================================== */

.hero-visual {
    position: relative;

    width: 100%;
}

.hero-image {
    position: relative;

    width: 100%;
    height: auto;

    border-radius: 30px;

    overflow: hidden;

    background: #07111f;

    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.hero-image img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}

.hero-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5, 12, 23, 0.6) 0%,
            transparent 45%
        );

    pointer-events: none;
}

.hero-image-badge {
    position: absolute;

    z-index: 3;

    left: 25px;
    right: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 17px 19px;

    border-radius: 16px;

    background: rgba(8, 17, 31, 0.86);

    backdrop-filter: blur(16px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero-image-badge i {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(30, 144, 255, 0.14);

    color: var(--blue);

    font-size: 19px;
}

.hero-image-badge strong {
    display: block;

    color: var(--white);

    font-size: 15px;

    margin-bottom: 2px;
}

.hero-image-badge span {
    color: var(--text-muted);

    font-size: 12px;
}


/* =====================================================
   SEÇÕES
   ===================================================== */

.section {
    padding: 110px 0;
}

.section-header {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-header .section-tag {
    justify-content: center;
}

.section-header h2,
.differences-content h2,
.about-content h2 {
    font-family: "Montserrat", sans-serif;

    color: var(--white);

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.15;

    letter-spacing: -1.7px;

    margin-bottom: 18px;
}

.section-header h2 span,
.differences-content h2 span,
.about-content h2 span {
    color: var(--blue);
}

.section-header p,
.differences-content > p,
.about-content > p {
    color: var(--text-muted);

    line-height: 1.8;
}


/* =====================================================
   SERVIÇOS
   ===================================================== */

.services {
    background: var(--bg);
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.service-card {
    padding: 34px 28px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );

    border: 1px solid var(--border);

    transition: var(--transition);

    position: relative;

    overflow: hidden;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background: rgba(30, 144, 255, 0.08);

    right: -45px;
    top: -45px;

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(30, 144, 255, 0.3);

    background:
        linear-gradient(
            145deg,
            rgba(30, 144, 255, 0.075),
            rgba(255, 255, 255, 0.02)
        );

    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
    transform: scale(1.6);
}

.service-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(30, 144, 255, 0.1);

    color: var(--blue);

    font-size: 23px;

    margin-bottom: 24px;

    border: 1px solid rgba(30, 144, 255, 0.14);
}

.service-card h3 {
    color: var(--white);

    font-size: 19px;

    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);

    font-size: 14px;

    line-height: 1.75;
}


/* =====================================================
   DIFERENCIAIS
   ===================================================== */

.differences {
    background:
        linear-gradient(
            140deg,
            #091423 0%,
            #0e203b 100%
        );

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}

.differences-container {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 90px;
}

.differences-content {
    max-width: 510px;
}

.differences-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.difference {
    padding: 26px;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid var(--border);

    display: flex;

    gap: 17px;

    transition: var(--transition);
}

.difference:hover {
    background: rgba(30, 144, 255, 0.06);

    border-color: rgba(30, 144, 255, 0.23);

    transform: translateY(-4px);
}

.difference-icon {
    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: var(--blue);

    background: rgba(30, 144, 255, 0.1);
}

.difference h3 {
    color: var(--white);

    font-size: 15px;

    margin-bottom: 7px;
}

.difference p {
    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.6;
}


/* =====================================================
   PROCESSO
   ===================================================== */

.process {
    background: var(--bg);
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    position: relative;

    gap: 20px;
}

.process-grid::before {
    content: "";

    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(30, 144, 255, 0.6),
            transparent
        );

    top: 33px;

    left: 8%;
    right: 8%;
}

.process-item {
    position: relative;

    z-index: 2;

    padding: 0 15px;

    text-align: center;
}

.process-number {
    width: 66px;
    height: 66px;

    margin: 0 auto 23px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--bg-secondary);

    border: 2px solid var(--blue);

    color: var(--blue);

    font-family: "Montserrat", sans-serif;

    font-size: 17px;

    font-weight: 800;

    box-shadow:
        0 0 0 7px var(--bg),
        0 0 25px rgba(30, 144, 255, 0.14);
}

.process-item h3 {
    color: var(--white);

    font-size: 17px;

    margin-bottom: 10px;
}

.process-item p {
    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.65;
}


/* =====================================================
   RESULTADOS
   ===================================================== */

.results {
    background:
        linear-gradient(
            145deg,
            #0d1b30,
            #09121f
        );

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.results-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 28px;

    align-items: stretch;
}

.result-card {
    position: relative;

    width: 100%;
    height: 520px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 22px;

    background: #07111f;

    border:
        1px solid
        rgba(30, 144, 255, 0.25);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.28);

    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(30, 144, 255, 0.55);

    box-shadow:
        0 28px 65px
        rgba(0, 0, 0, 0.38);
}

.result-card img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    transition: transform 0.4s ease;
}

.result-card:hover img {
    transform: scale(1.015);
}

.result-card:last-child {
    grid-column: 1 / -1;

    width: calc(50% - 14px);

    justify-self: center;
}


/* =====================================================
   AVALIAÇÕES
   ===================================================== */

.reviews-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.review-card {
    padding: 30px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.035);

    border: 1px solid var(--border);

    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-6px);

    border-color: rgba(30, 144, 255, 0.25);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.stars {
    color: #ffc94a;

    letter-spacing: 3px;

    margin-bottom: 20px;
}

.review-card p {
    color: var(--text-muted);

    font-style: italic;

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 0;
}


/* =====================================================
   SOBRE
   ===================================================== */

.about {
    background:
        linear-gradient(
            145deg,
            #07101c,
            #0e1e36
        );
}

.about-container {
    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    gap: 70px;

    align-items: center;
}

.about-image {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;
}

.about-photo {
    position: relative;

    width: 100%;
    height: auto;

    border-radius: 26px;

    overflow: hidden;

    background: #07111f;

    border: 1px solid rgba(255, 255, 255, 0.09);

    box-shadow: var(--shadow);
}

.about-photo img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}

.about-photo::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(5, 12, 22, 0.35),
            transparent 35%
        );
}

.about-photo-detail {
    position: absolute;

    z-index: 2;

    left: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px 20px;

    border-radius: 15px;

    background: rgba(8, 17, 31, 0.88);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.about-photo-detail i {
    color: var(--blue);

    font-size: 25px;
}

.about-photo-detail strong {
    display: block;

    color: var(--white);

    font-size: 14px;
}

.about-photo-detail span {
    display: block;

    color: var(--text-muted);

    font-size: 11px;
}

.about-content p {
    margin-bottom: 17px;
}

.about-content .btn {
    margin-top: 16px;
}


/* =====================================================
   CTA
   ===================================================== */

.cta {
    padding: 75px 0;

    background:
        linear-gradient(
            120deg,
            #0b6dc7 0%,
            #1e90ff 50%,
            #146bb9 100%
        );
}

.cta-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.cta span {
    color: rgba(255, 255, 255, 0.78);

    font-size: 11px;

    letter-spacing: 2px;

    font-weight: 800;
}

.cta h2 {
    color: var(--white);

    font-family: "Montserrat", sans-serif;

    font-size: clamp(30px, 4vw, 42px);

    margin: 8px 0;
}

.cta p {
    color: rgba(255, 255, 255, 0.85);
}

.cta-buttons {
    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

    flex-shrink: 0;
}

.btn-white {
    flex-shrink: 0;

    background: var(--white);

    color: #0c63ac;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.btn-white:hover {
    transform: translateY(-4px);

    box-shadow: 0 19px 40px rgba(0, 0, 0, 0.24);
}

.btn-instagram {
    flex-shrink: 0;

    background: rgba(255, 255, 255, 0.12);

    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.32);

    backdrop-filter: blur(10px);
}

.btn-instagram:hover {
    background: rgba(255, 255, 255, 0.2);

    border-color: rgba(255, 255, 255, 0.5);

    transform: translateY(-4px);
}


/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: #050b13;

    border-top: 1px solid var(--border);
}

.footer-container {
    padding: 55px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.footer-logo {
    display: inline-flex;

    margin-bottom: 7px;
}

.footer p {
    color: var(--text-muted);

    font-size: 13px;
}

.footer-social {
    display: flex;

    gap: 10px;
}

.footer-social a {
    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid var(--border);

    color: var(--white);

    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--blue);

    border-color: var(--blue);

    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;

    border-top: 1px solid var(--border);

    text-align: center;
}


/* =====================================================
   WHATSAPP FLUTUANTE
   ===================================================== */

.whatsapp-floating {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 999;

    min-height: 54px;

    padding: 0 18px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-radius: 50px;

    background: #25d366;

    color: white;

    font-size: 14px;

    font-weight: 700;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);

    transition: var(--transition);
}

.whatsapp-floating i {
    font-size: 23px;
}

.whatsapp-floating:hover {
    background: #2be275;

    transform:
        translateY(-4px)
        scale(1.02);

    box-shadow: 0 19px 42px rgba(0, 0, 0, 0.36);
}


/* =====================================================
   RESPONSIVIDADE - TABLET
   ===================================================== */

@media (max-width: 1000px) {

    .nav {
        position: fixed;

        top: 0;
        right: -100%;

        width: min(340px, 85vw);

        height: 100vh;

        padding:
            100px
            35px
            40px;

        flex-direction: column;

        align-items: flex-start;

        background: #091524;

        border-left: 1px solid var(--border);

        transition: 0.35s ease;

        box-shadow:
            -20px 0 50px
            rgba(0, 0, 0, 0.3);
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        width: 100%;

        padding: 12px 0;

        font-size: 16px;

        border-bottom: 1px solid var(--border);
    }

    .btn-header {
        margin-left: auto;
    }

    .menu-mobile {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-visual {
        max-width: 650px;

        width: 100%;

        margin: auto;
    }

    .hero-image {
        height: auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .differences-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .differences-content {
        max-width: 700px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 45px 20px;
    }

    .process-grid::before {
        display: none;
    }

    .about-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image {
        max-width: 600px;

        width: 100%;

        margin: auto;
    }

    .result-card {
        height: 470px;
    }

}


/* =====================================================
   RESPONSIVIDADE - CELULAR
   ===================================================== */

@media (max-width: 750px) {

    .container {
        width:
            min(
                calc(100% - 30px),
                1180px
            );
    }

    .header {
        padding: 12px 0;
    }

    .logo-img {
        height: 46px;
    }

    .header.scrolled .logo-img {
        height: 42px;
    }

    .btn-header {
        display: none;
    }

    .hero {
        padding: 120px 0 75px;

        min-height: auto;
    }

    .hero h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;

        gap: 18px;
    }

    .hero-image {
        height: auto;

        border-radius: 20px;
    }

    .hero-image img {
        width: 100%;

        height: auto;

        object-fit: contain;
    }

    .hero-image-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2,
    .differences-content h2,
    .about-content h2 {
        font-size: 31px;
    }

    .services-grid,
    .results-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        gap: 22px;
    }

    .result-card {
        height: auto;
    }

    .result-card img {
        width: 100%;

        height: auto;

        object-fit: contain;
    }

    .result-card:last-child {
        grid-column: auto;

        width: 100%;
    }

    .differences-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .about-photo {
        width: 100%;

        height: auto;

        border-radius: 20px;
    }

    .about-photo img {
        width: 100%;

        height: auto;

        object-fit: contain;
    }

    .about-photo-detail {
        left: 15px;
        right: 15px;
        bottom: 15px;

        padding: 13px 15px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta-container {
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;
    }

    .cta-buttons {
        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;

        text-align: center;
    }

    .footer-logo-img {
        height: 58px;
    }

    .whatsapp-floating {
        right: 18px;
        bottom: 18px;

        width: 56px;
        height: 56px;

        min-height: auto;

        padding: 0;

        justify-content: center;
    }

    .whatsapp-floating span {
        display: none;
    }

}


/* =====================================================
   CELULARES MENORES
   ===================================================== */

@media (max-width: 430px) {

    .hero h1 {
        font-size: 36px;
    }

    .hero-tag,
    .section-tag {
        letter-spacing: 1.4px;
    }

    .service-card {
        padding: 28px 24px;
    }

    .difference {
        padding: 22px;
    }

    .review-card {
        padding: 25px;
    }

    .hero-image {
        height: auto;
    }

    .hero-image-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;

        padding: 12px 14px;
    }

    .hero-image-badge i {
        width: 42px;
        height: 42px;

        flex-basis: 42px;
    }

    .about-photo-detail {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .about-photo-detail i {
        font-size: 21px;
    }

    .about-photo-detail strong {
        font-size: 13px;
    }

    .about-photo-detail span {
        font-size: 10px;
    }

}