:root {
    --primary-color: #ff6b00;
    --secondary-color: #303030;
    --accent-color: #ffffff;
    --text-color: #333333;
    --light-bg: #ffffff;
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

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

/* Header e Navegação */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6)), url('images/max_home 2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    border: 5px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.about-text {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.about-section .cta-button {
    margin-top: 15px;
    align-self: flex-start;
    box-shadow: 0 10px 25px rgba(255,107,0,0.4);
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image {
        margin: 0 auto 30px;
        max-width: 300px;
    }
    
    .about-image img {
        margin: 0 auto;
        display: block;
    }
    
    .about-text h2 {
        text-align: center;
        font-size: 2.3rem;
    }
    
    .about-text p {
        text-align: center;
    }
    
    .about-section .cta-button {
        align-self: center;
        margin: 20px auto 0;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%), url('images/capa max hero.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0 20px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    animation: gradientShift 10s ease infinite;
    padding-top: 80px;
}

.hero-content {
    max-width: 600px;
    margin-left: 10%;
    color: white;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 25px 45px rgba(0,0,0,0.25);
    animation: slideIn 1.2s ease-out;
    position: relative;
    margin-top: 40px;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    padding: 1.4rem 3rem;
    background: linear-gradient(45deg, var(--primary-color), #ff8533);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(255,107,0,0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255,107,0,0.4);
    background: linear-gradient(45deg, #ff8533, var(--primary-color));
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sections Comuns */
section {
    padding: 5rem 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

.services-section {
    padding: 120px 0;
    position: relative;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('images/treinamento max.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-section .section-intro {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 1.5rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card h3 {
    color: #00205b;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
}

.service-card p {
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ff6b00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.services-section .cta-button {
    background: #ff6b00;
    border: none;
    color: white;
    font-weight: 700;
    margin-top: 2rem;
    padding: 1.2rem 2.5rem;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

.services-section .cta-button:hover {
    background: #ff7a30;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.5);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.8rem;
    }
    
    .services-section h2 {
        font-size: 2.2rem;
    }
}

/* Tips Section */
.tips-section {
    position: relative;
    padding: 100px 0;
    background-color: #000000;
    color: #fff;
    background-image: url('images/background capa.png');
    background-size: cover;
    background-position: right center;
    overflow: hidden;
}

.tips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

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

.tips-section h2 {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 600px;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    text-align: left;
}

.tips-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 550px;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.tips-section .cta-button {
    display: inline-block;
    background-color: #ff7a30;
    color: #fff;
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 122, 48, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: none;
}

.tips-section .cta-button:hover {
    background-color: #ff6b00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 122, 48, 0.6);
}

@media (max-width: 768px) {
    .tips-section {
        padding: 80px 0;
        background-position: 70% center;
    }
    
    .tips-section .container {
        text-align: center;
        align-items: center;
    }
    
    .tips-section h2 {
        font-size: 2.2rem;
        max-width: 100%;
    }
    
    .tips-section p {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .tips-section::before {
        background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.75) 100%);
    }
}

/* Livros Section */
.livros-section {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.livros-container h2 {
    font-size: 2.5rem;
    color: #2d3436;
    margin-bottom: 1.5rem;
}

.livros-container > p {
    font-size: 1.1rem;
    color: #636e72;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.livros-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.livro-destaque {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.livro-destaque:hover {
    transform: translateY(-5px);
}

.livro-image {
    width: 100%;
    max-width: 250px;
    margin-bottom: 20px;
}

.livro-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.livro-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.livro-content h3 {
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 1rem;
}

.livro-content p {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.livro-content .cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: #00205b;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.livro-content .cta-button:hover {
    background: #001845;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 32, 91, 0.3);
}

@media (max-width: 992px) {
    .livros-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

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

    .livros-container h2 {
        font-size: 2rem;
    }

    .livro-destaque {
        padding: 20px;
    }

    .livro-image {
        max-width: 200px;
    }

    .livro-content h3 {
        font-size: 1.5rem;
    }
}

/* About Section - Melhorias adicionais */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin-top: 15px;
    border-radius: 2px;
}

.about-text p strong {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    font-style: italic;
}

.about-text {
    animation: fadeInRight 1s ease-out;
}

.about-image {
    animation: fadeInLeft 1s ease-out;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .about-text h2::after {
        margin: 15px auto 0;
    }
    
    .about-text {
        animation: fadeInUp 1s ease-out;
    }
    
    .about-image {
        animation: fadeInUp 1s ease-out 0.3s;
        animation-fill-mode: both;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Contact Form */
.contact-section {
    background: #ffffff;
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b00' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.contact-section .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.contact-section h2 {
    color: var(--secondary-color);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.contact-section p {
    color: #555555;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
}

.contact-form {
    max-width: 800px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e9e9e9;
    border-radius: 10px;
    font-size: 1.1rem;
    background: #f9f9f9;
    color: #333;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(255,107,0,0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
    grid-column: 1 / -1;
}

.contact-form .submit-button {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: 250px;
}

.submit-button {
    background: linear-gradient(45deg, var(--primary-color), #ff8533);
    color: white;
    border: none;
    padding: 1.4rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255,107,0,0.3);
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,0,0.4);
    background: linear-gradient(45deg, #ff8533, var(--primary-color));
}

/* Footer */
.footer {
    background-color: #f9f9f9;
    color: var(--secondary-color);
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-nav {
    flex: 1;
    min-width: 200px;
}

.footer-nav h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-nav h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-contact h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-info {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info svg {
    width: 24px;
    height: 24px;
    color: #ff6b00;
    flex-shrink: 0;
}

.contact-info span {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #00205b;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    background: #ff6b00;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(255, 107, 0, 0.3);
}

.social-links a svg {
    width: 22px;
    height: 22px;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-logo,
    .footer-nav,
    .footer-contact {
        max-width: 100%;
    }
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    border: none;
    background: none;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.05);
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.menu-toggle span:nth-child(1) {
    width: 60%;
}

.menu-toggle span:nth-child(2) {
    width: 100%;
}

.menu-toggle span:nth-child(3) {
    width: 80%;
    margin-left: auto;
}

.menu-toggle.active span:nth-child(1) {
    transform-origin: bottom;
    transform: rotateZ(45deg) translate(6px, 0px);
    width: 100%;
}

.menu-toggle.active span:nth-child(2) {
    transform: translateX(-100%);
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform-origin: top;
    transform: rotateZ(-45deg) translate(6px, 0px);
    width: 100%;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 120px 40px 30px;
        transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 22px 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.6s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.7s; }
    .nav-menu.active li:nth-child(8) { transition-delay: 0.8s; }
    
    .nav-menu li a {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--secondary-color);
        position: relative;
        padding-bottom: 5px;
        display: inline-block;
    }
    
    .nav-menu li a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }
    
    .nav-menu li a:hover::after {
        width: 100%;
    }
}

/* Responsividade */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Gallery/Depoimentos Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75)), url('images/max_home.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    text-align: center;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.gallery-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.gallery-section .container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

.gallery-section h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.gallery-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.gallery-section .service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.gallery-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

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

.gallery-section .service-card:hover::before {
    transform: scaleY(1);
}

.gallery-section .service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-left: 10px;
    border-left: 3px solid var(--primary-color);
}

.gallery-section .service-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
    font-size: 1.1rem;
    position: relative;
    padding-left: 20px;
}

.gallery-section .service-card p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.7;
}

.gallery-section .service-card p::after {
    content: '"';
    position: absolute;
    right: 10px;
    bottom: -20px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 0;
}

.gallery-section .cta-button {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: white;
    margin-top: 20px;
    padding: 1.2rem 2.5rem;
    transition: all 0.3s ease;
}

.gallery-section .cta-button:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.3);
}

.gallery-section .service-card .client-info {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-section .service-card .client-name {
    font-weight: 700;
    color: white;
    font-size: 1rem;
}

.gallery-section .service-card .client-position {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 3px;
}

/* Animações para os cards de depoimentos */
.gallery-section .service-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.2s;
    animation-fill-mode: both;
}

.gallery-section .service-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.4s;
    animation-fill-mode: both;
}

.gallery-section .service-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.6s;
    animation-fill-mode: both;
}

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

