/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Megrim:wght@400&display=swap');

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

:root {
    --primary-green: #00ff00;
    --dark-green: #00cc00;
    --light-green: #33ff33;
    --black: #1a1a1a;
    --dark-gray: #2d2d2d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-gray: #666666;
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    --gradient-dark: linear-gradient(135deg, var(--black), var(--dark-gray));
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Fontes personalizadas - Títulos principais */
h1, h2, h3, h4, h5, h6, 
.hero-title, 
.section-title, 
.card-title, 
.filial-card h3,
.nav-link,
.btn,
.hero-logo,
.nav-logo,
.sobre-text h3,
.stat-item h4,
.servico-card h3,
.contato-info h3,
.contato-item h4,
.footer-section h3,
.footer-section h4,
.filial-card h3,
.filial-card h4,
.btn-cotacao,
.btn-cotacao-mobile,
.banner-title,
.porque-sallus-titulo,
.botao-chame-sallus h3,
.slogan-texto,
.app-title,
.depoimentos-title {
    font-family: 'Candara', 'Arial', sans-serif;
    font-weight: bold;
}

p, span, li, a, 
.hero-subtitle,
.card-description,
.filial-card p,
.contato-item,
.footer-content,
.social-links a,
.filial-card span,
.filial-card .filial-info,
.filial-card .filial-horario,
.filial-card .filial-contato,
.contato-item p,
.contato-item span,
.footer-section p,
.footer-section li,
.footer-section a,
.nav-menu li a,
.mobile-quote-button a,
.beneficio-content h4,
.beneficio-content p,
.expand-text,
.app-description,
.app-cta,
.ver-mais-btn,
.ver-mais-texto,
.footer-bottom,
.whatsapp-float,
.stat-label,
.count-text,
.sobre-intro p,
.feature-content h4,
.feature-content p {
    font-family: 'Arial', sans-serif;
}

html {
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--black);
    width: 100%;
    max-width: 100vw;
    background: #ffffff;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #201E1E;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    flex: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-logo {
    flex-shrink: 0;
}

.header-spacer {
    width: 100px;
    flex-shrink: 0;
}

.nav-logo-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo-link:hover {
    transform: scale(1.05);
}

.nav-logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cotacao {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
    border: 2px solid transparent;
    white-space: nowrap;
    font-family: 'Arial', sans-serif;
}

.btn-cotacao:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.4);
    background: var(--dark-green);
    color: var(--white);
    text-decoration: none;
}

.btn-cotacao:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 255, 0, 0.3);
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

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

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

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

/* Novo hamburger menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Menu mobile simplificado e centralizado */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(32, 30, 30, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    padding: 1rem 0;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-link:nth-child(5) { transition-delay: 0.5s; }
.mobile-nav-link:nth-child(6) { transition-delay: 0.6s; }

.mobile-nav-link:hover {
    color: var(--primary-green);
    transform: scale(1.05);
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

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

.mobile-btn-cotacao {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.3);
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active .mobile-btn-cotacao {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.mobile-btn-cotacao:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    z-index: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.8;
    transition: none;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 0, 0.2);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    position: relative;
    min-height: 100vh;
}

.hero-content {
    color: var(--white);
    text-align: center;
    max-width: 800px;
}

.hero-title-container {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-logo-img {
    max-width: 700px;
    width: 100%;
    height: auto;
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    animation: titleSlideIn 1s ease forwards;
    animation-delay: 0.3s;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1rem;
    position: relative;
}

.title-brand {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2em;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    animation: titleSlideIn 1s ease forwards;
    animation-delay: 0.3s;
}

.title-subtitle {
    display: block;
    color: var(--white);
    font-size: 0.6em;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: titleSlideIn 0.8s ease forwards;
    animation-delay: 0.8s;
}

@keyframes titleSlideIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    white-space: nowrap;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.btn {
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow);
    text-transform: uppercase;
    font-weight: 700;
}

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

.btn-secondary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow);
    text-transform: uppercase;
    font-weight: 700;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Seção Unificada Sobre + Benefícios + Assistência + Por que SALLUS */
