/* ======= GLOBAL RESET E CONFIGURAÇÕES ======= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a192f;
    /* Tom de azul marinho escuro */
    color: #e0e0e0;
    line-height: 1.6;
}

/* Estilos para botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #1a4b8c;
    color: white;
    border: 2px solid #1a4b8c;
}

.btn-primary:hover {
    background-color: #0d3b7c;
    border-color: #0d3b7c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 75, 140, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: white;
    transform: translateY(-2px);
}

.btn-text {
    color: white;
    text-decoration: underline;
    padding: 12px 0;
    margin-left: 20px;
    opacity: 0.8;
}

.btn-text:hover {
    opacity: 1;
}

/* Estilos para o header principal */
.main-header {
    background-color: rgba(10, 25, 47, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

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

.logo a {
    display: flex;
    text-decoration: none;
    color: white;
}

.logo-image {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.shed-logo-image {
    height: 300px;
    width: auto;
    margin-bottom: 20px;
}

.ciclo-logo-image {
    height: 40px;
    width: auto;
    margin-bottom: 10px;
}

.hero-logo {
    margin-bottom: 20px;
}

.main-nav {
    flex: 1;
    margin: 0 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    justify-content: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 0 15px;
}

.nav-links a:hover {
    opacity: 1;
    color: #D4AF37;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Estilos para a seção hero */
.hero-section {
    background: linear-gradient(135deg, #0f3ab2 0%, #011b3f 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Estilos padronizados para a seção "Para quem serve" */
.for-who-section {
    background-color: #0d1b33;
    /* Tom de azul marinho mais escuro para consistência */
    padding: 0px;
    position: relative;
    color: #e0e0e0;
    /* Cor de texto clara para consistência */
}

.for-who-section .section-header h2,
.for-who-section .section-description {
    color: #e0e0e0;
    /* Cor de texto clara para consistência */
}

.for-who-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3NjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiIGlkPSJhIj48c3RvcCBzdG9wLWNvbG9yPSIjRkZGIiBzdG9wLW9wYWNpdHk9Ii4wNSIgb2Zmc2V0PSIwJSIvPjxzdG9wIHN0b3AtY29sb3I9IiNGRkYiIHN0b3Atb3BhY2l0eT0iMCIgb2Zmc2V0PSIxMDAlIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHBhdGggZD0iTTAgMGgxNDQwdjc2MEgweiIgZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJldmVub2RkIiBvcGFjaXR5PSIuMiIvPjwvc3ZnPg==');
    opacity: 0.1;
    z-index: 1;
}

.profiles-grid {
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

/* Grid layout para desktop */
.carousel-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: all 0.3s ease;
    width: 100%;
}

.profile-card {
    background: #112240;
    /* Tom de azul marinho mais claro para consistência */
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid #1d3b6b;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: #D4AF37;
    /* Borda dourada no hover */
}

.profile-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    /* Garantir largura mínima para manter o círculo */
    background: linear-gradient(135deg, #D4AF37 0%, #AA8C2C 100%);
    /* Gradiente dourado */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    overflow: hidden;
    /* Garantir que o conteúdo não ultrapasse o círculo */
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.profile-icon i {
    font-size: 24px;
    color: #0a192f;
    /* Cor escura para contraste com o fundo dourado */
}

.profile-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: #e0e0e0;
    /* Cor clara para consistência */
    margin: 0;
}

/* Pie Chart */
.radar-chart {
    width: 100%;
    height: 220px;
    position: relative;
    margin: 10px 0px 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-legend {
    margin-bottom: 20px;
}

.radar-canvas {
    width: 100%;
    height: 100%;
    max-width: 220px;
    margin: 0 auto;
}

.profile-challenges {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.profile-challenges h4 {
    font-size: 18px;
    font-weight: 600;
    color: #D4AF37;
    /* Cor dourada para destaque */
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.profile-challenges ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.profile-challenges li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.7;
    color: #cccccc;
    /* Cor clara para consistência */
}

.profile-challenges li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #D4AF37;
    /* Cor dourada para destaque */
    font-size: 18px;
    line-height: 1.4;
}

/* Carrossel para mobile */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel-controls {
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}

.carousel-prev,
.carousel-next {
    background: linear-gradient(135deg, #4a1e9c 0%, #3a0ca3 100%);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: white;
    font-size: 16px;
}

.carousel-prev:hover,
.carousel-next:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.carousel-dots {
    display: flex;
    gap: 8px;
    margin: 0 15px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(74, 30, 156, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: rgba(74, 30, 156, 0.9);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(74, 30, 156, 0.5);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3NjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiIGlkPSJhIj48c3RvcCBzdG9wLWNvbG9yPSIjRkZGIiBzdG9wLW9wYWNpdHk9Ii4wNSIgb2Zmc2V0PSIwJSIvPjxzdG9wIHN0b3AtY29sb3I9IiNGRkYiIHN0b3Atb3BhY2l0eT0iMCIgb2Zmc2V0PSIxMDAlIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHBhdGggZD0iTTAgMGgxNDQwdjc2MEgweiIgZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJldmVub2RkIiBvcGFjaXR5PSIuMiIvPjwvc3ZnPg==');
    opacity: 0.3;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.hero-shield {
    margin-bottom: 30px;
}

.shield-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shield-icon i.fa-shield-alt {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.shield-icon i.fa-check {
    position: absolute;
    font-size: 10px;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
}

.hero-tagline {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.hero-description,
.hero-description-secondary {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    text-align: center;
}

.hero-description-secondary {
    margin-top: 30px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
    margin-top: 10px;
    justify-content: center;
}

.hero-stats-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 20px;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
    transform: rotate(5deg);
}

.stats-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.stats-text {
    font-size: 14px;
    line-height: 1.4;
}

.stats-number {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.stats-detail {
    display: block;
    font-size: 12px;
    opacity: 0.7;
}

.hero-video {
    width: 100%;
    max-width: 900px;
    position: relative;
}

.hero-video iframe {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 12px;
    display: block;
    margin: 20px auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Estilos para o conteúdo principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Estilos padronizados para o cabeçalho principal da página */
.page-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-top: 20px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #e0e0e0;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #1a4b8c, #0d3b7c, #D4AF37);
    border-radius: 2px;
}

/* Estilos para a seção "O que é o SHED?" */
.shed-info-section,
.what-is-section {
    background: linear-gradient(135deg, #0d1b33 0%, #112240 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.shed-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3NjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiIGlkPSJhIj48c3RvcCBzdG9wLWNvbG9yPSIjRkZGIiBzdG9wLW9wYWNpdHk9Ii4wNSIgb2Zmc2V0PSIwJSIvPjxzdG9wIHN0b3AtY29sb3I9IiNGRkYiIHN0b3Atb3BhY2l0eT0iMCIgb2Zmc2V0PSIxMDAlIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHBhdGggZD0iTTAgMGgxNDQwdjc2MEgweiIgZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJldmVub2RkIiBvcGFjaXR5PSIuMiIvPjwvc3ZnPg==');
    opacity: 0.1;
    z-index: 1;
}

.shed-info-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.shed-info-header {
    margin-bottom: 30px;
    position: relative;
}

.shed-info-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #D4AF37;
    /* Cor dourada para destaque */
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    display: inline-block;
}

.shed-info-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    border-radius: 2px;
    margin: 0 auto;
}

.shed-info-description {
    font-size: 20px;
    line-height: 1.8;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
}

/* Estilos para a seção de informações */
.info-section {
    margin-bottom: 60px;
}

/* Estilos padronizados para cabeçalhos de seção */
.section-header {
    margin-bottom: 30px;
    margin-top: 50px;
    text-align: center;
    position: relative;
}

.section-header:first-child {
    margin-top: 0;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    border-radius: 2px;
    margin: 0 auto;
}

/* Estilos padronizados para descrições de seção */
.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #D4AF37;
    color: #0a192f;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
    padding-top: 5px;
}

.listing-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.listing-card {
    display: flex;
    align-items: center;
    background-color: #112240;
    /* Tom de azul marinho mais claro */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    border: 1px solid #1d3b6b;
    width: 1200px;
}

.listing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.listing-card:hover {
    transform: translateY(-10px);
}

/* Cores de borda específicas para cada ciclo no hover */
.ciclo-pessoal:hover {
    border-color: var(--ciclo-pessoal);
}

.ciclo-emocional:hover {
    border-color: var(--ciclo-emocional);
}

.ciclo-profissional:hover {
    border-color: var(--ciclo-profissional);
}

.ciclo-amoroso:hover {
    border-color: var(--ciclo-amoroso);
}

.ciclo-fisico:hover {
    border-color: var(--ciclo-fisico);
}

.ciclo-social:hover {
    border-color: var(--ciclo-social);
}

.ciclo-intelectual:hover {
    border-color: var(--ciclo-intelectual);
}

.ciclo-material:hover {
    border-color: var(--ciclo-material);
}

.ciclo-espiritual:hover {
    border-color: var(--ciclo-espiritual);
}

.listing-card:hover::after {
    opacity: 1;
}

/* Cores dos ciclos baseadas na imagem SHED */
:root {
    --ciclo-pessoal: #f5f5f5;
    --ciclo-emocional: #f8c4c4;
    --ciclo-profissional: #4a8db7;
    --ciclo-amoroso: #b74a4a;
    --ciclo-fisico: #7ab74a;
    --ciclo-social: #c44a9b;
    --ciclo-intelectual: #e6c34a;
    --ciclo-material: #4ac3c3;
    --ciclo-espiritual: #8a4ac3;
}

.card-left {
    flex: 1;
    background: #091628;
    /* Tom de azul marinho ainda mais escuro */
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid #1d3b6b;
    padding: 0;
    min-height: 400px;
}

/* Estilos específicos para cada ciclo */
.ciclo-pessoal .card-left {
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.08) 0%, rgba(245, 245, 245, 0.02) 100%), #091628;
    border-left: 4px solid var(--ciclo-pessoal);
}

.ciclo-emocional .card-left {
    background: linear-gradient(135deg, rgba(248, 196, 196, 0.08) 0%, rgba(248, 196, 196, 0.02) 100%), #091628;
    border-left: 4px solid var(--ciclo-emocional);
}

.ciclo-profissional .card-left {
    background: linear-gradient(135deg, rgba(74, 141, 183, 0.08) 0%, rgba(74, 141, 183, 0.02) 100%), #091628;
    border-left: 4px solid var(--ciclo-profissional);
}

.ciclo-amoroso .card-left {
    background: linear-gradient(135deg, rgba(183, 74, 74, 0.15) 0%, rgba(183, 74, 74, 0.05) 100%), #091628;
    border-left: 4px solid var(--ciclo-amoroso);
}

.ciclo-fisico .card-left {
    background: linear-gradient(135deg, rgba(122, 183, 74, 0.08) 0%, rgba(122, 183, 74, 0.02) 100%), #091628;
    border-left: 4px solid var(--ciclo-fisico);
}

.ciclo-social .card-left {
    background: linear-gradient(135deg, rgba(196, 74, 155, 0.08) 0%, rgba(196, 74, 155, 0.02) 100%), #091628;
    border-left: 4px solid var(--ciclo-social);
}

.ciclo-intelectual .card-left {
    background: linear-gradient(135deg, rgba(230, 195, 74, 0.08) 0%, rgba(230, 195, 74, 0.02) 100%), #091628;
    border-left: 4px solid var(--ciclo-intelectual);
}

.ciclo-material .card-left {
    background: linear-gradient(135deg, rgba(74, 195, 195, 0.08) 0%, rgba(74, 195, 195, 0.02) 100%), #091628;
    border-left: 4px solid var(--ciclo-material);
}

.ciclo-espiritual .card-left {
    background: linear-gradient(135deg, rgba(138, 74, 195, 0.08) 0%, rgba(138, 74, 195, 0.02) 100%), #091628;
    border-left: 4px solid var(--ciclo-espiritual);
}

/* Efeito de brilho superior */
.card-left::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.1;
    z-index: 0;
}

/* Efeito de brilho inferior */
.card-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    transform: translate(50%, 50%);
    z-index: 0;
}

/* Estilos do calendário */
.cycle-calendar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: transparent;
    padding-top: 10px;
}

.calendar-header {
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
}

.cycle-days {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    width: 95%;
    margin-bottom: 15px;
    margin-top: 5px;

    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 6px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.weekdays span {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    opacity: 0.95;
    padding: 4px 0;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 5px;
    width: 93%;
    max-width: 100%;
}

.calendar-day {
    width: calc(100% - 4px);
    height: 0;
    padding-bottom: calc(100% - 4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 50%;
    position: relative;
    margin: 2px auto;
    transition: all 0.3s ease;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    flex-direction: column;
}

.calendar-day::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.calendar-day span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day.start-day {
    background-color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transform: scale(1.25);
    z-index: 5;
    color: #0a192f;
    text-shadow: none;
    position: relative;
}

.calendar-day.cycle-day {
    font-weight: 600;
}

.calendar-day.empty {
    opacity: 0.15;
}

/* Efeitos de brilho específicos para cada ciclo */
.ciclo-pessoal .card-left::before {
    background-color: var(--ciclo-pessoal);
}

.ciclo-pessoal .card-left::after {
    background: radial-gradient(circle, rgba(245, 245, 245, 0.08) 0%, rgba(245, 245, 245, 0) 70%);
}

/* Estilos específicos do calendário para o ciclo pessoal */
.ciclo-pessoal .cycle-calendar {
    color: var(--ciclo-pessoal);
    background: transparent;
}

.ciclo-pessoal .calendar-header {
    color: var(--ciclo-pessoal);
}

.ciclo-pessoal .weekdays {
    border: 1px solid rgba(245, 245, 245, 0.2);
    background-color: rgba(245, 245, 245, 0.05);
    box-shadow: 0 2px 10px rgba(245, 245, 245, 0.1);
}

.ciclo-pessoal .weekdays span {
    color: var(--ciclo-pessoal);
}

.ciclo-pessoal .calendar-day.start-day {
    background-color: rgba(245, 245, 245, 0.5);
    box-shadow: 0 0 15px rgba(245, 245, 245, 0.4);
    color: #0a192f;
    border: 2px solid rgba(245, 245, 245, 0.8);
}

.ciclo-pessoal .calendar-day.cycle-day {
    border-color: rgba(245, 245, 245, 0.3);
}

/* Estilos específicos do calendário para o ciclo emocional */
.ciclo-emocional .cycle-calendar {
    color: var(--ciclo-emocional);
    background: transparent;
}

.ciclo-emocional .calendar-header {
    color: var(--ciclo-emocional);
}

.ciclo-emocional .weekdays {
    border: 1px solid rgba(248, 196, 196, 0.2);
    background-color: rgba(248, 196, 196, 0.05);
    box-shadow: 0 2px 10px rgba(248, 196, 196, 0.1);
}

.ciclo-emocional .weekdays span {
    color: var(--ciclo-emocional);
}

.ciclo-emocional .calendar-day.start-day {
    background-color: rgba(248, 196, 196, 0.5);
    box-shadow: 0 0 15px rgba(248, 196, 196, 0.4);
    color: #0a192f;
    border: 2px solid rgba(248, 196, 196, 0.8);
}

.ciclo-emocional .calendar-day.cycle-day {
    border-color: rgba(248, 196, 196, 0.3);
}

/* Estilos específicos do calendário para o ciclo profissional */
.ciclo-profissional .cycle-calendar {
    color: var(--ciclo-profissional);
    background: transparent;
}

.ciclo-profissional .calendar-header {
    color: var(--ciclo-profissional);
}

.ciclo-profissional .weekdays {
    border: 1px solid rgba(74, 141, 183, 0.2);
    background-color: rgba(74, 141, 183, 0.05);
    box-shadow: 0 2px 10px rgba(74, 141, 183, 0.1);
}

.ciclo-profissional .weekdays span {
    color: var(--ciclo-profissional);
}

.ciclo-profissional .calendar-day.start-day {
    background-color: rgba(74, 141, 183, 0.5);
    box-shadow: 0 0 15px rgba(74, 141, 183, 0.4);
    color: #0a192f;
    border: 2px solid rgba(74, 141, 183, 0.8);
}

.ciclo-profissional .calendar-day.cycle-day {
    border-color: rgba(74, 141, 183, 0.3);
}

/* Estilos específicos do calendário para o ciclo amoroso */
.ciclo-amoroso .cycle-calendar {
    color: var(--ciclo-amoroso);
    background: transparent;
}

.ciclo-amoroso .calendar-header {
    color: var(--ciclo-amoroso);
}

.ciclo-amoroso .weekdays {
    border: 1px solid rgba(183, 74, 74, 0.3);
    background-color: rgba(183, 74, 74, 0.1);
    box-shadow: 0 2px 10px rgba(183, 74, 74, 0.15);
}

.ciclo-amoroso .weekdays span {
    color: var(--ciclo-amoroso);
}

.ciclo-amoroso .calendar-day.start-day {
    background-color: rgba(183, 74, 74, 0.5);
    box-shadow: 0 0 15px rgba(183, 74, 74, 0.4);
    color: #0a192f;
    border: 2px solid rgba(183, 74, 74, 0.8);
}

.ciclo-amoroso .calendar-day.cycle-day {
    border-color: rgba(183, 74, 74, 0.3);
}

/* Estilos específicos do calendário para o ciclo físico */
.ciclo-fisico .cycle-calendar {
    color: var(--ciclo-fisico);
    background: transparent;
}

.ciclo-fisico .calendar-header {
    color: var(--ciclo-fisico);
}

.ciclo-fisico .weekdays {
    border: 1px solid rgba(122, 183, 74, 0.2);
    background-color: rgba(122, 183, 74, 0.05);
    box-shadow: 0 2px 10px rgba(122, 183, 74, 0.1);
}

.ciclo-fisico .weekdays span {
    color: var(--ciclo-fisico);
}

.ciclo-fisico .calendar-day.start-day {
    background-color: rgba(122, 183, 74, 0.5);
    box-shadow: 0 0 15px rgba(122, 183, 74, 0.4);
    color: #0a192f;
    border: 2px solid rgba(122, 183, 74, 0.8);
}

.ciclo-fisico .calendar-day.cycle-day {
    border-color: rgba(122, 183, 74, 0.3);
}

/* Estilos específicos do calendário para o ciclo social */
.ciclo-social .cycle-calendar {
    color: var(--ciclo-social);
    background: transparent;
}

.ciclo-social .calendar-header {
    color: var(--ciclo-social);
}

.ciclo-social .weekdays {
    border: 1px solid rgba(196, 74, 155, 0.2);
    background-color: rgba(196, 74, 155, 0.05);
    box-shadow: 0 2px 10px rgba(196, 74, 155, 0.1);
}

.ciclo-social .weekdays span {
    color: var(--ciclo-social);
}

.ciclo-social .calendar-day.start-day {
    background-color: rgba(196, 74, 155, 0.5);
    box-shadow: 0 0 15px rgba(196, 74, 155, 0.4);
    color: #0a192f;
    border: 2px solid rgba(196, 74, 155, 0.8);
}

.ciclo-social .calendar-day.cycle-day {
    border-color: rgba(196, 74, 155, 0.3);
}

/* Estilos específicos do calendário para o ciclo intelectual */
.ciclo-intelectual .cycle-calendar {
    color: var(--ciclo-intelectual);
    background: transparent;
}

.ciclo-intelectual .calendar-header {
    color: var(--ciclo-intelectual);
}

.ciclo-intelectual .weekdays {
    border: 1px solid rgba(230, 195, 74, 0.2);
    background-color: rgba(230, 195, 74, 0.05);
    box-shadow: 0 2px 10px rgba(230, 195, 74, 0.1);
}

.ciclo-intelectual .weekdays span {
    color: var(--ciclo-intelectual);
}

.ciclo-intelectual .calendar-day.start-day {
    background-color: rgba(230, 195, 74, 0.5);
    box-shadow: 0 0 15px rgba(230, 195, 74, 0.4);
    color: #0a192f;
    border: 2px solid rgba(230, 195, 74, 0.8);
}

.ciclo-intelectual .calendar-day.cycle-day {
    border-color: rgba(230, 195, 74, 0.3);
}

/* Estilos específicos do calendário para o ciclo material */
.ciclo-material .cycle-calendar {
    color: var(--ciclo-material);
    background: transparent;
}

.ciclo-material .calendar-header {
    color: var(--ciclo-material);
}

.ciclo-material .weekdays {
    border: 1px solid rgba(74, 195, 195, 0.2);
    background-color: rgba(74, 195, 195, 0.05);
    box-shadow: 0 2px 10px rgba(74, 195, 195, 0.1);
}

.ciclo-material .weekdays span {
    color: var(--ciclo-material);
}

.ciclo-material .calendar-day.start-day {
    background-color: rgba(74, 195, 195, 0.5);
    box-shadow: 0 0 15px rgba(74, 195, 195, 0.4);
    color: #0a192f;
    border: 2px solid rgba(74, 195, 195, 0.8);
}

.ciclo-material .calendar-day.cycle-day {
    border-color: rgba(74, 195, 195, 0.3);
}

/* Estilos específicos do calendário para o ciclo espiritual */
.ciclo-espiritual .cycle-calendar {
    color: var(--ciclo-espiritual);
    background: transparent;
}

.ciclo-espiritual .calendar-header {
    color: var(--ciclo-espiritual);
}

.ciclo-espiritual .weekdays {
    border: 1px solid rgba(138, 74, 195, 0.2);
    background-color: rgba(138, 74, 195, 0.05);
    box-shadow: 0 2px 10px rgba(138, 74, 195, 0.1);
}

.ciclo-espiritual .weekdays span {
    color: var(--ciclo-espiritual);
}

.ciclo-espiritual .calendar-day.start-day {
    background-color: rgba(138, 74, 195, 0.5);
    box-shadow: 0 0 15px rgba(138, 74, 195, 0.4);
    color: #0a192f;
    border: 2px solid rgba(138, 74, 195, 0.8);
}

.ciclo-espiritual .calendar-day.cycle-day {
    border-color: rgba(138, 74, 195, 0.3);
}

.ciclo-emocional .card-left::before {
    background-color: var(--ciclo-emocional);
}

.ciclo-emocional .card-left::after {
    background: radial-gradient(circle, rgba(248, 196, 196, 0.08) 0%, rgba(248, 196, 196, 0) 70%);
}

.ciclo-profissional .card-left::before {
    background-color: var(--ciclo-profissional);
}

.ciclo-profissional .card-left::after {
    background: radial-gradient(circle, rgba(74, 141, 183, 0.08) 0%, rgba(74, 141, 183, 0) 70%);
}

.ciclo-amoroso .card-left::before {
    background-color: var(--ciclo-amoroso);
}

.ciclo-amoroso .card-left::after {
    background: radial-gradient(circle, rgba(183, 74, 74, 0.08) 0%, rgba(183, 74, 74, 0) 70%);
}

.ciclo-fisico .card-left::before {
    background-color: var(--ciclo-fisico);
}

.ciclo-fisico .card-left::after {
    background: radial-gradient(circle, rgba(122, 183, 74, 0.08) 0%, rgba(122, 183, 74, 0) 70%);
}

.ciclo-social .card-left::before {
    background-color: var(--ciclo-social);
}

.ciclo-social .card-left::after {
    background: radial-gradient(circle, rgba(196, 74, 155, 0.08) 0%, rgba(196, 74, 155, 0) 70%);
}

.ciclo-intelectual .card-left::before {
    background-color: var(--ciclo-intelectual);
}

.ciclo-intelectual .card-left::after {
    background: radial-gradient(circle, rgba(230, 195, 74, 0.08) 0%, rgba(230, 195, 74, 0) 70%);
}

.ciclo-material .card-left::before {
    background-color: var(--ciclo-material);
}

.ciclo-material .card-left::after {
    background: radial-gradient(circle, rgba(74, 195, 195, 0.08) 0%, rgba(74, 195, 195, 0) 70%);
}

.ciclo-espiritual .card-left::before {
    background-color: var(--ciclo-espiritual);
}

.ciclo-espiritual .card-left::after {
    background: radial-gradient(circle, rgba(138, 74, 195, 0.08) 0%, rgba(138, 74, 195, 0) 70%);
}

.card-left h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 5;
    color: #e0e0e0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 0;
}

.card-left h3 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #cccccc;
    position: relative;
    z-index: 5;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #555555, transparent);
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

/* Cores específicas para cada ciclo */
.ciclo-pessoal .card-left h2,
.ciclo-pessoal .card-left h3 {
    color: var(--ciclo-pessoal);
}

.ciclo-pessoal .divider {
    background: linear-gradient(90deg, var(--ciclo-pessoal), transparent);
}

.ciclo-emocional .card-left h2,
.ciclo-emocional .card-left h3 {
    color: var(--ciclo-emocional);
}

.ciclo-emocional .divider {
    background: linear-gradient(90deg, var(--ciclo-emocional), transparent);
}

.ciclo-profissional .card-left h2,
.ciclo-profissional .card-left h3 {
    color: var(--ciclo-profissional);
}

.ciclo-profissional .divider {
    background: linear-gradient(90deg, var(--ciclo-profissional), transparent);
}

.ciclo-amoroso .card-left h2,
.ciclo-amoroso .card-left h3 {
    color: var(--ciclo-amoroso);
}

.ciclo-amoroso .divider {
    background: linear-gradient(90deg, var(--ciclo-amoroso), transparent);
}

.ciclo-fisico .card-left h2,
.ciclo-fisico .card-left h3 {
    color: var(--ciclo-fisico);
}

.ciclo-fisico .divider {
    background: linear-gradient(90deg, var(--ciclo-fisico), transparent);
}

.ciclo-social .card-left h2,
.ciclo-social .card-left h3 {
    color: var(--ciclo-social);
}

.ciclo-social .divider {
    background: linear-gradient(90deg, var(--ciclo-social), transparent);
}

.ciclo-intelectual .card-left h2,
.ciclo-intelectual .card-left h3 {
    color: var(--ciclo-intelectual);
}

.ciclo-intelectual .divider {
    background: linear-gradient(90deg, var(--ciclo-intelectual), transparent);
}

.ciclo-material .card-left h2,
.ciclo-material .card-left h3 {
    color: var(--ciclo-material);
}

.ciclo-material .divider {
    background: linear-gradient(90deg, var(--ciclo-material), transparent);
}

.ciclo-espiritual .card-left h2,
.ciclo-espiritual .card-left h3 {
    color: var(--ciclo-espiritual);
}

.ciclo-espiritual .divider {
    background: linear-gradient(90deg, var(--ciclo-espiritual), transparent);
}

.cycle-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 40, 70, 0.7);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 15px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cycle-emoji {
    font-size: 18px;
    margin-right: 10px;
}

.cycle-number {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37 0%, #AA8C2C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
}

/* Cores específicas para cada ciclo */
.ciclo-pessoal .cycle-badge {
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.15) 0%, rgba(245, 245, 245, 0.05) 100%);
    border-color: rgba(245, 245, 245, 0.2);
}

.ciclo-pessoal .cycle-number {
    background: linear-gradient(135deg, var(--ciclo-pessoal) 0%, #d9d9d9 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.ciclo-emocional .cycle-badge {
    background: linear-gradient(135deg, rgba(248, 196, 196, 0.15) 0%, rgba(248, 196, 196, 0.05) 100%);
    border-color: rgba(248, 196, 196, 0.2);
}

.ciclo-emocional .cycle-number {
    background: linear-gradient(135deg, var(--ciclo-emocional) 0%, #e6a4a4 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.ciclo-profissional .cycle-badge {
    background: linear-gradient(135deg, rgba(74, 141, 183, 0.15) 0%, rgba(74, 141, 183, 0.05) 100%);
    border-color: rgba(74, 141, 183, 0.2);
}

.ciclo-profissional .cycle-number {
    background: linear-gradient(135deg, var(--ciclo-profissional) 0%, #3a7da7 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.ciclo-amoroso .cycle-badge {
    background: linear-gradient(135deg, rgba(183, 74, 74, 0.15) 0%, rgba(183, 74, 74, 0.05) 100%);
    border-color: rgba(183, 74, 74, 0.2);
}

.ciclo-amoroso .cycle-number {
    background: linear-gradient(135deg, var(--ciclo-amoroso) 0%, #a73a3a 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.ciclo-fisico .cycle-badge {
    background: linear-gradient(135deg, rgba(122, 183, 74, 0.15) 0%, rgba(122, 183, 74, 0.05) 100%);
    border-color: rgba(122, 183, 74, 0.2);
}

.ciclo-fisico .cycle-number {
    background: linear-gradient(135deg, var(--ciclo-fisico) 0%, #6aa73a 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.ciclo-social .cycle-badge {
    background: linear-gradient(135deg, rgba(196, 74, 155, 0.15) 0%, rgba(196, 74, 155, 0.05) 100%);
    border-color: rgba(196, 74, 155, 0.2);
}

.ciclo-social .cycle-number {
    background: linear-gradient(135deg, var(--ciclo-social) 0%, #b43a8b 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.ciclo-intelectual .cycle-badge {
    background: linear-gradient(135deg, rgba(230, 195, 74, 0.15) 0%, rgba(230, 195, 74, 0.05) 100%);
    border-color: rgba(230, 195, 74, 0.2);
}

.ciclo-intelectual .cycle-number {
    background: linear-gradient(135deg, var(--ciclo-intelectual) 0%, #d6b33a 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.ciclo-material .cycle-badge {
    background: linear-gradient(135deg, rgba(74, 195, 195, 0.15) 0%, rgba(74, 195, 195, 0.05) 100%);
    border-color: rgba(74, 195, 195, 0.2);
}

.ciclo-material .cycle-number {
    background: linear-gradient(135deg, var(--ciclo-material) 0%, #3ab3b3 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.ciclo-espiritual .cycle-badge {
    background: linear-gradient(135deg, rgba(138, 74, 195, 0.15) 0%, rgba(138, 74, 195, 0.05) 100%);
    border-color: rgba(138, 74, 195, 0.2);
}

.ciclo-espiritual .cycle-number {
    background: linear-gradient(135deg, var(--ciclo-espiritual) 0%, #7a3ab3 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.content-wrapper {
    position: relative;
    z-index: 5;
    background: linear-gradient(to top, rgba(13, 27, 51, 0.95) 0%, rgba(13, 27, 51, 0.95) 20%, rgba(13, 27, 51, 0.6) 60%, rgba(13, 27, 51, 0) 100%);
    padding: 25px;
    max-width: 100%;
    min-height: 600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: 0;
    height: 100%;
}

/* Gradientes específicos para o content-wrapper de cada ciclo */
.ciclo-pessoal .content-wrapper {
    background: linear-gradient(to top,
            rgba(13, 27, 51, 0.95) 0%,
            rgba(13, 27, 51, 0.95) 45%,
            rgba(245, 245, 245, 0.1) 80%,
            rgba(13, 27, 51, 0) 100%);
}

.ciclo-emocional .content-wrapper {
    background: linear-gradient(to top,
            rgba(13, 27, 51, 0.95) 0%,
            rgba(13, 27, 51, 0.95) 45%,
            rgba(248, 196, 196, 0.1) 80%,
            rgba(13, 27, 51, 0) 100%);
}

.ciclo-profissional .content-wrapper {
    background: linear-gradient(to top,
            rgba(13, 27, 51, 0.95) 0%,
            rgba(13, 27, 51, 0.95) 45%,
            rgba(74, 141, 183, 0.1) 80%,
            rgba(13, 27, 51, 0) 100%);
}

.ciclo-amoroso .content-wrapper {
    background: linear-gradient(to top,
            rgba(13, 27, 51, 0.95) 0%,
            rgba(13, 27, 51, 0.95) 45%,
            rgba(183, 74, 74, 0.15) 80%,
            rgba(13, 27, 51, 0) 100%);
}

.ciclo-fisico .content-wrapper {
    background: linear-gradient(to top,
            rgba(13, 27, 51, 0.95) 0%,
            rgba(13, 27, 51, 0.95) 45%,
            rgba(122, 183, 74, 0.1) 80%,
            rgba(13, 27, 51, 0) 100%);
}

.ciclo-social .content-wrapper {
    background: linear-gradient(to top,
            rgba(13, 27, 51, 0.95) 0%,
            rgba(13, 27, 51, 0.95) 45%,
            rgba(196, 74, 155, 0.1) 80%,
            rgba(13, 27, 51, 0) 100%);
}

.ciclo-intelectual .content-wrapper {
    background: linear-gradient(to top,
            rgba(13, 27, 51, 0.95) 0%,
            rgba(13, 27, 51, 0.95) 45%,
            rgba(230, 195, 74, 0.1) 80%,
            rgba(13, 27, 51, 0) 100%);
}

.ciclo-material .content-wrapper {
    background: linear-gradient(to top,
            rgba(13, 27, 51, 0.95) 0%,
            rgba(13, 27, 51, 0.95) 45%,
            rgba(74, 195, 195, 0.1) 80%,
            rgba(13, 27, 51, 0) 100%);
}

.ciclo-espiritual .content-wrapper {
    background: linear-gradient(to top,
            rgba(13, 27, 51, 0.95) 0%,
            rgba(13, 27, 51, 0.95) 45%,
            rgba(138, 74, 195, 0.1) 80%,
            rgba(13, 27, 51, 0) 100%);
}

.card-left p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
    position: relative;
    z-index: 5;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.card-right {
    align-content: space-around;
    flex: 1.2;
    padding: 50px 40px;
    background-color: #0f1e36;
    /* Tom de azul marinho mais escuro */
    position: relative;
    border-radius: 0 16px 16px 0;
}

.activities-title {
    font-size: 20px;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 20px;
    text-align: center;
}

/* Backgrounds específicos para o lado direito de cada ciclo */
.ciclo-pessoal .card-right {
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.05) 0%, rgba(245, 245, 245, 0.02) 100%), #0f1e36;
}

.ciclo-emocional .card-right {
    background: linear-gradient(135deg, rgba(248, 196, 196, 0.05) 0%, rgba(248, 196, 196, 0.02) 100%), #0f1e36;
}

.ciclo-profissional .card-right {
    background: linear-gradient(135deg, rgba(74, 141, 183, 0.05) 0%, rgba(74, 141, 183, 0.02) 100%), #0f1e36;
}

.ciclo-amoroso .card-right {
    background: linear-gradient(135deg, rgba(183, 74, 74, 0.12) 0%, rgba(183, 74, 74, 0.05) 100%), #0f1e36;
}

.ciclo-fisico .card-right {
    background: linear-gradient(135deg, rgba(122, 183, 74, 0.05) 0%, rgba(122, 183, 74, 0.02) 100%), #0f1e36;
}

.ciclo-social .card-right {
    background: linear-gradient(135deg, rgba(196, 74, 155, 0.05) 0%, rgba(196, 74, 155, 0.02) 100%), #0f1e36;
}

.ciclo-intelectual .card-right {
    background: linear-gradient(135deg, rgba(230, 195, 74, 0.05) 0%, rgba(230, 195, 74, 0.02) 100%), #0f1e36;
}

.ciclo-material .card-right {
    background: linear-gradient(135deg, rgba(74, 195, 195, 0.05) 0%, rgba(74, 195, 195, 0.02) 100%), #0f1e36;
}

.ciclo-espiritual .card-right {
    background: linear-gradient(135deg, rgba(138, 74, 195, 0.05) 0%, rgba(138, 74, 195, 0.02) 100%), #0f1e36;
}

.card-right::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50px;
    bottom: 50px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Separadores específicos para cada ciclo */
.ciclo-pessoal .card-right::before {
    background: linear-gradient(to bottom, transparent, rgba(245, 245, 245, 0.15), transparent);
}

.ciclo-emocional .card-right::before {
    background: linear-gradient(to bottom, transparent, rgba(248, 196, 196, 0.15), transparent);
}

.ciclo-profissional .card-right::before {
    background: linear-gradient(to bottom, transparent, rgba(74, 141, 183, 0.15), transparent);
}

.ciclo-amoroso .card-right::before {
    background: linear-gradient(to bottom, transparent, rgba(183, 74, 74, 0.15), transparent);
}

.ciclo-fisico .card-right::before {
    background: linear-gradient(to bottom, transparent, rgba(122, 183, 74, 0.15), transparent);
}

.ciclo-social .card-right::before {
    background: linear-gradient(to bottom, transparent, rgba(196, 74, 155, 0.15), transparent);
}

.ciclo-intelectual .card-right::before {
    background: linear-gradient(to bottom, transparent, rgba(230, 195, 74, 0.15), transparent);
}

.ciclo-material .card-right::before {
    background: linear-gradient(to bottom, transparent, rgba(74, 195, 195, 0.15), transparent);
}

.ciclo-espiritual .card-right::before {
    background: linear-gradient(to bottom, transparent, rgba(138, 74, 195, 0.15), transparent);
}

.achievements-list {
    list-style: none;
    counter-reset: item;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.achievements-list li {
    counter-increment: item;
    font-size: 15px;
    line-height: 1.4;
    background: #1d3251;
    /* Tom de azul marinho mais claro para as bolhas */
    border-radius: 12px;
    padding: 15px 20px 15px 45px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    flex: 0 1 calc(50% - 15px);
    display: flex;
    align-items: center;
    border: 1px solid #2a3e5c;
    color: #e0e0e0;
}

.achievements-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    background: #243a5f;
    /* Tom de azul marinho mais claro no hover */
}

/* Cores de borda específicas para as bolhas de cada ciclo no hover */
.ciclo-pessoal .achievements-list li:hover {
    border-color: var(--ciclo-pessoal);
}

.ciclo-emocional .achievements-list li:hover {
    border-color: var(--ciclo-emocional);
}

.ciclo-profissional .achievements-list li:hover {
    border-color: var(--ciclo-profissional);
}

.ciclo-amoroso .achievements-list li:hover {
    border-color: var(--ciclo-amoroso);
}

.ciclo-fisico .achievements-list li:hover {
    border-color: var(--ciclo-fisico);
}

.ciclo-social .achievements-list li:hover {
    border-color: var(--ciclo-social);
}

.ciclo-intelectual .achievements-list li:hover {
    border-color: var(--ciclo-intelectual);
}

.ciclo-material .achievements-list li:hover {
    border-color: var(--ciclo-material);
}

.ciclo-espiritual .achievements-list li:hover {
    border-color: var(--ciclo-espiritual);
}

.achievements-list li::before {
    content: counter(item);
    position: absolute;
    left: 10px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #D4AF37 0%, #AA8C2C 100%);
    border-radius: 50%;
    color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* Cores específicas para os números das bolhas de cada ciclo */
.ciclo-pessoal .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-pessoal) 0%, #d9d9d9 100%);
    color: #333;
}

.ciclo-emocional .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-emocional) 0%, #e6a4a4 100%);
    color: #333;
}

.ciclo-profissional .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-profissional) 0%, #3a7da7 100%);
}

.ciclo-amoroso .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-amoroso) 0%, #a73a3a 100%);
}

.ciclo-fisico .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-fisico) 0%, #6aa73a 100%);
}

