/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.phone {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.phone-link {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #3498db;
}

.phone-disclaimer {
    font-size: 0.75rem;
    color: #7f8c8d;
    margin-top: 2px;
    text-align: right;
}

.nav-main ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-main a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: #0073e6;
}

.nav-secondary {
    background: #f8f9fa;
    padding: 10px 0;
}

.nav-secondary ul {
    display: flex;
    list-style: none;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-secondary a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-secondary a:hover {
    color: #0073e6;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0073e6, #0056b3);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background: #ffd700;
    color: #0073e6;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Profile Section */
.profile-section {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.profile-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0073e6;
}

.profile-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

/* Training Types */
.training-types {
    padding: 60px 0;
    background: #f8f9fa;
}

.training-types .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

.training-card h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.training-card h4 {
    color: #333;
    font-size: 1.2rem;
    margin: 20px 0 10px 0;
}

.training-card ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.training-card li {
    margin-bottom: 10px;
    color: #666;
}

.training-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background: white;
}

.testimonials .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #0073e6;
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 20px;
    color: #666;
    font-size: 1.1rem;
}

.testimonial cite {
    font-weight: bold;
    color: #0073e6;
    font-size: 1.1rem;
}

/* Benefits */
.benefits {
    padding: 60px 0;
    background: linear-gradient(135deg, #0073e6, #0056b3);
    color: white;
    text-align: center;
}

.benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #ffd700;
}

.benefits ul {
    list-style: none;
    margin-bottom: 30px;
}

.benefits li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

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

.benefits p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Features */
.features {
    padding: 60px 0;
    background: white;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

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

.feature h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature p {
    color: #666;
    margin-bottom: 15px;
}

/* Pre-formation */
.pre-formation {
    padding: 60px 0;
    background: #f8f9fa;
}

.pre-formation h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0073e6;
}

.consideration {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.consideration h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.consideration p {
    color: #666;
    margin-bottom: 10px;
}

/* Costs */
.costs {
    padding: 60px 0;
    background: white;
}

.costs h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0073e6;
}

.cost-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.factor {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border-top: 4px solid #0073e6;
}

.factor h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.factor p {
    color: #666;
    line-height: 1.8;
}

/* Questions */
.questions {
    padding: 60px 0;
    background: #f8f9fa;
}

.questions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0073e6;
}

.question-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Group Training */
.group-training {
    padding: 60px 0;
    background: linear-gradient(135deg, #0073e6, #0056b3);
    color: white;
    text-align: center;
}

.group-training h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
}

.group-training p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-info p:last-child {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0 20px 0;
}

.footer-nav ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.footer-bottom a {
    color: #ffd700;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-main ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-secondary ul {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .training-types .container,
    .testimonials .container,
    .features .container {
        grid-template-columns: 1fr;
    }

    .cost-factors,
    .question-factors {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .training-card,
    .testimonial,
    .feature,
    .consideration,
    .factor {
        padding: 20px;
    }

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibility */
a:focus,
button:focus {
    outline: 2px solid #0073e6;
    outline-offset: 2px;
}

/* Advanced Training Page Styles */
.training-advanced {
    padding: 60px 0;
    background: #f8f9fa;
}

.training-advanced .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.beyond-course {
    padding: 60px 0;
    background: white;
}

.beyond-course h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0073e6;
}

.beyond-course h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #333;
}

.beyond-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.beyond-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #0073e6;
}

.beyond-item h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.advantages {
    padding: 60px 0;
    background: linear-gradient(135deg, #0073e6, #0056b3);
    color: white;
}

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.advantages p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.advantage-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.advantage-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.advantage-card a {
    color: #ffd700;
    text-decoration: none;
}

.advantage-card a:hover {
    text-decoration: underline;
}

.advanced-features {
    padding: 60px 0;
    background: white;
}

.advanced-features h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0073e6;
}

.feature-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-top: 4px solid #0073e6;
}

.feature-item h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-item a {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #0073e6;
    padding: 12px 25px;
    text-decoration: none;
    border: 2px solid #0073e6;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-secondary:hover {
    background: #0073e6;
    color: white;
}

/* Example Elements Page Styles */
.product-showcase {
    padding: 60px 0;
    background: white;
}

.product-section, .photography-section {
    margin-bottom: 60px;
}

.product-section h2, .photography-section h2 {
    color: #0073e6;
    font-size: 2rem;
    margin-bottom: 20px;
}

.product-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-placeholder h3, .image-placeholder h4 {
    color: #0073e6;
    margin-bottom: 10px;
}

.product-details h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.product-details ul {
    list-style: none;
}

.product-details li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.product-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

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

.gallery-item {
    aspect-ratio: 1;
}

.pricing-table {
    padding: 60px 0;
    background: #f8f9fa;
}

.pricing-table h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0073e6;
}

.pricing-table p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
}

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

.pricing-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 2px solid #0073e6;
    transform: scale(1.05);
}

