/* Comportamento de rolagem suave */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Arial', sans-serif;
}

/* Hero Section with Photography Focus */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1520390138845-fd2d229dd553?q=80&w=2029&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.65) 50%,
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    color: #fff;
    animation: fadeInLeft 1s ease-out forwards;
}

.course-title {
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    position: relative;
}

.course-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, rgba(255, 107, 107, 0.3));
    animation: titleLine 1s ease-out forwards;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.course-subtitle {
    font-size: 1.4em;
    margin: 30px 0;
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 0.5s;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: #ff6b6b;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 1s;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: transparent;
    border-color: #ff6b6b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes titleLine {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* Floating Camera Icon */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M23 19C23 19.5304 22.7893 20.0391 22.4142 20.4142C22.0391 20.7893 21.5304 21 21 21H3C2.46957 21 1.96086 20.7893 1.58579 20.4142C1.21071 20.0391 1 19.5304 1 19V8C1 7.46957 1.21071 6.96086 1.58579 6.58579C1.96086 6.21071 2.46957 6 3 6H7L9 3H15L17 6H21C21.5304 6 22.0391 6.21071 22.4142 6.58579C22.7893 6.96086 23 7.46957 23 8V19Z" stroke="rgba(255,255,255,0.1)" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><circle cx="12" cy="13" r="4" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') center/contain no-repeat;
    transform: translate(50%, -50%);
    opacity: 0.1;
    z-index: 2;
}

.content {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

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

.video-container {
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.course-info {
    text-align: center;
}

.course-info h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.highlight {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    font-weight: 500;
}

.benefits {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.benefit-item {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.benefit-item h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.benefit-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefit-item li {
    margin: 15px 0;
    color: #555;
    font-size: 1.1em;
}

.cta-section {
    margin-top: 50px;
}

.motivation {
    font-size: 1.3em;
    color: #444;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Melhorando o botão CTA */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2em;
    text-decoration: none;
    color: white;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .benefits {
        flex-direction: column;
    }
    
    .benefit-item {
        min-width: auto;
    }
    
    .course-info h2 {
        font-size: 2em;
    }
    
    .video-container iframe {
        height: 300px;
    }
}

/* Seção de Cursos */
.courses {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
}

.courses-title {
    text-align: center;
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.courses-title:after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #ff6b6b;
    margin: 20px auto;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.course-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.course-image {
    position: relative;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-content {
    padding: 30px;
}

.course-content h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

.course-content h4 {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

.course-price {
    margin: 20px 0;
    text-align: center;
}

.price {
    font-size: 2em;
    font-weight: bold;
    color: #2c3e50;
    display: block;
}

.installments {
    color: #666;
    font-size: 1.1em;
}

.course-curriculum {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.course-curriculum h5 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.course-curriculum ul {
    list-style: none;
    padding: 0;
}

.course-curriculum li {
    margin: 10px 0;
    color: #555;
    font-size: 1em;
    display: flex;
    align-items: center;
}

.buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.buy-button: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: 0.5s;
}

.buy-button:hover:before {
    left: 100%;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,107,107,0.4);
}

.button-text {
    margin-right: 10px;
}

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

.buy-button:hover .button-icon {
    transform: translateX(5px);
}

.buy-button.premium {
    background: linear-gradient(45deg, #3498db, #2980b9);
}

.buy-button.premium:hover {
    box-shadow: 0 10px 20px rgba(52,152,219,0.4);
}

/* Responsividade */
@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .course-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .course-content h3 {
        font-size: 1.5em;
    }
    
    .price {
        font-size: 1.8em;
    }
}

/* Seção FAQ */
.faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-title {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
    position: relative;
}

.faq-title:after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #ff6b6b;
    margin: 20px auto;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1em;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background-color: #f8f9fa;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 20px;
}

.accordion-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.accordion-content ul {
    list-style: none;
    padding-left: 20px;
}

.accordion-content li {
    color: #666;
    margin: 8px 0;
    position: relative;
}

.accordion-content li:before {
    content: '•';
    color: #ff6b6b;
    position: absolute;
    left: -15px;
}

/* Responsividade do FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 40px 20px;
    }
    
    .faq-title {
        font-size: 2em;
    }
    
    .accordion-header {
        font-size: 1em;
        padding: 15px;
    }
    
    .accordion-content {
        font-size: 0.9em;
    }
}

/* Seção Autor e Benefícios */
.author-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.author-section {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.author-image {
    flex: 0 0 400px;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 1;
}

.image-frame:hover {
    transform: translateY(-10px);
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.image-frame:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.author-info {
    flex: 1;
}

.author-info h2 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.author-info h3 {
    color: #ff6b6b;
    font-size: 2em;
    margin-bottom: 20px;
}

.author-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.credential-tag {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

.author-bio, .author-achievements {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Seção de Benefícios */
.benefits-section {
    text-align: center;
}

.benefits-section h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 142, 142, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: transform 0.3s ease;
    gap: 5px;
}

.benefit-icon:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.benefit-icon i {
    font-size: 2em;
    color: #ff6b6b;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card:nth-child(3) .benefit-icon i:first-child {
    font-size: 1.6em;
    margin-right: -5px;
}

.benefit-card:nth-child(3) .benefit-icon i:last-child {
    font-size: 1.2em;
    margin-left: -5px;
}

.benefit-card h3 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 968px) {
    .author-section {
        flex-direction: column;
        text-align: center;
    }

    .author-image {
        flex: 0 0 auto;
        max-width: 300px;
        margin: 0 auto;
    }

    .author-credentials {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }

    .author-info h2 {
        font-size: 2em;
    }

    .author-info h3 {
        font-size: 1.6em;
    }

    .author-bio, .author-achievements {
        font-size: 1em;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9em;
    opacity: 0.8;
}

footer a:hover {
    color: #ff6b6b;
    opacity: 1;
}

/* Estilos LGPD */
.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 33, 33, 0.98);
    color: #fff;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.lgpd-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lgpd-content p {
    margin: 0;
    line-height: 1.5;
}

.lgpd-content a {
    color: #ff6b6b;
    text-decoration: none;
}

.lgpd-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ff6b6b;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Modal de Preferências */
.preferences-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: white;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    color: #333;
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal-body {
    padding: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.required-badge {
    background: #e9ecef;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    color: #666;
}

.cookie-option p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    text-align: right;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .lgpd-content {
        text-align: center;
    }

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

    .modal-content {
        width: 95%;
        margin: 1rem;
    }
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    margin-top: 2px;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-50%) scale(1.1);
}

.section-indicator {
    position: absolute;
    left: -120px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .section-indicator {
    opacity: 0.8;
    visibility: visible;
    left: -130px;
}