.gallery-section .gallery-grid {
    position: relative;
}

.gallery-section .gallery-grid::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 5px solid rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    top: -50px;
    left: -50px;
    z-index: -1;
}

.gallery-section .gallery-grid::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    bottom: -30px;
    right: -30px;
    z-index: -1;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 70px 0;
    }
    
    .gallery-section h2 {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        margin: 30px 0;
    }
    
    .gallery-section .service-card {
        padding: 1.8rem;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #000;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: #007bff;
}

.modal-form button {
    background-color: #007bff;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-form button:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

/* Ofertas Section */
.ofertas-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

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

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

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

.oferta-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-color);
    color: white;
}

.oferta-gratuito .oferta-header {
    background: #2C3E50;
}

.oferta-online .oferta-header {
    background: #3498DB;
}

.oferta-header h3 {
    font-size: 1.5rem;
    margin: 0;
    color: white;
}

.oferta-icon {
    width: 40px;
    height: 40px;
}

.oferta-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.oferta-body {
    padding: 2rem;
    position: relative;
    min-height: 200px;
}

.oferta-body p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.oferta-button {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.oferta-gratuito .oferta-button {
    background: #2C3E50;
}

.oferta-online .oferta-button {
    background: #3498DB;
}

.oferta-button:hover {
    transform: scale(1.1);
}

.oferta-button svg {
    width: 20px;
    height: 20px;
    color: white;
}

@media (max-width: 768px) {
    .ofertas-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .oferta-body {
        min-height: 180px;
    }
}

/* Valores Section */
.valores-section {
    padding: 6rem 0;
    background-color: #f9f9f9;
    position: relative;
    background-image: 
        radial-gradient(circle at 25px 25px, rgba(42, 125, 198, 0.05) 2px, transparent 3px), 
        radial-gradient(circle at 75px 75px, rgba(255, 122, 48, 0.05) 2px, transparent 3px);
    background-size: 100px 100px;
    background-position: center;
    overflow: hidden;
}

.valores-section::before,
.valores-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(42, 125, 198, 0.08);
    z-index: 0;
}