.pricing-card.premium {
    background: linear-gradient(135deg, #0073e6, #0056b3);
    color: white;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.pricing-card.premium h3 {
    color: white;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 3rem;
    font-weight: bold;
    color: #0073e6;
    display: block;
}

.pricing-card.premium .currency {
    color: #ffd700;
}

.period {
    color: #666;
    font-size: 1rem;
}

.pricing-card.premium .period {
    color: rgba(255, 255, 255, 0.8);
}

.features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.pricing-card.premium .features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.premium .features li::before {
    color: #ffd700;
}

.vat-note {
    text-align: center;
    color: #666;
    font-style: italic;
}

.location-showcase {
    padding: 60px 0;
    background: white;
}

.location-showcase h2 {
    color: #0073e6;
    font-size: 2rem;
    margin-bottom: 20px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.map-placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.icon-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.icon-placeholder {
    font-size: 2rem;
    margin-bottom: 10px;
}

.icon-item h4 {
    color: #0073e6;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.reuse-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.reuse-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.reuse-card h3 {
    color: #0073e6;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.reuse-card p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
}

/* Active navigation state */
.nav-main a.active,
.nav-secondary a.active {
    color: #0073e6;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-demo,
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .icon-grid {
        grid-template-columns: 1fr;
    }
}

/* Privacy Policy Page Styles */
.company-info {
    padding: 60px 0;
    background: white;
}

.company-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.company-card h2 {
    color: #0073e6;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-details h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.data-collection,
.data-analysis,
.additional-info {
    padding: 60px 0;
}

.data-collection {
    background: #f8f9fa;
}

.data-analysis {
    background: white;
}

.additional-info {
    background: #f8f9fa;
}

.data-sections,
.analysis-sections,
.info-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.data-section,
.analysis-section,
.info-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.data-analysis .data-section,
.additional-info .info-section {
    background: #f8f9fa;
}

.data-section h2,
.analysis-section h2,
.info-section h2 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Optimization Page Styles */
.speed-optimization {
    padding: 60px 0;
    background: white;
}

.speed-optimization h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0073e6;
}

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

.optimization-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid #0073e6;
}

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

.optimization-card h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.optimization-icon {
    font-size: 3rem;
    margin-top: 20px;
}

.real-case {
    padding: 60px 0;
    background: #f8f9fa;
}

.real-case h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0073e6;
}

.case-comparison {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.before,
.after {
    text-align: center;
}

.before h3,
.after h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.before h3 {
    color: #dc3545;
}

.after h3 {
    color: #28a745;
}

.arrow {
    font-size: 2rem;
    color: #0073e6;
    font-weight: bold;
}

.metrics {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.metric-label {
    font-weight: 500;
}

.metric-value {
    font-weight: bold;
    font-size: 1.2rem;
}

.metric-value.poor {
    color: #dc3545;
}

.metric-value.excellent {
    color: #28a745;
}

.improvement-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.improvement-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.improvement-item h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.improvement-stats {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.stat {
    background: #e3f2fd;
    color: #0073e6;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.optimization-benefits {
    padding: 60px 0;
    background: white;
}

.optimization-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0073e6;
}

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

.benefit-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: #0073e6;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.optimization-process {
    padding: 60px 0;
    background: linear-gradient(135deg, #0073e6, #0056b3);
    color: white;
}

.optimization-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #ffd700;
    color: #0073e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

.step h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .before-after {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .data-sections,
    .analysis-sections,
    .info-sections,
    .improvement-details {
        grid-template-columns: 1fr;
    }
}

/* Speed Training Page Styles */
.speed-training {
    padding: 60px 0;
    background: white;
}

.speed-training h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0073e6;
}

.speed-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.speed-topic {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid #0073e6;
}

.speed-topic:hover {
    transform: translateY(-5px);
}

.speed-topic h2 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.speed-icon {
    font-size: 3rem;
    margin-top: 20px;
}

.speed-measurement {
    padding: 60px 0;
    background: #f8f9fa;
}

.speed-measurement h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0073e6;
}

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

.tool-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tool-card h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.speed-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.factor-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.factor-item h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.factor-metrics {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.metric-good {
    background: #d4edda;
    color: #155724;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.metric-average {
    background: #fff3cd;
    color: #856404;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.metric-poor {
    background: #f8d7da;
    color: #721c24;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.optimization-techniques {
    padding: 60px 0;
    background: white;
}

.optimization-techniques h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0073e6;
}

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

.technique-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.technique-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.technique-card h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.technique-card ul {
    list-style: none;
    text-align: left;
}

.technique-card li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.technique-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.training-benefits {
    padding: 60px 0;
    background: linear-gradient(135deg, #0073e6, #0056b3);
    color: white;
}

.training-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.benefit-number {
    width: 40px;
    height: 40px;
    background: #ffd700;
    color: #0073e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-content h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.case-studies {
    padding: 60px 0;
    background: white;
}

.case-studies h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0073e6;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-study {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.case-study h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.case-metrics {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case-metrics .metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: white;
    border-radius: 5px;
}

.case-metrics .label {
    font-weight: 500;
}

.case-metrics .improvement {
    font-weight: bold;
    color: #28a745;
}

/* Contact Page Styles */
.contact-info {
    padding: 60px 0;
    background: white;
}

.contact-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0073e6;
}

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

.contact-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid #0073e6;
}

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

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-message {
    text-align: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.chat-button {
    margin-top: 20px;
}

.access-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.access-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0073e6;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.map-placeholder {
    background: white;
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.access-details h3 {
    color: #0073e6;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.transport-option {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.transport-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.transport-option h4 {
    color: #0073e6;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.parking-info {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.parking-info h4 {
    color: #0073e6;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.facilities {
    padding: 60px 0;
    background: white;
}

.facilities h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0073e6;
}

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

.facility-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.facility-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.facility-card h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-form-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0073e6;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0073e6;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.form-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-info h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-hours {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
}

.contact-hours h4 {
    color: #0073e6;
    margin-bottom: 15px;
}

.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #0073e6;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #0073e6;
}

.faq-item h3 {
    color: #0073e6;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0073e6, #0056b3);
    color: white;
    text-align: center;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #0073e6;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .before-after {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .data-sections,
    .analysis-sections,
    .info-sections,
    .improvement-details {
        grid-template-columns: 1fr;
    }
    
    .access-content {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Images and Icons Styles */
.hero {
    background-image: linear-gradient(135deg, rgba(0, 115, 230, 0.9), rgba(0, 86, 179, 0.9)), url('images/1ba72536c654aaa6a09052f03d2e3cba53c931c4.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.logo-container img {
    max-width: 200px;
    height: auto;
}

.training-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

/* Icon Styles */
.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.icon-large {
    width: 48px;
    height: 48px;
}

.icon-small {
    width: 16px;
    height: 16px;
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f8f9fa;
    margin-bottom: 15px;
}

.icon-wrapper svg {
    width: 30px;
    height: 30px;
    fill: #0073e6;
}

.icon-wrapper.primary {
    background: #0073e6;
}

.icon-wrapper.primary svg {
    fill: white;
}

.icon-wrapper.gold {
    background: #ffd700;
}

.icon-wrapper.gold svg {
    fill: #0073e6;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-card:hover .image-overlay {
    transform: translateY(0);
}

/* Responsive Images */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    .training-image {
        max-width: 100%;
    }
    
    .image-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
}

/* === MELHORIAS 2025 === */

/* Logo: sem margem inferior em contexto flex */
.logo-container {
    margin-bottom: 0;
}

/* Hero — pretítulo e hierarquia */
.hero-pretitle {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.hero-subtitle strong {
    color: white;
    font-size: 1.8rem;
}

.hero-benefits {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0 30px;
}

.hero-benefits span {
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.95rem;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-ghost {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    border: 2px solid rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

/* Stats bar */
.stats-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 25px 0;
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0073e6;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 4px;
}

/* Lead paragraph para secções */
.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Testimonials com cabeçalho */
.testimonials .container {
    display: block;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0073e6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

/* Features — nova secção com grid e ícones emoji */
.features-section {
    padding: 60px 0;
    background: white;
}

.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-icon-emoji {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Passos */
.steps-section {
    padding: 60px 0;
    background: white;
}

.steps-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0073e6;
}

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

.step-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-item .step-number {
    width: 50px;
    height: 50px;
    background: #0073e6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-item h3 {
    color: #0073e6;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.step-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Formador */
.trainer-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.trainer-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0073e6;
}

.trainer-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.trainer-content h3 {
    color: #0073e6;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.trainer-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.trainer-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    justify-content: center;
    flex-wrap: wrap;
}

.trainer-stat {
    text-align: center;
}

.trainer-stat strong {
    display: block;
    font-size: 2rem;
    color: #0073e6;
    font-weight: 700;
}

.trainer-stat span {
    font-size: 0.9rem;
    color: #666;
}

/* Sites criados */
.sites-section {
    padding: 60px 0;
    background: white;
}

.sites-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0073e6;
}

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

.site-type {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.site-type:hover {
    transform: translateY(-5px);
}

.site-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.site-type h3 {
    color: #0073e6;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.site-type p {
    color: #666;
    font-size: 0.95rem;
}

/* FAQ */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0073e6;
}

/* Secção de contacto */
.contact-section {
    padding: 60px 0;
    background: white;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0073e6;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.contact-form .btn-primary {
    border: none;
    cursor: pointer;
    width: 100%;
    font-family: inherit;
}

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

.contact-alternatives h3 {
    color: #0073e6;
    font-size: 1.3rem;
}

.btn-whatsapp {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.contact-note {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin-top: -10px;
}

/* Responsivo — novas secções */
@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .trainer-stats {
        gap: 20px;
    }

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

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

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

/* Print styles */
@media print {
    .header,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
    
    .hero {
        background: none !important;
        color: black !important;
    }
    
    .icon-wrapper {
        background: white !important;
        border: 1px solid #ddd;
    }
}