.sobre-beneficios-background {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: visible;
    padding: 1rem 0 0 0;
}

.sobre-beneficios-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 255, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 255, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}



.sobre {
    padding: 2rem 0;
    background: transparent;
    position: relative;
    margin: 0;
    width: 100%;
    color: #333333;
    z-index: 2;
    margin-bottom: 2rem;
}


.section-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.sobre-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto 1.5rem auto;
}

.sobre-header .section-subtitle {
    text-align: center;
    margin: 0 auto 1rem auto;
    font-size: 1.2rem;
    color: #666666;
    font-weight: 500;
    line-height: 1.6;
    white-space: normal;
    display: block;
    max-width: 700px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    font-size: 1.5rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto 1rem auto;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    border: none;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.sobre-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sobre-intro h3 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(51, 255, 0, 0.2);
    text-align: center;
}

.sobre-intro p {
    font-size: 1.4rem;
    color: #666666;
    line-height: 1.6;
    font-weight: 500;
    text-align: left;
    margin: 0;
}

/* Estatísticas da SALLUS */
.sobre-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.2);
    width: 100%;
    max-width: 1400px;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05) 0%, rgba(0, 204, 0, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.2);
    border-color: var(--primary-green);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 255, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.sobre-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
    width: 100%;
    max-width: 1400px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.15);
    border-color: var(--primary-green);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
}

.feature-content h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-content p {
    font-size: 0.95rem;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}


/* Benefícios Section (dentro da seção unificada) */
.beneficios {
    background: transparent;
    padding: 4rem 0;
    position: relative;
    z-index: 2;
    overflow: visible;
    margin: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.beneficios-header {
    text-align: center;
    margin-bottom: 3rem;
}

.beneficios-count {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.count-number {
    font-size: 2.5rem;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.count-text {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.beneficios-container {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.2);
    overflow: hidden;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    padding: 2rem;
    max-height: 400px;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.beneficios-grid.expanded {
    max-height: 2000px !important;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.beneficio-hidden {
    display: none;
}

.beneficios-grid.expanded .beneficio-hidden {
    display: flex;
}

.beneficios-expand-container {
    display: flex;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05) 0%, rgba(0, 204, 0, 0.05) 100%);
    border-top: 1px solid rgba(0, 255, 0, 0.2);
}

.beneficios-expand-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.beneficios-expand-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.beneficios-expand-btn:hover::before {
    left: 100%;
}

.beneficios-expand-btn:hover {
    background: linear-gradient(135deg, #00cc00 0%, #00aa00 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

.expand-icon {
    transition: transform 0.3s ease;
}

.beneficios-expand-btn.expanded .expand-icon {
    transform: rotate(180deg);
}

.beneficio-card {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.05) 0%, rgba(0, 204, 0, 0.05) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 255, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 120px;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 0, 0.2);
    border-color: var(--primary-green);
}


.beneficio-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
}

.beneficio-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.beneficio-content h4 {
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.beneficio-content p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
    line-height: 1.4;
}

.texto-branco {
    color: var(--black);
}

.texto-verde {
    color: var(--primary-green);
}


/* Banner de Assistência 24h (dentro da seção unificada) */
.assistencia-banner {
    background: transparent;
    position: relative;
    overflow: visible;
    margin: 3rem 0 0 0;
    padding: 0;
    width: 100%;
}


.assistencia-banner .banner-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    transform: translate(-50%, -50%);
    z-index: 1;
}



.banner-container {
    width: 100%;
    margin: 0;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: transparent;
    border-radius: 0;
    padding: 3rem 2rem;
    position: relative;
    overflow: visible;
    margin: 0;
    width: 100%;
    z-index: 3;
    gap: 4rem;
}

.banner-text {
    flex: 1;
    color: #ffffff;
    z-index: 3;
    text-align: center;
    max-width: 600px;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    text-transform: uppercase;
}

.banner-icon {
    flex: 0 0 auto;
    z-index: 3;
    position: relative;
}

.banner-logo {
    width: 180px;
    height: 180px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 4px solid #ffffff;
    overflow: hidden;
    margin-left: 0;
}

.banner-logo img {
    width: 125px;
    height: 125px;
    object-fit: contain;
}

/* Responsive para o banner */
@media (max-width: 768px) {
    .banner-container {
        padding: 0 1rem;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        min-height: 250px;
        gap: 2rem;
    }
    
    .banner-text {
        text-align: center;
    }
    
    .banner-title {
        font-size: 2.5rem;
        color: var(--black);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .assistencia-banner .banner-content::before {
        height: 60px;
    }
    
    .banner-logo {
        width: 150px;
        height: 150px;
        margin-left: 0;
    }
    
    .banner-logo img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .banner-container {
        padding: 0 0.5rem;
    }
    
    .banner-content {
        padding: 1.5rem 1rem;
        min-height: 220px;
        gap: 1.5rem;
    }
    
    .banner-title {
        font-size: 2rem;
        color: var(--black);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .assistencia-banner .banner-content::before {
        height: 50px;
    }
    
    .banner-logo {
        width: 120px;
        height: 120px;
        margin-left: 0;
    }
    
    .banner-logo img {
        width: 80px;
        height: 80px;
    }
}

/* Por que ser SALLUS Section (dentro da seção unificada) */
.porque-sallus {
    background: transparent;
    padding: 3rem 0 0 0;
    position: relative;
    z-index: 2;
    overflow: visible;
    max-width: 1400px;
    margin: 0 auto;
}




.porque-sallus-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 3;
    padding: 0 2rem;
}

.porque-sallus-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sallus-verde-titulo {
    color: var(--primary-green);
    text-shadow: 0 1px 2px rgba(0, 255, 0, 0.2);
}

.porque-sallus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 400px;
    padding: 0 2rem 3rem 2rem;
    position: relative;
    z-index: 3;
}

.porque-box {
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 0, 0.2);
    background: #ffffff;
    min-height: 140px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.porque-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.15);
    border-color: var(--primary-green);
}