.ciclo-social .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-social) 0%, #b43a8b 100%);
}

.ciclo-intelectual .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-intelectual) 0%, #d6b33a 100%);
    color: #333;
}

.ciclo-material .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-material) 0%, #3ab3b3 100%);
}

.ciclo-espiritual .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-espiritual) 0%, #7a3ab3 100%);
}

/* Esconder o botão "Ver todos" em telas maiores que 480px */
.view-all-btn {
    display: none;
}

/* Estilos para a observação sobre atividades */
.activities-note {
    font-size: 14px;
    color: #cccccc;
    font-style: italic;
    text-align: center;
    margin: 20px auto;
    max-width: 800px;
}

/* Estilos para os botões CTA */
.cta-button {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.cta-section {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: rgba(17, 34, 64, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(26, 75, 140, 0.2);
}

.cta-section p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* Estilos para a seção hero com depoimento */
.testimonial-hero {
    background-color: #0d1b33;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3NjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiIGlkPSJhIj48c3RvcCBzdG9wLWNvbG9yPSIjRkZGIiBzdG9wLW9wYWNpdHk9Ii4wNSIgb2Zmc2V0PSIwJSIvPjxzdG9wIHN0b3AtY29sb3I9IiNGRkYiIHN0b3Atb3BhY2l0eT0iMCIgb2Zmc2V0PSIxMDAlIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHBhdGggZD0iTTAgMGgxNDQwdjc2MEgweiIgZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJldmVub2RkIiBvcGFjaXR5PSIuMiIvPjwvc3ZnPg==');
    opacity: 0.1;
    z-index: 1;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.testimonial-content {
    flex: 1;
    padding-right: 60px;
    position: relative;
}

.testimonial-category {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-category .dot {
    width: 8px;
    height: 8px;
    background-color: #D4AF37;
    border-radius: 50%;
    margin-right: 10px;
}

.testimonial-category span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #D4AF37;
}

.testimonial-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.testimonial-title .highlight {
    color: #D4AF37;
}

.testimonial-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #cccccc;
}



.testimonial-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 500px;
}

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

.testimonial-image-container {
    flex: 1;
    position: relative;
    height: 700px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.testimonial-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 40px 30px 30px;
    color: white;
}

.quote-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.quote-author {
    font-size: 14px;
    opacity: 0.8;
}

.play-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Estilos base para o modal (escondido por padrão) */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    background-color: #112240;
    border-radius: 16px;
    max-width: 800px;
    margin: 30px auto;
    padding: 25px;
    position: relative;
    border: 1px solid #1d3b6b;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #1d3b6b;
    position: relative;
}

