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

:root {
    --primary-dark: #1a1d23;
    --secondary-dark: #23262b;
    --accent-teal: #2dd4bf;
    --accent-teal-light: #5eead4;
    --text-light: #f8fafc;
    --text-gray: #e2e8f0;
    --text-muted: #94a3b8;
    --surface-light: #f8fafc;
    --surface-gray: #f1f5f9;
    --border-light: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #1a1d23 0%, #2d3748 100%);
    --gradient-accent: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
    --gradient-surface: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--gradient-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Seção Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(45, 212, 191, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 212, 191, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%23334155" opacity="0.3"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--accent-teal-light);
}

.hero-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    background: var(--gradient-accent);
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-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.5s;
}

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

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

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% { top: 8px; opacity: 1; }
    50% { top: 24px; opacity: 0.3; }
    100% { top: 8px; opacity: 1; }
}

/* Seção Modelos */
.modelos-nidus-section {
    background: var(--gradient-surface);
    padding: 5rem 2rem;
    position: relative;
}

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

.modelos-nidus-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.modelos-nidus-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.modelos-nidus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nidus-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.nidus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nidus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.nidus-card:hover::before {
    transform: scaleX(1);
}

.nidus-card-img {
    width: 100%;
    height: 200px;
    background: var(--surface-gray);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.nidus-card-img img {
    width: 100%;
    height: 220px; /* Altura ajustada para a maior dimensão Y */
    object-fit: contain;
}

.nidus-card-img:hover img {
    transform: scale(1.05);
}

.nidus-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.nidus-card ul {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.nidus-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nidus-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: bold;
    font-size: 1rem;
}

.nidus-card-btn {
    width: 100%;
    padding: 0.875rem 0;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    background: var(--primary-dark);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nidus-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.3s ease;
    z-index: 0;
}

.nidus-card-btn span {
    position: relative;
    z-index: 1;
}

.nidus-card-btn:hover::before {
    left: 0;
}

.nidus-card-btn:hover {
    transform: translateY(-1px);
}

/* Seção Cenário Ideal */
.cenario-ideal-section {
    background: var(--gradient-primary);
    padding: 5rem 2rem;
    position: relative;
}

.cenario-ideal-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.cenario-ideal-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

.cenario-ideal-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cenario-ideal-img {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.cenario-ideal-img:hover {
    transform: scale(1.02);
}

.cenario-ideal-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Seção Benefícios */
.beneficios-section {
    background: var(--gradient-surface);
    padding: 5rem 2rem;
}

.beneficios-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.beneficio-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.beneficio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.beneficio-card:hover::before {
    opacity: 0.05;
}

.beneficio-card > * {
    position: relative;
    z-index: 1;
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
}

.beneficio-icon span {
    font-size: 2rem;
    filter: brightness(0) invert(1);
}

.beneficio-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.beneficio-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Seção Soluções */
.solucoes-section {
    background: var(--gradient-primary);
    padding: 5rem 2rem;
}

.solucoes-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.solucoes-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.solucoes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solucoes-form-box {
    background: white;
    color: var(--primary-dark);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
}

.solucoes-form-box h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.solucoes-form-desc {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.solucoes-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solucoes-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.solucoes-form-group {
    display: flex;
    flex-direction: column;
}

.solucoes-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.solucoes-form-group input,
.solucoes-form-group textarea,
.solucoes-form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    color: var(--primary-dark);
    transition: all 0.3s ease;
    resize: none;
}

.solucoes-form-group input:focus,
.solucoes-form-group textarea:focus,
.solucoes-form-group select:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

.solucoes-form-group textarea {
    min-height: 100px;
}

.solucoes-form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.solucoes-form-check input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--accent-teal);
}

.solucoes-form-check a {
    color: var(--accent-teal);
    text-decoration: none;
}

.solucoes-form-check a:hover {
    text-decoration: underline;
}

