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

:root {
    --primary: #1e2957;
    --secondary: #a84fa0;
    --accent: #f5f1ff;
    --dark: #1a1e2e;
    --light: #f8f9fb;
    --gold: #fea500;
    --success: #00bfa5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    color: #212741;
    margin-bottom: 1.5rem;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(45, 58, 110, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary) !important;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin-left: 1.5rem;
    color: var(--dark) !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--secondary);
    transition: width 0.3s ease;
}

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

.navbar-toggler {
    border: none;
    background: transparent !important;
}

.btn-header {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 58, 110, 0.4);
    color: white;
    text-decoration: none;
    background: var(--secondary);
}

/* Hero Section */
.hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    align-items: center;
    min-height: 90vh;
}

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

.hero h1 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero h1 .highlight {
    color: var(--secondary);
    font-weight: 700;
}

.hero .subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.hero .description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn-primary-hero {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 58, 110, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary-hero {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.9rem 2.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-secondary-hero:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    /**border-radius: 10px;
    box-shadow: 0 30px 60px rgba(45, 58, 110, 0.15);
    animation: float 3s ease-in-out infinite; **/
}

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

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Equipment Section */
.equipamentos {
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--secondary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
}

.card-equipamento {
    border: none;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.card-equipamento:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 58, 110, 0.2);
}

.card-equipamento-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    position: relative;
    overflow: hidden;
}

.card-equipamento:hover .card-equipamento-img {
    filter: brightness(1.1);
}

.card-body {
    padding: 2rem;
}

.card-equipamento h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.card-equipamento p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-card {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
}

.btn-card:hover {
    background: var(--primary);
    transform: scale(1.02);
    color: white;
    text-decoration: none;
}

/* Diferenciais Section */
.diferenciais {
    background: linear-gradient(135deg, #f8f9fb 0%, #f0f0f0 100%);
}

.diferencial-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #1e2957);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.diferencial-item:hover .icon-box {
    background: var(--secondary);
    transform: rotate(-5deg) scale(1.1);
}

.diferencial-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.diferencial-item p {
    font-size: 1rem;
}

/* Depoimentos WhatsApp Section */
.depoimentos-whatsapp {
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
}

.prints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    position: relative;
}

.print-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(30, 41, 87, 0.08);
    box-shadow: 0 25px 60px rgba(26, 30, 46, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.print-card::before {
    content: '';
    position: absolute;
    inset: 1rem;
    border-radius: 16px;
    border: 1px dashed rgba(168, 79, 160, 0.2);
    pointer-events: none;
}

.print-card img {
    width: 100%;
    display: block;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.print-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(26, 30, 46, 0.18);
}

/* Treinamentos Section */
.treinamentos {
    background: white;
}

.treinamento-content {
    background: linear-gradient(135deg, var(--primary), #1e2957);
    color: white;
    padding: 4rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.treinamento-content h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.treinamento-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.5rem;
}

.btn-treinamento {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
    cursor: pointer;
}

.btn-treinamento:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--dark);
    text-decoration: none;
}

/* Sobre Nós Section */
.sobre {
    /*background: linear-gradient(135deg, #f8f9fb 0%, #f0f0f0 100%);*/
}

.sobre-content {
    padding: 2rem;
}

.sobre h2 {
    color: var(--primary);
    margin-bottom: 2rem;
}

.sobre p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.sobre-highlight {
    background: var(--accent);
    padding: 2rem;
    border-left: 5px solid var(--secondary);
    border-radius: 5px;
    margin: 2rem 0;
    font-style: italic;
    color: var(--dark);
}

/* Contato Section */
.contato {
    background: white;
    padding-bottom: 80px;
}

.form-container {
    background: linear-gradient(135deg, #f8f9fb 0%, #f0f0f0 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(196, 85, 110, 0.1);
}

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

.btn-submit {
    background: linear-gradient(135deg, var(--primary), #1e2957);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(45, 58, 110, 0.4);
    color: white;
}

.contato-texto {
    text-align: center;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background: var(--primary);
    color: #fff;
    padding: 4rem 0 1rem;
}

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

.footer-section h5 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

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

.footer-section ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

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

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

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

/* Responsive */
@media (max-width: 991px) {
    .btn-header {
        margin: 1rem 0;
    }

    .hero-image img {
        padding-top: 2rem;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 80px 0;
        min-height: auto;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .form-container {
        padding: 2rem;
    }

    .treinamento-content {
        padding: 2rem;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }

    .contato-texto h2 {
        font-size: 2rem;
    }

    .prints-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.2rem;
    }

    .print-card {
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    p {
        font-size: 1rem;
    }

    .hero {
        padding: 60px 0;
    }

    .section-title h2::after {
        width: 80px;
    }

    .benefits-list li {
        font-size: 1rem;
    }

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

/* Smooth Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

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

/* Google Reviews Badge */
.google-reviews-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 1rem 0;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    color: var(--gold);
    font-size: 1.2rem;
}

.reviews-link {
    text-decoration: none;
    color: #999 !important;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.reviews-link:hover {
    color: var(--primary) !important;
}