.modal-title {
    font-size: 22px;
    color: #e0e0e0;
    margin: 0;
    padding-right: 30px;
}

.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 24px;
    color: #e0e0e0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilos para os itens da lista no modal */
.modal-body .achievements-list {
    display: block;
    width: 100%;
}

.modal-body .achievements-list li {
    display: flex;
    margin-bottom: 12px;
    font-size: 15px;
}

/* Estilização dos números das atividades no modal */
.modal-body .achievements-list li::before {
    width: 30px;
    height: 30px;
    font-size: 15px;
    left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cores específicas para o modal de cada ciclo */
.modal-ciclo-1 .modal-content {
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
    border-color: rgba(245, 245, 245, 0.3);
}

.modal-ciclo-1 .modal-title span {
    color: var(--ciclo-pessoal);
}

.modal-ciclo-1 .modal-body .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-pessoal) 0%, #d9d9d9 100%);
    color: #333;
}

.modal-ciclo-2 .modal-content {
    background: linear-gradient(135deg, rgba(248, 196, 196, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
    border-color: rgba(248, 196, 196, 0.3);
}

.modal-ciclo-2 .modal-title span {
    color: var(--ciclo-emocional);
}

.modal-ciclo-2 .modal-body .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-emocional) 0%, #ffd9d9 100%);
    color: #333;
}