.valores-section::before {
    top: -150px;
    left: -150px;
}

.valores-section::after {
    bottom: -150px;
    right: -150px;
}

.valores-section .container {
    position: relative;
    z-index: 1;
}

.valores-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.valores-section h2 span {
    color: #ff7a30;
}

.valores-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.valor-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.top-row {
    justify-content: space-between;
}

.bottom-row {
    justify-content: space-around;
}

.valor-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
    max-width: 340px;
    position: relative;
    overflow: hidden;
}

.valor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: #2a7dc6;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(42, 125, 198, 0.15);
}

.valor-card:hover::before {
    opacity: 1;
}

.valor-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #e8f2fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.valor-icon svg {
    width: 24px;
    height: 24px;
    color: #ff7a30;
}

.valor-content {
    flex: 1;
}

.valor-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
}

.valor-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .valor-row {
        flex-wrap: wrap;
    }
    
    .valor-card {
        max-width: 48%;
    }
    
    .top-row {
        justify-content: space-between;
    }
    
    .bottom-row {
        justify-content: space-evenly;
    }
}

@media (max-width: 768px) {
    .valores-section {
        padding: 4rem 0;
    }
    
    .valores-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .valor-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .valor-card {
        max-width: 100%;
    }
}

/* Missão Section */
.missao-section {
    padding: 120px 0;
    background-color: #f8f8f8;
    position: relative;
    background-image: url('images/Xs.avif');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.missao-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

.missao-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.missao-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #00205b;
    position: relative;
}

.missao-section h2:after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #00205b, #ff6b00);
    margin: 15px auto 0;
    border-radius: 2px;
}

.missao-valores-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-bottom: 50px;
}

.missao-content {
    background-color: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    flex: 1;
}

.missao-content:hover {
    transform: translateY(-10px);
}

.missao-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
    font-weight: 800;
    position: relative;
}

.missao-content h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #00205b, #ff6b00);
    border-radius: 2px;
}

.text-blue {
    color: #00205b;
}

.text-orange {
    color: #ff6b00;
}

.missao-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.enfase {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    color: #ff6b00;
    margin: 40px auto;
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 900px;
}

.enfase-bottom {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    color: #00205b;
    margin: 40px auto 0;
    padding: 25px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 900px;
}

/* Estilos para a seção de valores dentro da seção de missão */
.valores-grid {
    margin: 50px 0;
}

.valores-grid h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
}

.valores-grid h3 span {
    color: #ff7a30;
}

.valor-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.top-row {
    justify-content: space-between;
}

.bottom-row {
    justify-content: space-around;
}

.valor-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
    max-width: 340px;
    position: relative;
    overflow: hidden;
}

.valor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: #2a7dc6;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(42, 125, 198, 0.15);
}

.valor-card:hover::before {
    opacity: 1;
}