.porque-box-1 {
    grid-column: 1 / 3;
    grid-row: 1;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #201E1E;
    min-height: 120px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--primary-green);
}


.porque-box-1 .porque-texto-verde {
    color: #201E1E;
    font-size: 1.4rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-weight: 700;
}


.porque-box-2 {
    grid-column: 3;
    grid-row: 1;
    min-height: 120px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid var(--primary-green);
}

.porque-box-3 {
    grid-column: 4;
    grid-row: 1;
    min-height: 120px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid var(--primary-green);
}

.porque-box-4 {
    grid-column: 1;
    grid-row: 2;
    min-height: 100px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid var(--primary-green);
}

.porque-box-5 {
    grid-column: 2;
    grid-row: 2;
    min-height: 100px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid var(--primary-green);
}

.porque-box-6 {
    grid-column: 3 / 5;
    grid-row: 2;
    background: var(--primary-green);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.2);
    cursor: pointer;
    border: 1px solid var(--primary-green);
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.porque-box-6:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.3);
    border-color: var(--primary-green);
}

.porque-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.porque-imagem {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.porque-imagem:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

.porque-texto {
    font-size: 1.1rem;
    font-weight: 600;
    color: #201E1E;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.porque-texto-verde {
    font-size: 1.3rem;
    font-weight: 700;
    color: #201E1E;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.porque-texto-branco {
    font-size: 1.1rem;
    font-weight: 600;
    color: #201E1E;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.porque-texto-cinza {
    font-size: 1.1rem;
    font-weight: 600;
    color: #201E1E;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.botao-chame-sallus {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-decoration: none;
    color: #ffffff;
}

.botao-chame-sallus h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


.botao-chame-sallus i {
    font-size: 5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.botao-chame-sallus i:hover {
    transform: scale(1.05);
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

/* Seção do Slogan */
.slogan-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}


.slogan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 255, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.slogan-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.slogan-texto {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 2rem 0;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slogan-texto .sallus-destaque {
    color: var(--primary-green);
    text-shadow: 0 2px 4px rgba(0, 255, 0, 0.3);
}

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

.slogan-logo-img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.slogan-logo-img:hover {
    transform: scale(1.05);
}

/* Depoimentos Section */
    .depoimentos-section {
        padding: 3rem 0;
        background: #ffffff;
        position: relative;
        overflow: hidden;
    }



.depoimentos-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.depoimentos-title {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    padding: 0 2rem;
    position: relative;
}

.depoimento-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    text-align: left;
    position: relative;
    border: 1px solid rgba(0, 255, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.depoimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 15px 15px 0 0;
}

.depoimento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 255, 0, 0.15);
}

.depoimento-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.empresa-info {
    flex-grow: 1;
}

.empresa-nome {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 700;
    margin: 0 0 0.3rem 0;
    line-height: 1.2;
}

.cliente-nome {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.depoimento-texto {
    font-size: 1rem;
    color: var(--black);
    line-height: 1.6;
    font-style: italic;
    position: relative;
    font-weight: 400;
    text-align: left;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.cliente-foto {
    flex-shrink: 0;
}

.foto-cliente {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.foto-cliente:hover {
    transform: scale(1.05);
}

/* App Section */
.app-section {
    padding: 3rem 0;
    background: #ffffff;
    color: var(--black);
    position: relative;
    overflow: visible;
}




.app-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

.app-text {
    flex: 1;
    min-width: 0;
    overflow: visible;
}

.app-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.app-description {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 2rem;
    line-height: 1.6;
    white-space: normal;
}

.app-cta {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 2rem;
    font-weight: 600;
    white-space: normal;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.app-icon {
    width: 200px;
    height: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.app-icon:hover {
    transform: scale(1.05);
}

.app-image-container {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 2rem;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.app-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.3s ease;
}



/* Seção Unificada Localização + Footer */
.localizacao-footer-background {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
    overflow: visible;
}

.localizacao-footer-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 255, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}



.localizacao {
    padding: 6rem 0 2rem 0;
    background: transparent;
    color: #ffffff;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}


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

.localizacao .section-subtitle {
    color: #ffffff;
}

.localizacao-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.map-container {
    background: transparent;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
    display: flex;
    align-items: flex-start;
    height: fit-content;
}

.google-map {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.google-map:hover {
    transform: scale(1.02);
}

.contato-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    min-height: 500px;
}

.contato-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-green);
    text-transform: uppercase;
    text-align: center;
}

.contato-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 255, 0, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-height: 80px;
}

.contato-item:hover {
    transform: translateX(10px);
}

.contato-item i {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-right: 0.8rem;
    width: 24px;
}

.contato-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.contato-item p {
    color: #ffffff !important;
    margin: 0;
    text-decoration: none !important;
    cursor: default !important;
    font-size: 0.85rem;
    font-family: 'Arial', sans-serif;
}

.phone-link {
    color: #ffffff !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
    opacity: 0.8;
}


/* Sublinhados Verdes para Títulos */
.title-underline {
    position: relative;
    display: inline-block;
}

.title-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-green) 20%, var(--primary-green) 80%, transparent 100%);
    border-radius: 2px;
}