.modal-ciclo-3 .modal-content {
    background: linear-gradient(135deg, rgba(74, 141, 183, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
    border-color: rgba(74, 141, 183, 0.3);
}

.modal-ciclo-3 .modal-title span {
    color: var(--ciclo-profissional);
}

.modal-ciclo-3 .modal-body .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-profissional) 0%, #a8d1f0 100%);
    color: #333;
}

.modal-ciclo-4 .modal-content {
    background: linear-gradient(135deg, rgba(183, 74, 74, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
    border-color: rgba(183, 74, 74, 0.3);
}

.modal-ciclo-4 .modal-title span {
    color: var(--ciclo-amoroso);
}

.modal-ciclo-4 .modal-body .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-amoroso) 0%, #f0a8a8 100%);
    color: #333;
}

.modal-ciclo-5 .modal-content {
    background: linear-gradient(135deg, rgba(122, 183, 74, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
    border-color: rgba(122, 183, 74, 0.3);
}

.modal-ciclo-5 .modal-title span {
    color: var(--ciclo-fisico);
}

.modal-ciclo-5 .modal-body .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-fisico) 0%, #c5f0a8 100%);
    color: #333;
}

.modal-ciclo-6 .modal-content {
    background: linear-gradient(135deg, rgba(196, 74, 155, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
    border-color: rgba(196, 74, 155, 0.3);
}

.modal-ciclo-6 .modal-title span {
    color: var(--ciclo-social);
}

.modal-ciclo-6 .modal-body .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-social) 0%, #f0a8e0 100%);
    color: #333;
}