.valor-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #e8f2fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.valor-icon svg {
    width: 24px;
    height: 24px;
    color: #ff7a30;
}

.valor-content {
    flex: 1;
}

.valor-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #333;
}

.valor-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .missao-valores-container {
        flex-direction: column;
    }

    .valor-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .valor-card {
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .missao-section {
        padding: 80px 0;
    }
    
    .missao-section h2 {
        font-size: 2rem;
    }
    
    .missao-valores-container {
        flex-direction: column;
    }

    .missao-content h3 {
        font-size: 1.6rem;
        text-align: center;
    }

    .missao-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .missao-content p {
        text-align: center;
    }

    .enfase, .enfase-bottom {
        font-size: 1.1rem;
        padding: 20px;
    }

    .valor-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .valor-card {
        max-width: 100%;
    }
}

/* Videos Section */
.videos-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.videos-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.videos-section h2 {
    color: #00205b;
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.videos-section h2:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: #ff6b00;
    bottom: -10px;
    left: 20%;
}

.videos-section h3 {
    color: #ff6b00;
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 30px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

@media (max-width: 992px) {
    .videos-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #f0f0f0; 
    border-radius: 15px 15px 0 0;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 32, 91, 0.05);
    z-index: 1;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 2;
}

.video-card h4 {
    color: #00205b;
    font-size: 1.3rem;
    padding: 20px 20px 10px;
    margin: 0;
    font-weight: 700;
}

.video-card p {
    color: #555;
    padding: 0 20px 20px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .videos-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        padding: 0 15px;
    }
    
    .videos-section h2 {
        font-size: 2rem;
    }
    
    .videos-section h3 {
        font-size: 1.5rem;
    }
    
    .video-card h4 {
        font-size: 1.2rem;
        padding: 15px 15px 10px;
    }
    
    .video-card p {
        font-size: 0.9rem;
        padding: 0 15px 15px;
    }
}

