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

:root {
    --primary-color: #FF6B00;
    --primary-dark: #E55D00;
    --secondary-color: #1A1A1A;
    --accent-color: #FFA500;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-light: #F8F8F8;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 170px;
}

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

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

.btn-secondary:hover {
    background: #333;
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 5px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}

.logo img {
    height: 120px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions .btn {
    font-size: 12px;
    padding: 10px 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: calc(100vh - 170px);
    min-height: 650px;
    overflow: hidden;
    margin-top: -170px;
    padding-top: 170px;
    margin-bottom: 0;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(255, 107, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 150px 20px 0;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 50px;
    font-weight: 400;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(5px);
    font-size: 14px;
}

.hero-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-arrow-left {
    left: 30px;
}

.hero-arrow-right {
    right: 30px;
}



/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease 0.3s forwards;
    opacity: 0;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s forwards;
    opacity: 0;
}

/* ===== SECTION STYLES ===== */
section {
    padding: 100px 0;
}

.hero {
    padding-bottom: 0 !important;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SOBRE SECTION ===== */
.sobre {
    background: var(--bg-light);
    margin-top: 0;
    padding-top: 100px;
}

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

.sobre-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.sobre-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.sobre-image video {
    width: auto;
    height: 500px;
    max-width: 100%;
    object-fit: cover;
}

.sobre-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.badge-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-top: 3px;
}

.sobre-logo {
    height: 140px;
    width: auto;
    margin-bottom: 25px;
}

.sobre-text h3 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.sobre-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 16px;
}

.sobre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

/* ===== CATEGORIAS SECTION ===== */
.categorias-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.categoria-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.categoria-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.categoria-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.categoria-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.categoria-card:hover .categoria-image img {
    transform: scale(1.1);
}

.categoria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(26, 26, 26, 0.8));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.categoria-card:hover .categoria-overlay {
    opacity: 1;
}

.categoria-content {
    padding: 25px;
    text-align: center;
}

.categoria-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.categoria-content p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== PRODUTOS SECTION ===== */
.produtos {
    background: var(--bg-light);
}

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

.produto-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.produto-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.produto-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.produto-card:has(video) .produto-image {
    height: auto;
    aspect-ratio: 9/16;
    display: flex;
    justify-content: center;
    align-items: center;
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.produto-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.produto-card:hover .produto-image img {
    transform: scale(1.1);
}

.produto-card:hover .produto-image video {
    transform: scale(1.05);
}

.produto-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.produto-content {
    padding: 25px;
}

.produto-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.produto-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

/* ===== DEPOIMENTOS SECTION ===== */
.depoimentos {
    background: var(--secondary-color);
    color: var(--white);
}

.depoimentos .section-tag {
    color: var(--primary-color);
}

.depoimentos .section-title {
    color: var(--white);
}

.depoimentos .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.depoimentos-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 60px;
}

.depoimentos-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    gap: 30px;
}

.depoimento-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: calc(100% - 30px);
    max-width: calc(100% - 30px);
    flex-shrink: 0;
    box-sizing: border-box;
}

.depoimentos-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.depoimentos-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.depoimentos-arrow-left {
    left: 0;
}

.depoimentos-arrow-right {
    right: 0;
}

.depoimentos-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.depoimentos-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.depoimentos-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.depoimento-stars {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.depoimento-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.depoimento-author strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.depoimento-author span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== LOJAS SECTION ===== */
.lojas {
    background: var(--bg-light);
}

.lojas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.loja-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.loja-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.loja-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.loja-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.loja-card:hover .loja-image img {
    transform: scale(1.1);
}

.loja-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin: 25px 0 15px;
    padding: 0 30px;
    min-height: 60px;
    line-height: 1.4;
}

.loja-badge {
    display: inline-block;
    background: var(--bg-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
    min-height: 29px;
}

.loja-endereco {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    padding: 0 30px;
    font-size: 14px;
    min-height: 80px;
    flex-grow: 1;
}

.loja-card .btn {
    margin-bottom: 30px;
    margin-top: auto;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-logo {
    height: 160px;
    width: auto;
    margin: 0 auto 30px;
    filter: brightness(0) invert(1);
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 36px;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-features {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }

    .nav {
        position: fixed;
        top: 170px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 170px);
        background: var(--secondary-color);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 40px;
        gap: 20px;
    }

    .nav-link {
        color: var(--white);
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        margin-top: 0;
        padding-top: 0;
        height: 70vh;
        min-height: 500px;
        max-height: 650px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .hero-slider {
        height: 100%;
        margin-top: 0;
        padding-top: 0;
    }

    .hero-slide {
        height: 100%;
    }

    .hero-content {
        padding-top: 200px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .hero-arrow-left {
        left: 10px;
    }

    .hero-arrow-right {
        right: 10px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    section {
        padding: 60px 0;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-content: center;
    }

    .sobre-text {
        text-align: center;
    }

    .sobre-text h3 {
        text-align: center;
    }

    .sobre-text p {
        text-align: center;
    }

    .sobre-features {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .feature-item {
        justify-content: center;
        text-align: center;
    }

    .sobre-text .btn {
        margin: 0 auto;
        display: inline-flex;
    }

    .sobre-image {
        order: -1;
        background: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto;
        margin: 0 auto;
    }

    .sobre-image img {
        height: 350px;
    }

    .sobre-image video {
        height: 500px;
        width: auto;
    }

    .badge-number {
        font-size: 20px;
    }

    .badge-text {
        font-size: 8px;
    }

    .sobre-badge {
        padding: 6px 10px;
        bottom: 12px;
        right: 12px;
    }

    .categorias-grid {
        grid-template-columns: 1fr;
    }

    .produtos-grid {
        grid-template-columns: 1fr;
    }

    .lojas-grid {
        grid-template-columns: 1fr;
    }

    .depoimentos-slider {
        padding: 0 50px;
    }

    .depoimento-card {
        padding: 30px 20px;
    }

    .depoimentos-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .depoimentos-arrow-left {
        left: 5px;
    }

    .depoimentos-arrow-right {
        right: 5px;
    }

    .cta-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 18px;
    }

    .cta-content .btn {
        width: auto;
        display: inline-flex;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .scroll-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 80px;
    }

    .header-content {
        padding: 15px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-lg {
        padding: 14px 30px;
        font-size: 14px;
    }

    .sobre-logo {
        height: 100px;
    }

    .cta-logo {
        height: 120px;
    }
}