.modal-ciclo-7 .modal-content {
    background: linear-gradient(135deg, rgba(230, 195, 74, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
    border-color: rgba(230, 195, 74, 0.3);
}

.modal-ciclo-7 .modal-title span {
    color: var(--ciclo-intelectual);
}

.modal-ciclo-7 .modal-body .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-intelectual) 0%, #f0e8a8 100%);
    color: #333;
}

.modal-ciclo-8 .modal-content {
    background: linear-gradient(135deg, rgba(74, 195, 195, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
    border-color: rgba(74, 195, 195, 0.3);
}

.modal-ciclo-8 .modal-title span {
    color: var(--ciclo-material);
}

.modal-ciclo-8 .modal-body .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-material) 0%, #a8f0f0 100%);
    color: #333;
}

.modal-ciclo-9 .modal-content {
    background: linear-gradient(135deg, rgba(138, 74, 195, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
    border-color: rgba(138, 74, 195, 0.3);
}

.modal-ciclo-9 .modal-title span {
    color: var(--ciclo-espiritual);
}

.modal-ciclo-9 .modal-body .achievements-list li::before {
    background: linear-gradient(135deg, var(--ciclo-espiritual) 0%, #d1a8f0 100%);
    color: #333;
}

.modal-ciclo-1 .modal-header,
.modal-ciclo-2 .modal-header,
.modal-ciclo-3 .modal-header,
.modal-ciclo-4 .modal-header,
.modal-ciclo-5 .modal-header,
.modal-ciclo-6 .modal-header,
.modal-ciclo-7 .modal-header,
.modal-ciclo-8 .modal-header,
.modal-ciclo-9 .modal-header {
    border-bottom-color: inherit;
}

/* Estilo para telas de 1200px para baixo - versão desktop reduzida proporcionalmente */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
        padding: 50px 15px;
    }

    .page-header {
        margin-bottom: 50px;
    }

    .page-header h1 {
        font-size: 38px;
    }

    .page-header h1::after {
        width: 70px;
        bottom: -12px;
    }

    .listing-section {
        gap: 50px;
    }

    .listing-card {
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    }

    .card-left {
        min-height: 350px;
    }

    .cycle-calendar {
        padding-top: 8px;
    }

    .calendar-header {
        margin-bottom: 8px;
        margin-top: 8px;
    }

    .cycle-days {
        font-size: 12px;
    }

    .weekdays {
        width: 90%;
        margin-bottom: 6px;
        margin-top: 4px;
        padding: 5px 0;
    }

    .weekdays span {
        font-size: 11px;
        padding: 3px 0;
    }

    .calendar-days {
        width: 90%;
    }

    .calendar-day {
        width: 34px;
        height: 34px;
        font-size: 15px;
        margin: 2px auto;
    }

    .content-wrapper {
        padding: 22px;
    }

    .cycle-badge {
        padding: 7px 14px;
        margin-bottom: 12px;
    }

    .cycle-emoji {
        font-size: 20px;
        margin-right: 8px;
    }

    .cycle-number {
        font-size: 15px;
    }

    .card-left h2 {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .card-left h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .divider {
        width: 55px;
        margin-bottom: 18px;
    }

    .card-left p {
        font-size: 13px;
        line-height: 1.7;
    }

    .card-right {
        padding: 40px 35px;
    }

    .card-right::before {
        top: 40px;
        bottom: 40px;
    }

    .achievements-list {
        gap: 12px;
    }

    .achievements-list li {
        font-size: 14px;
        padding: 13px 18px 13px 42px;
        border-radius: 10px;
    }

    .achievements-list li::before {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
}

/* Estilo para telas de 992px para baixo - versão desktop ainda mais reduzida */
@media (max-width: 992px) and (min-width: 799px) {

    /* Header responsivo */
    .header-container {
        padding: 0 15px;
    }

    .main-nav {
        margin: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 13px;
    }

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

    /* Conteúdo */
    .container {
        max-width: 900px;
        padding: 40px 15px;
    }

    .page-header {
        margin-bottom: 40px;
    }

    .page-header h1 {
        font-size: 34px;
    }

    .page-header h1::after {
        width: 60px;
        bottom: -10px;
    }

    .listing-section {
        gap: 40px;
    }

    .listing-card {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    }

    .card-left {
        min-height: 320px;
        flex: 0.9;
    }

    .card-right {
        flex: 1.1;
        padding: 35px 30px;
    }

    .cycle-calendar {
        padding-top: 6px;
    }

    .calendar-header {
        margin-bottom: 6px;
        margin-top: 6px;
    }

    .cycle-days {
        font-size: 11px;
    }

    .weekdays {
        width: 85%;
        margin-bottom: 5px;
        margin-top: 3px;
        padding: 4px 0;
        max-width: 400px;
    }

    .weekdays span {
        font-size: 10px;
        padding: 2px 0;
    }

    .calendar-days {
        width: 85%;
        max-width: 400px;
    }

    .calendar-day {
        width: 30px;
        height: 30px;
        font-size: 14px;
        margin: 2px auto;
    }

    .content-wrapper {
        padding: 20px;
    }

    .cycle-badge {
        padding: 6px 12px;
        margin-bottom: 10px;
    }

    .cycle-emoji {
        font-size: 18px;
        margin-right: 7px;
    }

    .cycle-number {
        font-size: 14px;
    }

    .card-left h2 {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .card-left h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .divider {
        width: 50px;
        margin-bottom: 15px;
    }

    .card-left p {
        font-size: 12px;
        line-height: 1.6;
    }

    .card-right::before {
        top: 35px;
        bottom: 35px;
    }

    .achievements-list {
        gap: 10px;
    }

    .achievements-list li {
        font-size: 13px;
        padding: 12px 15px 12px 38px;
        border-radius: 10px;
        flex: 0 1 calc(50% - 10px);
    }

    .achievements-list li::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
        left: 8px;
    }
}

/* Estilo para telas de 768px para baixo - versão tablet */
@media (max-width: 798px) {

    /* Header responsivo */
    .main-header {
        padding: 12px 0;
    }

    .header-container {
        padding: 0 15px;
        justify-content: space-between;
    }

    .logo-image {
        height: 35px;
    }

    .main-nav {
        display: none;
        /* Esconder o menu em dispositivos móveis */
    }

    .header-buttons {
        display: flex;
    }

    /* Hero section */
    .hero-section {
        padding: 120px 0 60px;
    }

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

    .hero-description,
    .hero-description-secondary {
        font-size: 15px;
    }

    .hero-stats-card {
        right: 0;
        transform: rotate(5deg);
        margin-bottom: 30px;
    }
}

/* Estilo para telas de 480px para baixo - versão mobile */
@media (max-width: 480px) {

    /* Header responsivo */
    .main-header {
        padding: 10px 0;
    }

    .logo-image {
        height: 30px;
    }

    .header-buttons .btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .header-buttons .btn-outline {
        padding: 7px 10px;
    }

    /* Estilos responsivos para a seção "Para quem serve" */
    .for-who-section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
        padding: 0 15px;
    }

    /* Grid com 1 coluna em telas menores */
    .carousel-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
    }

    .profile-card {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 15px;
    }

    .carousel-wrapper {
        overflow: visible;
    }

    .carousel-container {
        padding: 0;
    }

    .carousel-controls {
        display: none;
    }

    .profile-content {
        padding: 15px;
    }

    .profile-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .profile-icon i {
        font-size: 18px;
    }

    .profile-header h3 {
        font-size: 16px;
        margin-right: 0;
    }

    /* Chart Container */
    .chart-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin: 0 auto 15px;
        position: relative;
    }

    /* Pie Chart */
    .radar-chart {
        width: 100%;
        height: 180px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .radar-canvas {
        width: 100%;
        height: 100%;
        max-width: 180px;
        margin: 0 auto;
    }

    /* Chart Legend */
    .chart-legend {
        width: 100%;
        min-height: 30px;
        margin-top: 10px;
        text-align: left;
        padding-left: 10px;
    }

    .profile-challenges h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .profile-challenges li {
        font-size: 12px;
        padding-left: 15px;
        margin-bottom: 5px;
        line-height: 1.4;
    }

    /* Hero section */
    .hero-section {
        padding: 100px 0 50px;
    }

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

    .hero-description,
    .hero-description-secondary {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-text {
        margin-left: 0;
    }
}

/* Estilos para a seção de preços */
.pricing-section {
    background-color: #0a192f;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3NjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiIGlkPSJhIj48c3RvcCBzdG9wLWNvbG9yPSIjRkZGIiBzdG9wLW9wYWNpdHk9Ii4wNSIgb2Zmc2V0PSIwJSIvPjxzdG9wIHN0b3AtY29sb3I9IiNGRkYiIHN0b3Atb3BhY2l0eT0iMCIgb2Zmc2V0PSIxMDAlIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHBhdGggZD0iTTAgMGgxNDQwdjc2MEgweiIgZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJldmVub2RkIiBvcGFjaXR5PSIuMiIvPjwvc3ZnPg==');
    opacity: 0.1;
    z-index: 1;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 60px;
}

.pricing-content {
    flex: 1;
    max-width: 500px;
}

.pricing-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.pricing-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.pricing-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #e0e0e0;
}

.pricing-card {
    flex: 1;
    max-width: 650px;
    background: rgba(17, 34, 64, 0.8);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(26, 75, 140, 0.3);
    backdrop-filter: blur(10px);
}

.pricing-slider {
    margin-bottom: 30px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #e0e0e0;
}

.slider-value {
    font-weight: 600;
    color: #D4AF37;
}

.slider-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
}