@media (max-width: 480px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos para as páginas de cursos */
.cursos-container {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

.cursos-header {
    text-align: center;
    margin-bottom: 50px;
}

.cursos-header h1 {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cursos-header p {
    color: #555;
    margin-bottom: 30px;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.curso-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.curso-imagem {
    width: 100%;
    height: auto;
    position: relative;
}

.curso-imagem img {
    width: 100%;
    height: auto;
    display: block;
}

.curso-info {
    padding: 20px;
}

.curso-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.curso-duracao, .curso-nivel {
    background: rgba(0,0,0,0.1);
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
}

.curso-categoria {
    color: var(--primary-color);
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.curso-info h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.curso-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.curso-topicos {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.curso-topicos li {
    color: #555;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.curso-topicos li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

.curso-button {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    margin-top: 1rem;
}

.curso-button:hover {
    background: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,0,0.3);
}

/* Estilos para a página de cursos online */
.cursos-online-section {
    padding: 60px 0;
    background-color: #fff;
}

.cursos-online-section h1 {
    font-size: 2.5em;
    color: #ff6b00;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.curso-content {
    display: flex;
    gap: 60px;
    margin-top: 20px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.curso-info {
    flex: 1;
    max-width: 600px;
}

.curso-header {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.curso-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff8f3;
    padding: 8px 15px;
    border-radius: 20px;
}

.rating-stars {
    color: #ff6b00;
    font-size: 1.1em;
}

.rating-value,
.rating-count {
    color: white;
}

.rating-count {
    font-size: 0.9em;
}

.curso-language {
    color: white;
    font-size: 0.9em;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
}

.curso-description {
    margin-bottom: 35px;
}

.curso-description h2 {
    color: #333;
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 700;
}

.curso-description h3 {
    color: #ff6b00;
    font-size: 1.3em;
    margin-bottom: 25px;
    font-weight: 600;
}

.curso-description p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.curso-beneficios {
    background: #fff8f3;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 35px;
}

.curso-beneficios h3 {
    color: #333;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.curso-beneficios ul {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.curso-beneficios li {
    position: relative;
    padding-left: 28px;
    color: #444;
    line-height: 1.5;
    font-size: 1.05em;
}

.curso-beneficios li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b00;
    font-weight: bold;
}

.curso-image {
    flex: 1;
    max-width: 500px;
}

.curso-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.curso-image img:hover {
    transform: translateY(-5px);
}

.curso-cta {
    margin-top: 35px;
    text-align: center;
}

.curso-cta .cta-button {
    display: inline-block;
    padding: 18px 40px;
    background-color: #ff6b00;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

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

@media (max-width: 992px) {
    .curso-content {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .curso-image {
        order: -1;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .curso-info {
        max-width: 100%;
    }

    .curso-beneficios ul {
        grid-template-columns: 1fr;
    }

    .cursos-online-section h1 {
        font-size: 2em;
    }
}

@media (max-width: 576px) {
    .curso-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .curso-description h2 {
        font-size: 1.4em;
    }

    .curso-description h3 {
        font-size: 1.2em;
    }

    .curso-cta .cta-button {
        width: 100%;
        padding: 15px 20px;
    }
}

/* Novo design da página de cursos */
.curso-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, rgba(0, 32, 91, 0.95) 0%, rgba(0, 18, 51, 0.95) 100%), url('images/treinamento max.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.curso-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.curso-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.curso-hero-text {
    flex: 1;
}

.curso-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, #ff6b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.curso-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.curso-rating {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-stars {
    color: #ff6b00;
    margin-right: 8px;
}

.curso-language {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.curso-hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.curso-hero-image {
    flex: 1;
    max-width: 500px;
}

.curso-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.curso-hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.curso-detalhes {
    padding: 80px 0;
    background: #fff;
}

.curso-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.curso-info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.curso-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #ff6b00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

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

.curso-info-card h2 {
    color: #00205b;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    text-align: left;
}

.curso-info-card p {
    color: #444;
    line-height: 1.7;
    font-size: 1.1rem;
}

.curso-beneficios-section {
    padding: 60px 0;
    background: #f8f9fa;
    border-radius: 30px;
    margin-bottom: 60px;
}

.curso-beneficios-section h2 {
    text-align: center;
    color: #00205b;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.beneficio-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.beneficio-card:hover {
    transform: translateY(-5px);
}

.beneficio-icon {
    width: 40px;
    height: 40px;
    background: #ff6b00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.beneficio-card h3 {
    color: #333;
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.4;
}

.curso-cta-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #00205b 0%, #001233 100%);
    border-radius: 30px;
    color: white;
}

.curso-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.curso-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.curso-cta-section .cta-button {
    display: inline-block;
    padding: 20px 50px;
    background-color: #ff6b00;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

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

@media (max-width: 992px) {
    .curso-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .curso-hero h1 {
        font-size: 2.8rem;
    }

    .curso-badges {
        justify-content: center;
    }

    .curso-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .curso-hero {
        padding: 100px 0 60px;
    }

    .curso-hero h1 {
        font-size: 2.3rem;
    }

    .curso-grid {
        grid-template-columns: 1fr;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .curso-info-card {
        padding: 30px;
    }

    .curso-cta-section h2 {
        font-size: 2rem;
    }

    .curso-cta-section .cta-button {
        width: 90%;
        max-width: 400px;
    }
}

/* Novo estilo para grid de cursos */
.cursos-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.cursos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.curso-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.curso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.curso-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.curso-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.curso-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.curso-card-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.curso-card-badge {
    background: rgba(0, 32, 91, 0.1);
    color: #00205b;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.curso-card h3 {
    color: #00205b;
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.curso-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.curso-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.curso-card-price {
    color: #ff6b00;
    font-size: 1.2rem;
    font-weight: 700;
}

.curso-card-button {
    background: #ff6b00;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.curso-card-button:hover {
    background: #e55e00;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .cursos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cursos-grid {
        grid-template-columns: 1fr;
    }
    
    .curso-card-image {
        height: 180px;
    }
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-list li {
    color: #555;
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
        text-align: center;
        display: block;
        margin: 0 auto;
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
    }
    
    .tips-section h2 {
        font-size: 1.8rem;
    }
    
    .tips-section p {
        font-size: 0.9rem;
    }
    
    .tips-section .cta-button {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .treine-sua-equipe h1 {
        font-size: 1.8rem;
    }
    
    .treine-sua-equipe p {
        font-size: 0.9rem;
    }
}

/* Estilos específicos para seção "Treine sua equipe" */
.treine-sua-equipe {
    background-color: #00205b;
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.treine-sua-equipe h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ff6b00;
}

.treine-sua-equipe p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: white;
}

.treine-sua-equipe .cta-button {
    margin: 0 auto;
    text-align: center;
    display: inline-block;
}