* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root {
    --primary: #8c7ae6;       
    --primary-dark: #6c5ce7;  
    --secondary: #1f2a44;     
    --text-dark: #333;
    --text-light: #f9f9f9;
    --bg-light: #f4f6f8;
}
html, body { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
    width: 100%;
    max-width: 100vw;
}
body { 
    background-color: var(--bg-light); 
    color: var(--text-dark); 
}
.script-font {
    font-family: 'Sacramento', cursive;
    font-size: 2.8rem;
    display: block;
    margin-bottom: -15px;
}
.text-dark { color: var(--primary); }
.text-light { color: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: 0.4s ease;
    background: transparent;
}
header.sticky {
    background: rgba(31, 42, 68, 0.95);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    width: 140px; 
    transition: 0.3s ease;
}
.logo a:hover {
    transform: scale(1.05);
}
.logo a img {
    width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain; 
}
nav { display: flex; align-items: center; gap: 30px; }
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.nav-links a:hover { color: var(--primary); }
.btn-header {
    background: var(--primary);
    padding: 10px 25px;
    border-radius: 50px;
    color: white !important;
    font-weight: 600 !important;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(140, 122, 230, 0.5);
    transition: all 0.3s;
    border: 2px solid transparent;
    text-shadow: none !important;
}
.btn-header:hover {
    background: transparent;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(140, 122, 230, 0.8);
}
.menu-btn { display: none; color: white; font-size: 1.5rem; cursor: pointer; }
.hero-split {
    background: radial-gradient(circle at 10% 20%, #1f2a44 0%, #0f141e 90%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    z-index: 2;
    width: 100%;
}
.hero-text { flex: 1; max-width: 600px; }
.badge-destaque {
    background: rgba(140, 122, 230, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(140, 122, 230, 0.4);
    display: inline-block;
    margin-bottom: 20px;
}
.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}
.text-gradient {
    background: linear-gradient(90deg, #8c7ae6, #00d2d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-text p {
    color: #b2b2b2;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 90%;
}
.hero-buttons { display: flex; gap: 20px; }
.btn-primary-glow {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(140, 122, 230, 0.5);
    transition: 0.3s;
}
.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(140, 122, 230, 0.8);
}
.btn-secondary-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.btn-secondary-outline:hover {
    background: white;
    color: var(--secondary);
    border-color: white;
}
.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-image-wrapper img {
    width: 75%;
    max-width: 420px;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    border: 2px solid rgba(255,255,255,0.1);
}
.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.4;
    z-index: 1;
}
.floating-card {
    position: absolute;
    bottom: 40px;
    left: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 3;
    animation: float 5s ease-in-out infinite reverse;
}
.floating-card i { font-size: 24px; color: #00d2d3; }
.floating-card span { display: block; font-size: 0.8rem; color: #ddd; }
.floating-card strong { display: block; font-size: 1.1rem; color: white; }
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}
.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}
.custom-shape-divider-bottom .shape-fill { fill: #f4f6f8; }
.quem-sou {
    padding: 100px 0;
    background-color: var(--bg-light);
}
.quem-sou-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.quem-sou-img {
    flex: 1;
    position: relative;
}
.quem-sou-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: -20px 20px 0 var(--primary);
}
.quem-sou-text {
    flex: 1.2;
}
.quem-sou-text .script-font {
    color: var(--primary);
    font-size: 3.5rem;
    margin-bottom: 15px;
}
.quem-sou-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}
.quem-sou-text p strong {
    color: var(--secondary);
    font-weight: 700;
}
.sobre {
    background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    padding: 100px 0;
    color: white;
    position: relative;
}
.sobre-container { display: flex; align-items: center; gap: 60px; }
.sobre-img { flex: 1; }
.sobre-img img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0 rgba(0,0,0,0.2); }
.sobre-text { flex: 1; }
.sobre-text h2 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.sobre-text p { font-size: 1rem; line-height: 1.7; margin-bottom: 20px; opacity: 0.95; }
.quote-box { background: rgba(255,255,255,0.15); padding: 20px; border-left: 4px solid #fff; border-radius: 0 10px 10px 0; font-style: italic; }
.lista-metodo {
    list-style: none;
    margin-bottom: 30px;
}
.lista-metodo li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    transition: 0.3s;
}
.lista-metodo li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}
.lista-metodo i {
    color: #00d2d3;
    font-size: 1.2rem;
    margin-top: 3px;
}
.lista-metodo strong {
    color: #fff;
    font-weight: 600;
}
.lista-metodo span {
    color: rgba(255, 255, 255, 0.9);
}
.servicos { padding: 100px 0; background-color: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: 2.5rem; color: var(--secondary); font-weight: 700; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(140, 122, 230, 0.05);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(140, 122, 230, 0.15);
    border-color: rgba(140, 122, 230, 0.3);
}
.icon-box {
    font-size: 35px;
    color: var(--primary);
    margin-bottom: 25px;
    width: 80px;
    height: 80px;
    background: rgba(140, 122, 230, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}
.card:hover .icon-box {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(140, 122, 230, 0.3);
}
.card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.3rem;
    transition: 0.3s;
}
.card:hover h3 {
    color: var(--primary);
}
.card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}
.investimento-section {
    padding: 100px 0;
    background-color: white;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: stretch;
}
.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.pricing-card.main-plan {
    border: 2px solid var(--primary);
    position: relative;
    background: linear-gradient(to bottom, #fff, #f9f9ff);
    transform: scale(1.05);
    z-index: 2;
}
.pricing-card.main-plan:hover {
    transform: scale(1.05) translateY(-5px);
}
.popular-badge {
    position: absolute;
    width: max-content;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}
.card-header-main { text-align: center; border-bottom: 1px solid rgba(140, 122, 230, 0.2); padding-bottom: 20px; margin-bottom: 20px; }
.card-header-main h3 { color: var(--secondary); font-size: 1.4rem; margin-bottom: 15px; min-height: 42px; }
.price-container { display: flex; flex-direction: column; align-items: center; }
.price { color: var(--primary); font-size: 2.8rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 5px; line-height: 1; }
.price small { font-size: 1rem; font-weight: 500; color: #888; }
.price-subtitle { font-size: 0.85rem; color: #666; margin-top: 5px; font-weight: 500; }
.contract-info { font-size: 0.85rem; color: #666; background: rgba(140, 122, 230, 0.1); display: inline-block; padding: 4px 12px; border-radius: 20px; margin-top: 15px; }
.check-list { list-style: none; margin-bottom: 25px; flex-grow: 1; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; color: #555; }
.check-list li i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }
.btn-price-action { display: block; text-align: center; background: var(--primary); color: white; padding: 15px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; box-shadow: 0 5px 15px rgba(140, 122, 230, 0.4); margin-top: auto; }
.btn-price-action:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-simple-outline { display: block; text-align: center; color: var(--secondary); border: 1px solid #ddd; padding: 12px 20px; border-radius: 50px; font-size: 0.95rem; text-decoration: none; font-weight: 600; transition: 0.3s; margin-top: auto; }
.btn-simple-outline:hover { background-color: var(--secondary); color: white; border-color: var(--secondary); }
.portfolio { padding: 100px 0; background-color: var(--bg-light); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 50px; }
.portfolio-item { position: relative; border-radius: 15px; overflow: hidden; height: 300px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); cursor: pointer; text-decoration: none; display: block; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(31, 42, 68, 0.9), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; opacity: 0; transition: 0.3s ease; }
.portfolio-overlay h3 { color: white; font-size: 1.4rem; transform: translateY(20px); transition: 0.3s; }
.portfolio-overlay p { color: var(--primary); font-size: 0.9rem; transform: translateY(20px); transition: 0.3s delay 0.1s; font-weight: 600; text-transform: uppercase; }
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover h3, .portfolio-item:hover p { transform: translateY(0); }
.portfolio-cta { text-align: center; }
.btn-outline { display: inline-block; padding: 12px 30px; border: 2px solid var(--secondary); color: var(--secondary); text-decoration: none; border-radius: 50px; font-weight: 600; transition: 0.3s; }
.btn-outline:hover { background-color: var(--secondary); color: white; transform: translateY(-3px); }
.objetivos { background-color: var(--secondary); padding: 100px 0; color: white; text-align: center; }
.objetivos-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 50px; }
.obj-item { background: rgba(255,255,255,0.05); padding: 40px; border-radius: 20px; width: 300px; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
.obj-item:hover { background: rgba(255,255,255,0.1); border-color: var(--primary); }
.obj-number { font-size: 4rem; font-weight: 700; color: rgba(255,255,255,0.05); margin-bottom: -20px; }
.obj-item h3 { font-size: 1.5rem; margin-bottom: 10px; color: var(--primary); }
.contato-section { padding: 80px 0; background-color: white; }
.contato-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.contato-info h2 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 20px; line-height: 1.2; }
.contato-info p { color: #666; margin-bottom: 30px; font-size: 1.1rem; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.method-item { display: flex; align-items: center; gap: 15px; text-decoration: none; color: var(--secondary); font-size: 1.1rem; font-weight: 500; transition: 0.3s; }
.method-item i { font-size: 1.5rem; color: var(--primary); }
.method-item:hover { color: var(--primary); transform: translateX(5px); }
.form-wrapper { background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.08); border: 1px solid #f0f0f0; }
.input-group { margin-bottom: 20px; }
.input-group input, .input-group textarea { width: 100%; padding: 15px; border: 1px solid #e0e0e0; border-radius: 10px; outline: none; transition: 0.3s; background: #f9f9f9; font-size: 0.95rem; }
.input-group input:focus, .input-group textarea:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(140, 122, 230, 0.1); }
.btn-submit { width: 100%; background: var(--primary); color: white; padding: 15px; border: none; border-radius: 10px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); }
footer { background-color: #0f141e; color: white; padding: 40px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.1); }
.socials-footer { margin-top: 15px; display: flex; justify-content: center; gap: 20px; }
.socials-footer a { color: rgba(255,255,255,0.6); font-size: 1.5rem; transition: 0.3s; }
.socials-footer a:hover { color: var(--primary); transform: scale(1.1); }
.copy { font-size: 0.9rem; opacity: 0.5; margin-top: 15px; }
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { background-color: #128C7E; transform: scale(1.1); }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.carrossel-container {
    position: relative;
    max-width: 900px; 
    margin: 0 auto;
    overflow: hidden; 
    padding: 40px 10px; 
}
.carrossel-track {
    display: flex; 
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
}
.carrossel-item {
    min-width: 100%; 
    box-sizing: border-box;
    display: flex;           
    flex-direction: column;  
    align-items: center;     
    padding: 0 50px;         
}
.carrossel-item video {
    width: 100%;
    max-width: 320px;
    height: auto;
    max-height: 550px;
    border-radius: 24px; 
    background-color: #0f141e; 
    box-shadow: 0 15px 35px rgba(140, 122, 230, 0.25), 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid rgba(140, 122, 230, 0.3); 
    transition: 0.4s ease;
    outline: none;
}
.carrossel-item video:hover {
    transform: translateY(-5px); 
    box-shadow: 0 20px 40px rgba(140, 122, 230, 0.4), 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--primary);
}
.empresa-nome {
    margin-top: 30px;
    color: var(--primary); 
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    background: white;
    padding: 10px 30px;
    border-radius: 50px; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(140, 122, 230, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.carrossel-btn {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%);
    background-color: white; 
    color: var(--primary);
    border: 1px solid rgba(140, 122, 230, 0.2);
    font-size: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.carrossel-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1); 
    box-shadow: 0 10px 20px rgba(140, 122, 230, 0.4);
}
.prev { left: 10px; }
.next { right: 10px; }

@media (max-width: 1024px) {
    .header-container { padding: 0 20px; }
    .nav-links { gap: 15px; }
    .nav-links a { font-size: 0.85rem; }
    .btn-header { padding: 8px 15px; font-size: 0.85rem; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .contato-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .contact-methods { align-items: center; }
    .hero-text h1 { font-size: 2.8rem; }
    .quem-sou-text .script-font, .sobre-text h2 { font-size: 2.5rem; }
    .quem-sou-container, .sobre-container { gap: 30px; }
    .pricing-card.main-plan { transform: scale(1); }
    .pricing-card.main-plan:hover { transform: translateY(-5px); }
}

@media (max-width: 768px) {
    .btn-header { display: none; }
    .menu-btn { display: block; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(31, 42, 68, 0.98); padding: 20px 0; box-shadow: 0 10px 20px rgba(0,0,0,0.2); text-align: center; gap: 20px; }
    .nav-links.active { display: flex; }
    .hero-split { padding-top: 130px; padding-bottom: 60px; min-height: auto; }
    .hero-content { flex-direction: column; text-align: center; gap: 40px; }
    .hero-text { max-width: 100%; margin-top: 0; }
    .hero-text h1 { font-size: 2.3rem; margin-top: 15px; }
    .hero-buttons { justify-content: center; flex-direction: column; gap: 15px; align-items: center; margin-top: 20px; }
    .btn-primary-glow, .btn-secondary-outline { width: 100%; max-width: 300px; text-align: center; }
    .hero-image-wrapper { margin-top: 20px; }
    .hero-image-wrapper img { width: 90%; max-width: 350px; margin-bottom: 30px; }
    .floating-card { bottom: 0px; left: 50%; transform: translateX(-50%); width: max-content; }
    .quem-sou-container { flex-direction: column-reverse; text-align: center; }
    .sobre-container { flex-direction: column; text-align: center; }
    .quem-sou-img img { box-shadow: 0 15px 0 var(--primary); margin-bottom: 20px; }
    .sobre-img img { box-shadow: 15px 15px 0 rgba(0,0,0,0.2); margin-bottom: 20px; }
    .lista-metodo li { text-align: left; }
    .cards-grid, .pricing-grid { grid-template-columns: 1fr; gap: 30px; }
    .objetivos-grid { flex-direction: column; align-items: center; gap: 20px; }
    .obj-item { width: 100%; max-width: 350px; }
    .contato-info h2 { font-size: 2rem; }
    .form-wrapper { padding: 25px 20px; }
    .carrossel-container { padding: 30px 0; }
    .carrossel-item { padding: 0 55px; }
    .carrossel-item video { max-width: 100%; border-radius: 20px; }
    .carrossel-btn { width: 45px; height: 45px; font-size: 18px; }
    .prev { left: 5px; }
    .next { right: 5px; }
    .empresa-nome { margin-top: 20px; font-size: 0.85rem; padding: 8px 25px; }
}