.title-underline-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.title-underline-left::after {
    left: 0;
    transform: none;
}

/* Estilo para destacar SALLUS em verde e negrito */
.sallus-destaque {
    color: var(--primary-green);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* SALLUS em branco no botão da seção hero */
.hero .sallus-destaque {
    color: var(--white);
    font-weight: normal;
    text-shadow: none;
}

/* Botão VER MAIS para Benefícios */
.ver-mais-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding: 0 2rem;
}

.ver-mais-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, #00cc00 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.ver-mais-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.ver-mais-btn:hover::before {
    left: 100%;
}

.ver-mais-btn:hover {
    background: linear-gradient(135deg, #00cc00 0%, #00aa00 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

.ver-mais-icon {
    transition: transform 0.3s ease;
}

.ver-mais-btn.expanded .ver-mais-icon {
    transform: rotate(180deg);
}

.ver-mais-texto {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ocultar benefícios no mobile */
@media (max-width: 768px) {
    .beneficio-box-hidden {
        display: none;
    }
    
    .beneficios-expandido .beneficio-box-hidden {
        display: block;
    }
}

/* Mostrar botão VER MAIS apenas no mobile */
.ver-mais-container {
    display: none;
}

/* Efeito visual para links clicados */
.nav-link, .btn {
    transition: all 0.3s ease;
}

.nav-link:hover, .btn:hover {
    transform: translateY(-2px);
}

.nav-link:active, .btn:active {
    transform: scale(0.95);
    opacity: 0.8;
}

/* Efeito de destaque na seção de destino */
.section-highlight {
    animation: sectionHighlight 2s ease-in-out;
}

@keyframes sectionHighlight {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 255, 0, 0.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}

@media (max-width: 768px) {
    .ver-mais-container {
        display: flex;
    }
    
    .ver-mais-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ver-mais-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}



.footer {
    background: transparent;
    color: #ffffff;
    padding: 2rem 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
    justify-items: center;
}

.footer-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-start;
}

.footer-logo-img {
    max-width: 280px;
    height: auto;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-section p {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section .phone-link {
    color: #ffffff !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease;
}

.footer-section .phone-link:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
    opacity: 0.8;
}

/* Plantão 24 horas */
.contato-item.plantao-24h {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.4);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    position: relative;
}

.contato-item.plantao-24h i {
    color: #ff6b35;
    font-size: 1.2rem;
}

.contato-item.plantao-24h h4 {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    font-family: 'Arial', sans-serif;
}

.contato-item.plantao-24h p {
    color: #ffffff;
    font-size: 0.8rem;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
    font-family: 'Arial', sans-serif;
}

.btn-plantao {
    display: inline-block;
    background: var(--primary-green);
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-green);
    font-family: 'Arial', sans-serif;
}

.btn-plantao:hover {
    background: transparent;
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 200, 81, 0.3);
}


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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.volcode-credit {
    font-size: 0.9rem;
    margin: 0;
}