.solucoes-form-btn {
    width: 100%;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    background: var(--gradient-accent);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.solucoes-form-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

.solucoes-form-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.solucoes-contato-box {
    color: var(--text-light);
}

.solucoes-contato-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.solucoes-contato-desc {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.solucoes-contato-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.solucoes-contato-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.solucoes-contato-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.solucoes-contato-item .contato-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.solucoes-contato-item .contato-info {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.solucoes-premium-box {
    background: rgba(45, 212, 191, 0.1);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(45, 212, 191, 0.2);
    backdrop-filter: blur(10px);
}

.solucoes-premium-box .premium-icon {
    font-size: 2rem;
    color: var(--accent-teal);
}

.solucoes-premium-box b {
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.solucoes-premium-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Footer */
.footer-section {
    background: var(--primary-dark);
    padding: 4rem 2rem 2rem;
    color: var(--text-light);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    object-fit: contain;
    object-position: left;
}

.footer-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-column ul li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--accent-teal);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-teal);
}

/* Modais */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(26, 29, 35, 0.9);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.gallery-modal.active {
    display: flex;
}

.gallery-main-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    object-fit: contain;
}

.gallery-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    font-weight: bold;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.gallery-arrow.left {
    left: 2rem;
}

.gallery-arrow.right {
    right: 2rem;
}

/* Seção de Vídeos */
.videos-section {
    background: var(--gradient-primary);
    padding: 5rem 2rem;
    position: relative;
}

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

.videos-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.videos-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.videos-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.08);
}

.video-card video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.video-card-content {
    padding: 1.5rem;
}

.video-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.video-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, background 0.2s;
    cursor: pointer;
    width: 72px;
    height: 72px;
    will-change: transform;
}

.whatsapp-float:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.24);
    background: #20ba5a;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.whatsapp-icon {
    width: 64px;
    height: 64px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

/* Responsividade */
@media (max-width: 768px) {
    .cenario-ideal-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solucoes-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solucoes-form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .gallery-arrow.left {
        left: 1rem;
    }
    
    .gallery-arrow.right {
        right: 1rem;
    }
    
    .gallery-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .modelos-nidus-section,
    .cenario-ideal-section,
    .beneficios-section,
    .solucoes-section,
    .videos-section {
        padding: 3rem 1rem;
    }
    
    .solucoes-form-box {
        padding: 2rem 1.5rem;
    }
}

/* Estilo para garantir que as imagens apareçam inteiras */
.nidus-card-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .nidus-card-img img {
        max-width: 100%;
        height: auto;
    }
}

/* Animações de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nidus-card,
.beneficio-card,
.video-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Animações de hover para imagens dos cards */
@keyframes duo-img-move-vertical {
    0% { transform: translateY(0); }
    50% { transform: translateY(calc(-100% + 200px)); }
    100% { transform: translateY(0); }
}

@keyframes solo-img-move-vertical {
    0% { transform: translateY(0); }
    50% { transform: translateY(calc(-100% + 200px)); }
    100% { transform: translateY(0); }
}

@keyframes nexus-img-move-vertical {
    0% { transform: translateY(0); }
    50% { transform: translateY(calc(-100% + 200px)); }
    100% { transform: translateY(0); }
}

.nidus-card-img.duo-img-animada:hover img {
    animation: duo-img-move-vertical 20s linear infinite;
}

.nidus-card-img.solo-img-animada:hover img {
    animation: solo-img-move-vertical 20s linear infinite;
}

.nidus-card-img.nexus-img-animada:hover img {
    animation: nexus-img-move-vertical 20s linear infinite;
}

.ra-section {
  max-width: 700px;
  margin: 48px auto 32px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px #0001;
  padding: 32px 24px;
  text-align: center;
}
.ra-section h2 {
  color: #2d6cdf;
  margin-bottom: 16px;
}
.ra-btn {
  background: #2d6cdf;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 32px;
  font-size: 1.1em;
  cursor: pointer;
  margin-top: 24px;
  transition: background 0.2s;
}
.ra-btn:hover {
  background: #1b417a;
}
.ar-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
}
.ar-modal-content {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  max-width: 420px;
  width: 95vw;
  position: relative;
  box-shadow: 0 4px 32px #0002;
  text-align: center;
}
.ar-modal-close {
  position: absolute;
  right: 18px; top: 10px;
  font-size: 2em;
  color: #888;
  cursor: pointer;
}

.notification-success {
    background: #10b981 !important;
    color: #fff;
    border-left: 6px solid #059669;
    box-shadow: 0 4px 16px rgba(16,185,129,0.12);
    font-size: 1rem;
    opacity: 0.98;
}