.slider-progress {
    position: absolute;
    height: 100%;
    width: 70%;
    background: linear-gradient(90deg, #1a4b8c 0%, #0d3b7c 100%);
    border-radius: 3px;
}

.pricing-options {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 30px;
}

.pricing-option {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #e0e0e0;
}

.pricing-option input {
    display: none;
}

.pricing-option.active {
    background: #D4AF37;
    color: white;
    font-weight: 600;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: white;
}

.period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item svg {
    margin-right: 15px;
}

.feature-item span {
    font-size: 14px;
    color: #e0e0e0;
}

.pricing-cta {
    width: 100%;
    background: linear-gradient(90deg, #D4AF37 0%, #AA8C2C 100%);
    border: none;
    color: white;
    padding: 15px 0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Responsividade para a seção de preços */
@media (max-width: 1200px) {
    .pricing-container {
        padding: 0 40px;
    }

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

@media (max-width: 992px) {
    .pricing-container {
        flex-direction: column;
        gap: 40px;
    }

    .pricing-content,
    .pricing-card {
        max-width: 100%;
    }

    .pricing-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-container {
        padding: 0 20px;
    }

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

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

    .price {
        font-size: 36px;
    }
}

/* Estilos para a seção de FAQ */
.faq-section {
    background-color: #0d1b33;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3NjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiIGlkPSJhIj48c3RvcCBzdG9wLWNvbG9yPSIjRkZGIiBzdG9wLW9wYWNpdHk9Ii4wNSIgb2Zmc2V0PSIwJSIvPjxzdG9wIHN0b3AtY29sb3I9IiNGRkYiIHN0b3Atb3BhY2l0eT0iMCIgb2Zmc2V0PSIxMDAlIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHBhdGggZD0iTTAgMGgxNDQwdjc2MEgweiIgZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJldmVub2RkIiBvcGFjaXR5PSIuMiIvPjwvc3ZnPg==');
    opacity: 0.1;
    z-index: 1;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.faq-description {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

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

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-category {
    font-size: 20px;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.faq-item {
    background: rgba(17, 34, 64, 0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(26, 75, 140, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question span {
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.faq-icon {
    min-width: 20px;
    height: 20px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

.faq-item.active .faq-question {
    background: rgba(26, 75, 140, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* Responsividade para a seção de FAQ */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .faq-description {
        font-size: 14px;
    }

    .faq-category {
        font-size: 18px;
    }

    .faq-question span {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}

/* Estilos para a seção de Features com Tabs */
.features-section {
    background-color: #0d1b33;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI3NjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiIGlkPSJhIj48c3RvcCBzdG9wLWNvbG9yPSIjRkZGIiBzdG9wLW9wYWNpdHk9Ii4wNSIgb2Zmc2V0PSIwJSIvPjxzdG9wIHN0b3AtY29sb3I9IiNGRkYiIHN0b3Atb3BhY2l0eT0iMCIgb2Zmc2V0PSIxMDAlIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHBhdGggZD0iTTAgMGgxNDQwdjc2MEgweiIgZmlsbD0idXJsKCNhKSIgZmlsbC1ydWxlPSJldmVub2RkIiBvcGFjaXR5PSIuMiIvPjwvc3ZnPg==');
    opacity: 0.1;
    z-index: 1;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.features-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.features-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.features-title-quem {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.features-description {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.features-tabs {
    margin-top: 40px;
}

.tabs-header {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(26, 75, 140, 0.3);
}

.tab-btn {
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a4b8c, #0d3b7c);
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: white;
}

.tab-btn.active {
    color: #D4AF37;
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content-wrapper {
    position: relative;
}

.tab-content {
    display: none;
    flex-direction: column;
    gap: 40px;
}

.tab-content.active {
    display: flex;
}

.tab-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
}

.tab-header-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tab-header-left h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.2;
}

.tab-header-left h4 {
    font-size: 28px;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 0;
    line-height: 1.2;
}

.tab-header-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tab-header-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
    opacity: 0.9;
}

.tab-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #1a4b8c, #0d3b7c);
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.tab-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(17, 34, 64, 0.6);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 75, 140, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e0e0;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Responsividade para a seção de Features */
@media (max-width: 992px) {
    .tab-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tab-right {
        order: -1;
    }

    .tab-image {
        height: 300px;
    }

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

    .tabs-header {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 60px 0;
    }

    .features-header {
        margin-bottom: 40px;
    }

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

    .features-description {
        font-size: 14px;
    }

    .tab-left h3 {
        font-size: 20px;
    }

    .tab-left p {
        font-size: 14px;
    }

    .tab-image {
        height: 250px;
    }
}

/* Estilos responsivos para o portal de ciclos */

/* Telas grandes e médias */
@media (max-width: 1200px) {

    /* Estilos para o header principal */
    .main-header {
        padding: 12px 0;
    }

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

    .logo-text {
        font-size: 22px;
    }

    .logo-tagline {
        font-size: 11px;
    }

    .main-nav {
        margin: 0 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 13px;
    }

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

    /* Estilos para a seção hero */
    .hero-section {
        padding: 100px 0 70px;
    }

    .hero-container {
        padding: 0 15px;
    }

    .hero-content {
        max-width: 500px;
    }

    .hero-tagline {
        font-size: 11px;
        padding: 7px 14px;
    }

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

    .hero-description {
        font-size: 15px;
    }

    .hero-video {
        max-width: 500px;
    }

    /* Estilos responsivos para a seção hero com depoimento */
    .testimonial-hero {
        padding: 60px 0;
    }

    .testimonial-container {
        padding: 0 15px;
    }

    .testimonial-content {
        padding-right: 40px;
    }

    .testimonial-title {
        font-size: 40px;
    }

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

    .testimonial-description {
        font-size: 15px;
    }

    .testimonial-image-container {
        height: 450px;
    }
}

/* Tablets e dispositivos médios - layout mobile */
@media (max-width: 798px) {

    /* Estilos para o header principal */
    .main-header {
        padding: 10px 0;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .logo {
        flex: 0 0 auto;
    }

    /* Removido estilos do menu que conflitam com o menu mobile em styles.css */

    .header-buttons {
        flex: 0 0 auto;
    }

    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    /* Estilos responsivos para a seção "Para quem serve" */
    .for-who-section {
        padding: 50px 0;
    }

    .carousel-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .profile-card {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .profile-content {
        padding: 20px;
    }

    .profile-header h3 {
        font-size: 18px;
    }

    .profile-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .radar-chart {
        height: 160px;
        max-width: 160px;
        margin: 0 auto 20px;
    }

    .profile-challenges h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .profile-challenges li {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Estilos para a seção hero */
    .hero-section {
        padding: 90px 0 60px;
    }

    .hero-container {
        flex-direction: column;
        gap: 0;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-tagline {
        font-size: 10px;
    }

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

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        flex-direction: row;
    }

    .hero-stats {
        margin: 0 auto;
    }

    .hero-video {
        max-width: 100%;
    }

    /* Estilos responsivos para a seção hero com depoimento */
    .testimonial-hero {
        padding: 50px 0;
    }

    .testimonial-container {
        flex-direction: column;
        gap: 40px;
    }

    .testimonial-content {
        padding-right: 0;
        text-align: center;
    }

    .testimonial-category {
        justify-content: center;
    }

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

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



    .testimonial-description {
        font-size: 14px;
        margin: 0 auto 30px;
    }

    .testimonial-buttons {
        justify-content: center;
    }

    .testimonial-image-container {
        height: 400px;
        width: 100%;
    }

    /* Estilos para o cabeçalho da página */
    .page-header {
        margin-bottom: 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    /* Estilos para a seção de informações */
    .info-section {
        margin-bottom: 40px;
    }

    .section-header {
        margin-bottom: 20px;
        margin-top: 30px;
    }

    .section-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .section-divider {
        width: 50px;
    }

    .section-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-number {
        width: 45px;
        height: 45px;
        font-size: 16px;
        margin-right: 15px;
    }

    .feature-text {
        font-size: 15px;
        line-height: 1.5;
    }

    /* Layout geral */
    .listing-card {
        flex-direction: column;
    }

    .card-left,
    .card-right {
        width: 100%;
    }

    /* Card esquerdo */
    .card-left {
        border-right: none;
        border-bottom: 1px solid #1d3b6b;
        min-height: 400px;
        position: relative;
        border-radius: 16px 16px 0 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        /* Alterado para manter consistência com content-wrapper */
        width: 100%;
        /* Garantir largura total em dispositivos móveis */
    }

    /* Manter os efeitos de brilho */
    .card-left::before,
    .card-left::after {
        content: '';
        position: absolute;
        z-index: 1;
    }

    .card-left::before {
        top: -50px;
        left: -50px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        filter: blur(40px);
        opacity: 0.1;
    }

    .card-left::after {
        bottom: 0;
        right: 0;
        width: 180px;
        height: 180px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 50%;
        transform: translate(50%, 50%);
    }

    /* Calendário */
    .cycle-calendar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 1;
        pointer-events: none;
    }

    .calendar-header {
        margin-top: 15px;
        margin-bottom: 5px;
    }

    .cycle-days {
        font-size: 12px;
    }

    .weekdays {
        width: 90%;
        padding: 5px 0;
        margin-bottom: 10px;
    }

    .weekdays span {
        font-size: 13px;
        padding: 3px 0;
    }

    .calendar-days {
        width: 90%;
        grid-gap: 3px;
    }

    .calendar-day {
        width: calc(100% - 2px);
        height: 0;
        padding-bottom: calc(100% - 2px);
        font-size: 14px;
        margin: 1px auto;
        position: relative;
        /* Garantir que a posição seja mantida */
        border-radius: 50%;
        /* Manter o formato circular */
    }

    .calendar-day.start-day {
        transform: scale(1.15);
    }

    /* Conteúdo */
    .content-wrapper {
        height: 540px;
        padding: 200px 20px 40px 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    /* Gradientes específicos para o content-wrapper em cada ciclo */
    .ciclo-pessoal .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(245, 245, 245, 0.1) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    .ciclo-emocional .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(248, 196, 196, 0.1) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    .ciclo-profissional .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(74, 141, 183, 0.1) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    .ciclo-amoroso .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(183, 74, 74, 0.15) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    .ciclo-fisico .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(122, 183, 74, 0.1) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    .ciclo-social .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(196, 74, 155, 0.1) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    .ciclo-intelectual .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(230, 195, 74, 0.1) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    .ciclo-material .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(74, 195, 195, 0.1) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    .ciclo-espiritual .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(138, 74, 195, 0.1) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    /* Badge do ciclo */
    .cycle-badge {
        padding: 6px 12px;
        margin-bottom: 12px;
        border-radius: 20px;
    }

    .cycle-emoji {
        font-size: 18px;
        margin-right: 6px;
    }

    .cycle-number {
        font-size: 14px;
        letter-spacing: 0.2px;
    }

    /* Títulos e texto */
    .card-left h2 {
        font-size: 24px;
        margin-top: 4px;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .card-left h3 {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .divider {
        width: 45px;
        margin-bottom: 12px;
    }

    .card-left p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    /* Card direito */
    .card-right {
        border-radius: 0 0 16px 16px;
        padding: 10px 0px 10px 0px;
    }

    .card-right::before {
        display: none;
    }

    /* Lista de conquistas */
    .achievements-list {
        padding: 10px;
        gap: 15px;
    }

    .achievements-list li {
        flex: 0 1 calc(50% - 15px);
        font-size: 14px;
    }
}

/* Dispositivos móveis - Este é o último breakpoint, todos os dispositivos menores terão o mesmo estilo */
@media (max-width: 480px) {

    /* Estilos para o header principal */
    .main-header {
        padding: 8px 0;
    }

    .header-container {
        padding: 0 10px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-tagline {
        font-size: 10px;
    }

    /* Removido estilos do menu que conflitam com o menu mobile em styles.css */

    .header-buttons .btn {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* Estilos responsivos para a seção "Para quem serve" */
    .for-who-section,
    .shed-info-section {
        padding: 40px 0;
    }

    .shed-info-header h2 {
        font-size: 28px;
    }

    .shed-info-description {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
        padding: 0px;
    }

    /* Grid com 1 coluna em telas menores */
    .carousel-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
    }

    .profile-card {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 15px;
    }

    .carousel-wrapper {
        overflow: visible;
    }

    .carousel-container {
        padding: 0;
    }

    .carousel-controls {
        display: none;
    }

    .profile-content {
        padding: 15px;
    }

    .profile-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .profile-icon i {
        font-size: 18px;
    }

    .profile-header h3 {
        font-size: 16px;
        margin-right: 0;
    }

    .radar-chart {
        height: 140px;
        max-width: 140px;
        margin: 0 auto 15px;
    }

    .profile-challenges h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .profile-challenges li {
        font-size: 12px;
        padding-left: 15px;
        margin-bottom: 5px;
        line-height: 1.4;
    }

    /* Estilos para a seção hero */
    .hero-section {
        padding: 120px 0 50px;
    }

    .hero-container {
        gap: 0;
    }

    .hero-tagline {
        font-size: 9px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }

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

    .hero-description {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        margin-bottom: 30px;
    }

    .btn-text {
        margin-left: 10px;
    }

    .hero-stats {
        max-width: 100%;
        padding: 12px 15px;
    }

    .stats-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .stats-text {
        font-size: 12px;
    }

    .stats-number {
        font-size: 14px;
    }

    .stats-detail {
        font-size: 10px;
    }

    /* Estilos responsivos para a seção hero com depoimento */
    .testimonial-hero {
        padding: 40px 0;
    }

    .testimonial-container {
        gap: 30px;
    }

    .testimonial-category {
        margin-bottom: 15px;
    }

    .testimonial-category span {
        font-size: 12px;
    }

    .testimonial-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .testimonial-subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }



    .testimonial-description {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .testimonial-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .testimonial-image-container {
        height: 350px;
    }

    .quote-text {
        font-size: 18px;
    }

    .quote-author {
        font-size: 12px;
    }

    .play-button {
        width: 40px;
        height: 40px;
    }

    /* Estilos para o cabeçalho da página */
    .page-header {
        margin-bottom: 30px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header h1::after {
        width: 60px;
        height: 2px;
        bottom: -10px;
    }

    /* Estilos para a seção de informações */
    .info-section {
        margin-bottom: 30px;
    }

    .section-header {
        margin-bottom: 15px;
        margin-top: 25px;
    }

    .section-header h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .section-divider {
        width: 45px;
        height: 2px;
    }

    .section-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .features-grid {
        gap: 15px;
        margin-top: 20px;
    }

    .feature-item {
        padding: 5px 0;
    }

    .feature-number {
        width: 40px;
        height: 40px;
        font-size: 15px;
        margin-right: 12px;
    }

    .feature-text {
        font-size: 14px;
        line-height: 1.4;
    }

    /* Calendário */
    .cycle-calendar {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 1;
        pointer-events: none;
    }

    .calendar-header {
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .cycle-days {
        font-size: 11px;
    }

    .weekdays {
        width: 92%;
        padding: 4px 0;
        margin-bottom: 8px;
    }

    .weekdays span {
        font-size: 12px;
        padding: 2px 0;
    }

    .calendar-days {
        width: 92%;
        grid-gap: 2px;
    }

    .calendar-day {
        width: calc(100% - 2px);
        height: 0;
        padding-bottom: calc(100% - 2px);
        font-size: 13px;
        margin: 1px auto;
        position: relative;
        border-radius: 50%;
    }

    .calendar-day.start-day {
        transform: scale(1.12);
    }

    /* Conteúdo */
    .content-wrapper {
        height: 468px;
        padding: 180px 18px 35px 18px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        position: relative;
        z-index: 5;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Gradientes específicos para o content-wrapper em cada ciclo */
    .ciclo-pessoal .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(245, 245, 245, 0.1) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    .ciclo-emocional .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(248, 196, 196, 0.1) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    .ciclo-profissional .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(74, 141, 183, 0.1) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    .ciclo-amoroso .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(183, 74, 74, 0.15) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    .ciclo-fisico .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(122, 183, 74, 0.1) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    .ciclo-social .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(196, 74, 155, 0.1) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    .ciclo-intelectual .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(230, 195, 74, 0.1) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    .ciclo-material .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(74, 195, 195, 0.1) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    .ciclo-espiritual .content-wrapper {
        background: linear-gradient(to top,
                rgba(13, 27, 51, 0.95) 0%,
                rgba(13, 27, 51, 0.95) 40%,
                rgba(138, 74, 195, 0.1) 90%,
                rgba(13, 27, 51, 0.7) 100%);
    }

    /* Badge do ciclo */
    .cycle-badge {
        padding: 5px 10px;
        margin-bottom: 10px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        position: relative;
        z-index: 5;
    }

    .cycle-emoji {
        font-size: 16px;
        margin-right: 5px;
    }

    .cycle-number {
        font-size: 13px;
        letter-spacing: 0.2px;
        font-weight: 700;
        background-clip: text;
        -webkit-background-clip: text;
    }

    /* Títulos e texto */
    .card-left h2 {
        font-size: 22px;
        margin-top: 3px;
        margin-bottom: 6px;
        line-height: 1.2;
    }

    .card-left h3 {
        font-size: 13px;
        margin-bottom: 8px;
        line-height: 1.3;
        opacity: 0.9;
    }

    .divider {
        width: 40px;
        margin-bottom: 10px;
    }

    .card-left p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
        opacity: 0.95;
    }

    /* Card direito */
    .card-right {
        border-radius: 0 0 16px 16px;
        padding: 10px 0px 10px 0px;
    }

    .card-right::before {
        display: none;
    }

    /* Lista de conquistas */
    .achievements-list {
        gap: 10px;
        padding: 5px;
    }

    .achievements-list li {
        font-size: 13px;
        padding: 10px 12px 10px 38px;
        line-height: 1.4;
        flex: 0 1 100%;
    }

    .achievements-list li::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
        left: 8px;
    }

    /* Esconder itens após o terceiro */
    .achievements-list li:nth-child(n+4) {
        display: none;
    }

    /* Botão Ver Todos - exibido apenas em telas menores que 480px */
    .view-all-btn {
        display: block;
        margin: 15px auto 5px;
        background: linear-gradient(135deg, #1d3251, #0f1e36);
        color: #e0e0e0;
        border: 1px solid #2a3e5c;
        border-radius: 10px;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    /* Ajustes do modal para dispositivos móveis */
    .modal-content {
        max-width: 90%;
        padding: 20px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-body .achievements-list li {
        display: flex;
    }

    /* Estilização dos números das atividades no modal */
    .modal-body .achievements-list li::before {
        width: 28px;
        height: 28px;
        font-size: 14px;
        left: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Cores específicas para o modal de cada ciclo */
    .modal-ciclo-1 .modal-content {
        background: linear-gradient(135deg, rgba(245, 245, 245, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
        border-color: rgba(245, 245, 245, 0.3);
    }

    .modal-ciclo-1 .modal-title span {
        color: var(--ciclo-pessoal);
    }

    .modal-ciclo-1 .modal-body .achievements-list li::before {
        background: linear-gradient(135deg, var(--ciclo-pessoal) 0%, #d9d9d9 100%);
        color: #333;
    }

    .modal-ciclo-2 .modal-content {
        background: linear-gradient(135deg, rgba(248, 196, 196, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
        border-color: rgba(248, 196, 196, 0.3);
    }

    .modal-ciclo-2 .modal-title span {
        color: var(--ciclo-emocional);
    }

    .modal-ciclo-2 .modal-body .achievements-list li::before {
        background: linear-gradient(135deg, var(--ciclo-emocional) 0%, #ffd9d9 100%);
        color: #333;
    }

    .modal-ciclo-3 .modal-content {
        background: linear-gradient(135deg, rgba(74, 141, 183, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
        border-color: rgba(74, 141, 183, 0.3);
    }

    .modal-ciclo-3 .modal-title span {
        color: var(--ciclo-profissional);
    }

    .modal-ciclo-3 .modal-body .achievements-list li::before {
        background: linear-gradient(135deg, var(--ciclo-profissional) 0%, #a8d1f0 100%);
        color: #333;
    }

    .modal-ciclo-4 .modal-content {
        background: linear-gradient(135deg, rgba(183, 74, 74, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
        border-color: rgba(183, 74, 74, 0.3);
    }

    .modal-ciclo-4 .modal-title span {
        color: var(--ciclo-amoroso);
    }

    .modal-ciclo-4 .modal-body .achievements-list li::before {
        background: linear-gradient(135deg, var(--ciclo-amoroso) 0%, #f0a8a8 100%);
        color: #333;
    }

    .modal-ciclo-5 .modal-content {
        background: linear-gradient(135deg, rgba(122, 183, 74, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
        border-color: rgba(122, 183, 74, 0.3);
    }

    .modal-ciclo-5 .modal-title span {
        color: var(--ciclo-fisico);
    }

    .modal-ciclo-5 .modal-body .achievements-list li::before {
        background: linear-gradient(135deg, var(--ciclo-fisico) 0%, #c5f0a8 100%);
        color: #333;
    }

    .modal-ciclo-6 .modal-content {
        background: linear-gradient(135deg, rgba(196, 74, 155, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
        border-color: rgba(196, 74, 155, 0.3);
    }

    .modal-ciclo-6 .modal-title span {
        color: var(--ciclo-social);
    }

    .modal-ciclo-6 .modal-body .achievements-list li::before {
        background: linear-gradient(135deg, var(--ciclo-social) 0%, #f0a8e0 100%);
        color: #333;
    }

    .modal-ciclo-7 .modal-content {
        background: linear-gradient(135deg, rgba(230, 195, 74, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
        border-color: rgba(230, 195, 74, 0.3);
    }

    .modal-ciclo-7 .modal-title span {
        color: var(--ciclo-intelectual);
    }

    .modal-ciclo-7 .modal-body .achievements-list li::before {
        background: linear-gradient(135deg, var(--ciclo-intelectual) 0%, #f0e8a8 100%);
        color: #333;
    }

    .modal-ciclo-8 .modal-content {
        background: linear-gradient(135deg, rgba(74, 195, 195, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
        border-color: rgba(74, 195, 195, 0.3);
    }

    .modal-ciclo-8 .modal-title span {
        color: var(--ciclo-material);
    }

    .modal-ciclo-8 .modal-body .achievements-list li::before {
        background: linear-gradient(135deg, var(--ciclo-material) 0%, #a8f0f0 100%);
        color: #333;
    }

    .modal-ciclo-9 .modal-content {
        background: linear-gradient(135deg, rgba(138, 74, 195, 0.05) 0%, rgba(13, 27, 51, 0.95) 100%);
        border-color: rgba(138, 74, 195, 0.3);
    }

    .modal-ciclo-9 .modal-title span {
        color: var(--ciclo-espiritual);
    }

    .modal-ciclo-9 .modal-body .achievements-list li::before {
        background: linear-gradient(135deg, var(--ciclo-espiritual) 0%, #d1a8f0 100%);
        color: #333;
    }

    .modal-ciclo-1 .modal-header,
    .modal-ciclo-2 .modal-header,
    .modal-ciclo-3 .modal-header,
    .modal-ciclo-4 .modal-header,
    .modal-ciclo-5 .modal-header,
    .modal-ciclo-6 .modal-header,
    .modal-ciclo-7 .modal-header,
    .modal-ciclo-8 .modal-header,
    .modal-ciclo-9 .modal-header {
        border-bottom-color: inherit;
    }
}

/* Ajustes específicos para iPhone 14 Pro (346 x 767px) e dispositivos similares */
@media (max-width: 375px) {

    /* Estilos para o cabeçalho */
    .page-header {
        margin-bottom: 25px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    /* Estilos para a seção de informações */
    .info-section {
        margin-bottom: 25px;
    }

    .section-header {
        margin-bottom: 12px;
        margin-top: 20px;
    }

    .section-header h2 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .section-divider {
        width: 40px;
        height: 2px;
    }

    .section-description {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .features-grid {
        gap: 12px;
        margin-top: 15px;
    }

    .feature-item {
        padding: 3px 0;
    }

    .feature-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
        margin-right: 10px;
    }

    .feature-text {
        font-size: 13px;
        line-height: 1.3;
    }

    /* Ajustes finos para o calendário */
    .cycle-calendar {
        top: 0;
    }

    .calendar-header {
        margin-top: 8px;
    }

    .cycle-days {
        font-size: 10px;
    }

    .weekdays {
        width: 94%;
        padding: 3px 0;
        margin-bottom: 6px;
    }

    .weekdays span {
        font-size: 11px;
        padding: 2px 0;
    }

    .calendar-days {
        width: 94%;
        grid-gap: 1px;
    }

    .calendar-day {
        font-size: 12px;
    }

    .calendar-day.start-day {
        transform: scale(1.1);
    }

    /* Ajustes para a seção hero com depoimento */
    .testimonial-hero {
        padding: 30px 0;
    }

    .testimonial-container {
        gap: 25px;
    }

    .testimonial-title {
        font-size: 24px;
    }

    .testimonial-subtitle {
        font-size: 16px;
    }


    .testimonial-description {
        font-size: 12px;
    }

    .testimonial-image-container {
        height: 300px;
    }

    .quote-text {
        font-size: 16px;
    }

    .play-button {
        width: 36px;
        height: 36px;
    }

    /* Ajustes de conteúdo */
    .content-wrapper {
        padding: 170px 15px 30px 15px;
    }

    /* Badge do ciclo */
    .cycle-badge {
        padding: 4px 8px;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        position: relative;
        z-index: 5;
        border-radius: 16px;
    }

    .cycle-emoji {
        font-size: 15px;
        margin-right: 4px;
    }

    .cycle-number {
        font-size: 12px;
        font-weight: 700;
        background-clip: text;
        -webkit-background-clip: text;
    }

    /* Títulos e texto */
    .card-left h2 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .card-left h3 {
        font-size: 12px;
        margin-bottom: 7px;
    }

    .divider {
        width: 35px;
        margin-bottom: 8px;
    }

    .card-left p {
        font-size: 12px;
        line-height: 1.4;
    }

    /* Ajustes da lista de conquistas */
    .achievements-list li {
        font-size: 12px;
        padding: 8px 10px 8px 34px;
    }

    .achievements-list li::before {
        width: 22px;
        height: 22px;
        font-size: 11px;
        left: 6px;
    }

    /* Botão Ver Todos */
    .view-all-btn {
        padding: 8px 16px;
        font-size: 13px;
        margin: 12px auto 5px;
    }
}

/* Responsividade para a seção de Features */
@media (max-width: 1200px) {
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tab-header-left h3 {
        font-size: 28px;
    }

    .tab-header-left h4 {
        font-size: 24px;
    }

    .tab-header-right p {
        font-size: 15px;
    }

    .feature-card h5 {
        font-size: 17px;
    }

    .feature-card p {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .tab-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tab-header-left h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .tab-header-left h4 {
        font-size: 20px;
    }

    .tab-header-right p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .tab-cta {
        font-size: 13px;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .tab-buttons {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .tab-btn {
        padding: 10px 15px;
        font-size: 13px;
        flex: 0 0 calc(50% - 10px);
        text-align: center;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }

    .feature-card h5 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .tab-buttons {
        gap: 8px;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 12px;
        flex: 0 0 calc(50% - 8px);
    }

    .tab-header-left h3 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .tab-header-left h4 {
        font-size: 18px;
    }

    .tab-header-right p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .tab-cta {
        font-size: 12px;
        padding: 8px 16px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 12px;
    }

    .feature-card h5 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .feature-card p {
        font-size: 12px;
        line-height: 1.4;
    }
}

@media (max-width: 375px) {
    .tab-buttons {
        gap: 6px;
    }

    .tab-btn {
        padding: 7px 10px;
        font-size: 11px;
        flex: 0 0 calc(50% - 6px);
    }

    .tab-header-left h3 {
        font-size: 20px;
    }

    .tab-header-left h4 {
        font-size: 16px;
    }

    .tab-header-right p {
        font-size: 12px;
    }

    .feature-card {
        padding: 12px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 10px;
    }
}

/*
 * IMPORTANTE: Não adicionar media queries para telas menores que 375px.
 * Todos os dispositivos com largura menor que 375px devem usar exatamente os mesmos estilos
 * definidos na media query @media (max-width: 375px) acima.
 */




/* Responsividade para os cards das atividades */
@media (max-width: 768px) {
    .listing-card {
        flex-direction: column;
        width: 100% !important;
    }

    .card-left,
    .card-right {
        width: 100% !important;
        padding: 20px;
        border-radius: 0;
    }

    .card-right {
        border-left: none;
    }

    .listing-section {
        padding: 20px;
    }

    .video-container {
        position: relative;
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .video-container iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

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

        .container {
            flex-direction: column;
            align-items: center;
        }

        /* Adapte suas seções específicas aqui */
    }

    .quem-te-guia-section {
        padding: 4rem 2rem;
        background-color: #0c1a2c;
    }

    .quem-te-guia-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
        flex-wrap: wrap;
    }

    .quem-te-guia-imagem img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    }

    .quem-te-guia-texto {
        flex: 1;
        min-width: 320px;
        color: #fff;
        max-width: 600px;
    }

    .quem-te-guia-texto h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #ffffff;
    }

    .quem-te-guia-texto p {
        margin-bottom: 1.2rem;
        font-size: 1rem;
        line-height: 1.7;
    }


}

.quem-te-guia-section {
    padding: 60px 20px;
    background-color: #0f1b2d;
    color: #ffffff;
}

.quem-te-guia-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.quem-te-guia-img {
    flex: 1 1 400px;
}

.quem-te-guia-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.quem-te-guia-text {
    flex: 1 1 500px;
}

.quem-te-guia-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.quem-te-guia-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .quem-te-guia-container {
        flex-direction: column;
        text-align: center;
    }

    .quem-te-guia-text {
        max-width: 100%;
    }

    .quem-te-guia-img img {
        max-width: 100%;
    }
}

.precos-section {
    padding: 4rem 1rem;
    background: #0d1b2a;
    color: #fff;
    text-align: center;
}

.precos-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.precos-header p {
    font-size: 1rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.precos-planos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.plano-box {
    background: #1b263b;
    border-radius: 12px;
    padding: 2rem;
    width: 420px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.plano-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plano-box ul {
    text-align: left;
    padding-left: 0;
    list-style: none;
    margin-bottom: 1.5rem;
}

.plano-box ul li {
    margin-bottom: 0.5rem;
}

.plano-box .preco {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #f1c40f;
}

.plano-box .preco span {
    font-size: 1rem;
    color: #ccc;
}

.botao-shed {
    background: #f1c40f;
    color: #000;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease;
}

.botao-shed:hover {
    background: #e0b90d;
}