.volcode-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: 'MEGRIM', cursive;
}

.volcode-link:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 255, 0, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: var(--primary-green);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.6);
    color: var(--white);
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 30px;
    color: var(--white);
}

/* Garantir que a aba do WhatsApp apareça em todas as páginas */
.whatsapp-float {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}

/* Animações */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Responsividade Mobile - NOVO */
/* Regras gerais para prevenir overflow horizontal */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

section {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1rem 0;
    }
    
    .sobre-stats {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1rem;
        margin: 2rem 0;
        padding: 1rem;
        max-width: 100%;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .sobre-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .sobre-intro h3 {
        text-align: center;
        font-size: 1.8rem;
    }
    
    .sobre-intro p {
        text-align: center;
        font-size: 1.2rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    
    .beneficios-container {
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        border: none;
        padding: 0;
    }
    
    .beneficios-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0;
        max-height: none;
        overflow: visible;
    }
    
    .beneficios-expand-container {
        padding: 1.5rem 0;
        background: transparent;
        border: none;
    }
    
    .beneficios-expand-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        flex-direction: row;
        justify-content: center;
        gap: 0.8rem;
        border-radius: 25px;
    }
    
    .beneficio-card {
        background: linear-gradient(135deg, rgba(0, 255, 0, 0.05) 0%, rgba(0, 204, 0, 0.05) 100%);
        border: 1px solid rgba(0, 255, 0, 0.2);
        padding: 1.2rem;
        height: auto;
        min-height: 90px;
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        gap: 1rem;
        align-items: center;
    }
    
    .beneficio-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .beneficio-content {
        flex: 1;
        text-align: left;
    }
    
    .beneficio-content h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
    
    .beneficio-content p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .beneficios-count {
        padding: 0.8rem 1.5rem;
        gap: 0.8rem;
    }
    
    .count-number {
        font-size: 2rem;
    }
    
    .count-text {
        font-size: 0.9rem;
    }

    .beneficios-layout {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        align-items: center;
        padding: 0 1rem;
    }
    
    .beneficios-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        align-items: center;
    }
    
    .beneficios-title {
        font-size: 2.5rem;
    }
    
    .beneficios-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .beneficios-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding-top: 1rem;
    }
    
    .beneficio-box {
        height: 65px;
    }
    
    .beneficio-texto {
        font-size: 0.9rem;
    }

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

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

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

    .app-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
        max-width: 100%;
        overflow: hidden;
    }

    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contato-info {
        height: auto;
    }
    
    .google-map {
        height: 300px;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {

    .container {
        padding: 0 15px;
    }

    .title-underline::after {
        width: 50px;
        height: 2px;
        bottom: -4px;
    }

    .beneficios-boxes {
        align-items: center;
    }

    /* Esconder menu desktop no mobile */
    .nav-menu {
        display: none;
    }

    /* Mostrar botão hamburger no mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Esconder botão de cotação desktop no mobile */
    .header-actions {
        display: none;
    }

    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        white-space: normal;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
        white-space: normal;
    }

    .sobre-text h3 {
        font-size: 2rem;
    }

    .sobre-text p {
        font-size: 1.1rem;
        white-space: normal;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .sobre-intro h3 {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .sobre-intro p {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .feature-item {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .feature-content h4 {
        font-size: 0.9rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
    }
    
    
    .beneficios-container {
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        border: none;
        padding: 0;
    }
    
    .beneficios-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0;
        max-height: 400px;
        overflow: hidden;
        transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .beneficios-grid.expanded {
        max-height: 2000px !important;
    }
    
    .beneficios-expand-container {
        padding: 1.5rem 0;
        background: transparent;
        border: none;
    }
    
    .beneficios-expand-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        flex-direction: row;
        justify-content: center;
        gap: 0.8rem;
        border-radius: 25px;
    }
    
    .beneficio-card {
        background: linear-gradient(135deg, rgba(0, 255, 0, 0.05) 0%, rgba(0, 204, 0, 0.05) 100%);
        border: 1px solid rgba(0, 255, 0, 0.2);
        padding: 1.2rem;
        height: auto;
        min-height: 80px;
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        gap: 1rem;
        align-items: center;
    }
    
    .beneficio-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .beneficio-content {
        flex: 1;
        text-align: left;
    }
    
    .beneficio-content h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .beneficio-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }


    .sobre {
        padding: 2rem 0 1rem 0;
    }

    .title-underline::after {
        width: 60px;
        height: 3px;
        bottom: -6px;
    }

    .beneficios-boxes {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        max-height: none;
        margin-right: 0;
        padding-top: 0;
        grid-template-columns: none;
        grid-template-rows: none;
        align-items: center;
    }

    .beneficio-box {
        height: 60px;
    }

    .beneficio-texto {
        font-size: 0.8rem;
    }



    /* Remover relógio da proteção 24h no mobile */
    .protecao-24h i {
        display: none;
    }

    /* Ajustar layout dos benefícios no mobile */
    .beneficios-layout {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        padding: 0 0.5rem;
        align-items: center;
    }

    .beneficios-titulo {
        flex: none;
        align-items: center;
        padding-top: 0;
        margin-bottom: 0.5rem;
    }

    .beneficios {
        padding: 1rem 0;
    }

    .beneficios-background {
        padding: 0;
    }
    
    .beneficios-background::before {
        display: none;
    }
    
    .porque-sallus::before {
        display: none;
    }

    .porque-sallus-titulo {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .porque-sallus-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 600px;
        margin: 0 auto;
        grid-template-columns: none;
        grid-template-rows: none;
    }
    
    .porque-box-1 {
        grid-column: unset;
        grid-row: unset;
        min-height: 120px;
    }
    
    .porque-box-2, .porque-box-3, .porque-box-4, .porque-box-5, .porque-box-6 {
        grid-column: unset;
        grid-row: unset;
        min-height: 100px;
    }

    .porque-box {
        min-height: 100px;
        padding: 1.2rem;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .porque-imagem {
        width: 45px;
        height: 45px;
    }

    .porque-texto, .porque-texto-verde, .porque-texto-branco, .porque-texto-cinza {
        font-size: 1rem;
        line-height: 1.3;
        text-align: center;
    }

    .botao-chame-sallus {
        width: 100%;
        max-width: 500px;
        padding: 1.5rem;
        min-height: 120px;
        margin: 1rem auto 0;
    }

    .botao-chame-sallus h3 {
        font-size: 1.8rem;
    }


    .botao-chame-sallus i {
        font-size: 3.5rem;
    }

    .frase-destaque {
        margin-top: 1.5rem;
        text-align: center;
        width: 100%;
    }

    .slogan-texto {
        font-size: 2.2rem;
        text-align: center;
        max-width: 600px;
        margin: 0 auto 1.5rem auto;
    }

    .slogan-logo-img {
        width: 150px;
    }

    .porque-sallus {
        padding: 2rem 0;
    }

    .depoimentos-title {
        font-size: 2.5rem;
    }

    .depoimentos-section {
        padding: 1.5rem 0;
    }

    .depoimento-card {
        padding: 1.5rem;
        min-height: 200px;
    }

    .empresa-nome {
        font-size: 0.9rem;
    }

    .cliente-nome {
        font-size: 0.8rem;
    }
    
    .depoimento-texto {
        font-size: 0.9rem;
    }
    
    .app-section {
        padding: 1.5rem 0;
    }

    .app-title {
        font-size: 2.5rem;
    }

    .app-description {
        font-size: 1rem;
        white-space: normal;
    }
    
    .app-buttons {
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 1rem;
    }

    .app-icon {
        width: 180px;
        height: auto;
        object-fit: contain;
    }
    
    .app-image-container {
        margin-left: 0;
        max-width: 100%;
        overflow: hidden;
        padding: 0 1rem;
    }
    
    .app-image {
        max-width: 600px;
        transform: none;
    }

    .google-map {
        height: 300px;
    }

    .contato-info h3 {
        font-size: 1.8rem;
    }

    .contato-item h4 {
        font-size: 0.85rem;
    }

    .contato-item p {
        font-size: 0.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3, .footer-section h4 {
        font-size: 1.2rem;
    }

    .footer-section p, .footer-section ul li a {
        font-size: 0.9rem;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-img {
        max-width: 200px;
    }

    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .volcode-credit {
        font-size: 0.8rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
        z-index: 9999;
        display: flex;
    }
}

/* Mobile Pequeno - 480px */
@media (max-width: 480px) {

    .container {
        padding: 0 15px;
    }

    .title-underline::after {
        width: 40px;
        height: 2px;
        bottom: -3px;
    }

    .beneficios-boxes {
        align-items: center;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        white-space: normal;
    }

    .sobre-text h3 {
        font-size: 1.8rem;
    }

    .sobre-text p {
        font-size: 1rem;
        white-space: normal;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .sobre-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 1.5rem 0;
        padding: 0.8rem;
        max-width: 100%;
    }
    
    .stat-item {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .sobre-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        max-width: 100%;
    }
    
    .sobre-intro h3 {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .sobre-intro p {
        font-size: 1rem;
        text-align: center;
    }
    
    .feature-item {
        padding: 0.6rem;
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .feature-content h4 {
        font-size: 0.8rem;
    }
    
    .feature-content p {
        font-size: 0.75rem;
    }
    
    
    .beneficios-container {
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        border: none;
        padding: 0;
    }
    
    .beneficios-grid {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        padding: 0;
        max-height: 350px;
        overflow: hidden;
        transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .beneficios-grid.expanded {
        max-height: 2000px !important;
    }
    
    .beneficios-expand-container {
        padding: 1.2rem 0;
        background: transparent;
        border: none;
    }
    
    .beneficios-expand-btn {
        width: 100%;
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
        flex-direction: row;
        justify-content: center;
        gap: 0.6rem;
        border-radius: 20px;
    }
    
    .beneficio-card {
        background: linear-gradient(135deg, rgba(0, 255, 0, 0.05) 0%, rgba(0, 204, 0, 0.05) 100%);
        border: 1px solid rgba(0, 255, 0, 0.2);
        padding: 1rem;
        height: auto;
        min-height: 70px;
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        gap: 0.8rem;
        align-items: center;
    }
    
    .beneficio-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .beneficio-content {
        flex: 1;
        text-align: left;
    }
    
    .beneficio-content h4 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }
    
    .beneficio-content p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
    
    .beneficios-count {
        padding: 0.6rem 1rem;
        gap: 0.6rem;
        flex-direction: column;
        text-align: center;
    }
    
    .count-number {
        font-size: 1.8rem;
    }
    
    .count-text {
        font-size: 0.8rem;
    }


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

    .beneficios-title {
        font-size: 2rem;
    }

    .beneficio-box {
        height: 50px;
    }

    .beneficio-texto {
        font-size: 0.7rem;
    }



    /* Remover relógio da proteção 24h no mobile pequeno */
    .protecao-24h i {
        display: none;
    }

    /* Ajustar layout dos benefícios no mobile pequeno */
    .beneficios-layout {
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
        padding: 0 0.5rem;
        align-items: center;
    }

    .beneficios-titulo {
        flex: none;
        align-items: center;
        padding-top: 0;
        margin-bottom: 0.5rem;
    }

    .beneficios {
        padding: 0.8rem 0;
    }

    .beneficios-background {
        padding: 0;
    }
    
    .beneficios-background::before {
        display: none;
    }
    
    .porque-sallus::before {
        display: none;
    }

    .beneficios-boxes {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        max-height: none;
        margin-right: 0;
        padding-top: 0;
        grid-template-columns: none;
        grid-template-rows: none;
        align-items: center;
    }

    .porque-sallus-titulo {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 0.8rem;
    }

    .porque-sallus-grid {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        max-width: 500px;
        margin: 0 auto;
        grid-template-columns: none;
        grid-template-rows: none;
    }

    .porque-box {
        padding: 1rem;
        min-height: 90px;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .porque-imagem {
        width: 40px;
        height: 40px;
    }

    .porque-texto, .porque-texto-verde, .porque-texto-branco, .porque-texto-cinza {
        font-size: 0.9rem;
        line-height: 1.2;
        text-align: center;
    }

    .botao-chame-sallus {
        width: 100%;
        max-width: 450px;
        padding: 1.5rem;
        min-height: 110px;
        margin: 1rem auto 0;
        text-align: center;
    }

    .botao-chame-sallus h3 {
        font-size: 1.6rem;
    }


    .botao-chame-sallus i {
        font-size: 3rem;
    }
    
    .frase-destaque {
        margin-top: 1.2rem;
        text-align: center;
        width: 100%;
    }

    .slogan-texto {
        font-size: 1.8rem;
        text-align: center;
        max-width: 500px;
        margin: 0 auto 1.5rem auto;
    }

    .slogan-logo-img {
        width: 120px;
    }

    .porque-sallus {
        padding: 1.5rem 0;
    }

    .depoimentos-title {
        font-size: 2rem;
    }

    .depoimentos-section {
        padding: 1rem 0;
    }

    .depoimento-card {
        padding: 1rem;
        min-height: 180px;
    }

    .empresa-nome {
        font-size: 0.8rem;
    }

    .cliente-nome {
        font-size: 0.7rem;
    }

    .depoimento-texto {
        font-size: 0.8rem;
    }

    .foto-cliente {
        width: 40px;
        height: 40px;
    }

    .app-section {
        padding: 1rem 0;
    }

    .app-title {
        font-size: 2rem;
    }

    .app-description {
        font-size: 0.9rem;
        white-space: normal;
    }

    .app-buttons {
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 0.8rem;
    }

    .app-icon {
        width: 160px;
        height: auto;
        object-fit: contain;
    }

    .app-image {
        max-width: 100%;
        width: 100%;
    }

    .contato-info h3 {
        font-size: 1.5rem;
    }

    .contato-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .contato-item h4 {
        font-size: 0.8rem;
    }

    .contato-item p {
        font-size: 0.75rem;
    }

    .contato-item.plantao-24h h4 {
        font-size: 0.8rem;
    }

    .contato-item.plantao-24h p {
        font-size: 0.75rem;
    }

    .btn-plantao {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }

    .footer-section h3, .footer-section h4 {
            font-size: 1rem;
        }

    .footer-section p, .footer-section ul li a {
        font-size: 0.8rem;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-img {
        max-width: 160px;
    }

    .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .volcode-credit {
        font-size: 0.75rem;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
        z-index: 9999;
        display: flex;
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Esconder botão mobile no desktop */
.mobile-quote-button {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

