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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Paleta de cores baseada na imagem anexa */
:root {
    --primary-cream: #f5f1e8;
    --secondary-mint: #e8f5f0;
    --accent-sage: #a8d5ba;
    --deep-teal: #4a7c59;
    --light-teal: #6ba777;
    --gold-accent: #d4af37;
    --soft-gold: #f4d03f;
    --dark-green: #2c5530;
    --text-muted: #5a6c5d;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 2px 30px var(--shadow);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-green);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--deep-teal);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--deep-teal), var(--light-teal));
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-green);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-cream) 0%, var(--secondary-mint) 50%, var(--accent-sage) 100%);
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 213, 186, 0.3), rgba(107, 167, 119, 0.2));
    animation: float 8s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

.floating-mandala {
    position: absolute;
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23a8d5ba" stroke-width="2" opacity="0.5"/><circle cx="50" cy="50" r="25" fill="none" stroke="%236ba777" stroke-width="1.5" opacity="0.7"/><circle cx="50" cy="50" r="10" fill="%234a7c59" opacity="0.3"/></svg>') center/contain no-repeat;
    animation: rotate 20s linear infinite;
}

.mandala-1 {
    top: 30%;
    left: 15%;
    animation-delay: 0s;
}

.mandala-2 {
    bottom: 40%;
    right: 20%;
    animation-delay: 10s;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    z-index: 2;
    position: relative;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--dark-green), var(--deep-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--deep-teal);
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-logo-container {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 15px 35px rgba(74, 124, 89, 0.3));
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(168, 213, 186, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--deep-teal), var(--light-teal));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--gold-accent), var(--soft-gold));
    color: var(--dark-green);
}

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

.btn-canal {
    background: linear-gradient(135deg, var(--light-teal), var(--deep-teal));
    color: white;
    padding: 10px 20px;
    font-size: 0.9rem;
}

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

/* Seções */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-green);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-teal), var(--light-teal));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-style: italic;
}

/* Canais Section */
.canais {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--primary-cream) 100%);
}

.canais-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-container {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding: 2rem;
}

.canal-card {
    min-width: 350px;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(168, 213, 186, 0.2);
}

.canal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-teal), var(--light-teal));
}

.canal-card.featured {
    background: linear-gradient(135deg, var(--secondary-mint), white);
    transform: scale(1.05);
    border: 2px solid var(--accent-sage);
}

.canal-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(74, 124, 89, 0.2);
}

.canal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--deep-teal), var(--light-teal));
    color: white;
    font-size: 1.5rem;
}

.canal-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.canal-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.canal-content h3 {
    font-size: 1.4rem;
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.canal-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.canal-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, var(--accent-sage), var(--light-teal));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.canal-preview {
    margin-top: 1.5rem;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.tarot-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 10px;
}

.card {
    width: 30px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-accent), var(--soft-gold));
    border-radius: 5px;
    position: relative;
    animation: cardFloat 3s ease-in-out infinite;
}

.card-1 { animation-delay: 0s; }
.card-2 { animation-delay: 0.5s; }
.card-3 { animation-delay: 1s; }

.video-preview {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-button {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0000;
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-chat {
    background: #e5ddd5;
    height: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
}

.chat-bubble {
    background: #dcf8c6;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #333;
    max-width: 80%;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--deep-teal);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px var(--shadow);
}

.carousel-btn:hover {
    background: var(--deep-teal);
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

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

.dot.active {
    background: var(--deep-teal);
    transform: scale(1.2);
}

/* Terapias Section */
.terapias {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-mint) 0%, var(--white) 100%);
}

.terapia-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.category-title i {
    color: var(--deep-teal);
    font-size: 1.8rem;
}

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

.terapia-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 213, 186, 0.2);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.terapia-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(74, 124, 89, 0.2);
}

.terapia-header {
    padding: 2rem;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid rgba(168, 213, 186, 0.2);
    transition: all 0.3s ease;
}

.terapia-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--deep-teal), var(--light-teal));
}

.terapia-header:hover {
    background: rgba(168, 213, 186, 0.1);
}

.terapia-icon {
    font-size: 2.5rem;
    color: var(--deep-teal);
    margin-bottom: 1rem;
    display: block;
}

.terapia-header h4 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.expand-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: var(--deep-teal);
}

.terapia-header.expanded .expand-icon {
    transform: rotate(180deg);
}

.terapia-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    background: linear-gradient(135deg, var(--primary-cream), var(--secondary-mint));
}

.terapia-content.expanded {
    max-height: 2000px;
}

.terapia-content-inner {
    padding: 2rem;
}

.terapia-content h5 {
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.terapia-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.terapia-content ul {
    list-style: none;
    margin-bottom: 1rem;
}

.terapia-content li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.terapia-content li i {
    color: var(--deep-teal);
    margin-top: 0.2rem;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.terapia-content li strong {
    color: var(--dark-green);
}

/* Imagens das terapias */
.terapia-image {
    margin-bottom: 1.5rem;
    text-align: center;
}

.therapy-img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.2);
    transition: all 0.3s ease;
}

.therapy-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(74, 124, 89, 0.3);
}

.terapia-content h5 {
    color: var(--dark-green);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-left: 3px solid var(--deep-teal);
    padding-left: 1rem;
}

.terapia-content h5:first-of-type {
    margin-top: 0;
}

/* Sobre Section */
.sobre {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-cream) 0%, var(--secondary-mint) 100%);
}

.sobre-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.beneficios {
    margin-top: 2rem;
}

.beneficios h3 {
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.beneficios ul {
    list-style: none;
}

.beneficios li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.beneficios li i {
    color: var(--deep-teal);
}

.sobre-logo {
    width: 250px;
    height: 250px;
    filter: drop-shadow(0 10px 30px rgba(74, 124, 89, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* Depoimentos Section */
.depoimentos {
    padding: 100px 0;
    background: white;
}

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

.depoimento-card {
    background: linear-gradient(135deg, var(--primary-cream), var(--white));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--deep-teal);
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 124, 89, 0.2);
}

.depoimento-content p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    font-size: 1.1rem;
}

.depoimento-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--deep-teal);
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.3;
}

.depoimento-author h4 {
    color: var(--dark-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.depoimento-author span {
    color: var(--deep-teal);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contato Section */
.contato {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-mint) 0%, var(--primary-cream) 100%);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-info h3 {
    color: var(--dark-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contato-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contato-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.contato-item i {
    font-size: 1.5rem;
    color: var(--deep-teal);
    width: 30px;
    margin-top: 0.2rem;
}

.contato-item h4 {
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contato-item p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    color: var(--dark-green);
    margin-bottom: 1rem;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--deep-teal), var(--light-teal));
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(74, 124, 89, 0.4);
}

/* Formulário */
.contato-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--dark-green);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(168, 213, 186, 0.3);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--primary-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--deep-teal);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--light-teal);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-teal);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: var(--light-teal);
    margin-right: 0.5rem;
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
        backdrop-filter: blur(15px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-logo-container {
        width: 250px;
        height: 250px;
    }
    
    .hero-logo {
        width: 200px;
        height: 200px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
    }
    
    .terapia-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .carousel-track {
        padding: 1rem;
    }
    
    .canal-card {
        min-width: 280px;
    }
    
    .carousel-controls {
        display: none;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .category-title {
        font-size: 1.6rem;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .canal-card {
        min-width: 250px;
    }
    
    .terapia-header {
        padding: 1.5rem;
    }
    
    .terapia-content-inner {
        padding: 1.5rem;
    }
    
    .contato-form {
        padding: 1.5rem;
    }
}