/* Global Styles */
:root {
    --primary: #2c3e50;
    --secondary: #34495e;
    --accent: #e67e22;
    --light: #f8f9fa;
    --dark: #212529;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

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

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

/* Buttons */
.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d35400;
    border-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: var(--accent);
    border-color: var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #fff;
}

/* Page Header */
.page-header {
    background-color: var(--primary);
    color: #fff;
    padding: 6rem 0 4rem;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing Section (precos.html) */
.pricing-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.pricing-switch-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.pricing-switch-monthly {
    color: var(--accent);
}

.pricing-switch-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: 0 1rem;
}

.pricing-switch-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.pricing-switch-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .pricing-switch-slider {
    background-color: var(--accent);
}

input:checked + .pricing-switch-slider:before {
    transform: translateX(30px);
}

.pricing-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.pricing-card-header {
    background-color: var(--primary);
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.pricing-card.popular .pricing-card-header {
    background-color: var(--accent);
}

.pricing-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-card-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card-period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-card-body {
    padding: 2rem;
    background-color: #fff;
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-card-features li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.pricing-card-features li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
}

.pricing-card-features li.disabled {
    color: #adb5bd;
}

.pricing-card-features li.disabled:before {
    content: '\f00d';
    color: #dc3545;
}

.pricing-card-button {
    display: block;
    width: 100%;
    text-align: center;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    transform: rotate(45deg);
    background-color: var(--accent);
    color: #fff;
    padding: 0.5rem 3rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

/* FAQ Section (precos.html) */
.faq-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.faq-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 600;
    padding: 1.5rem;
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--accent);
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.accordion-body {
    padding: 1.5rem;
    background-color: #fff;
}

/* Contact Section (contato.html) */
.contact-section {
    padding: 0 0 5rem;
}

.contact-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #fff;
    padding: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(230, 126, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--accent);
    font-size: 1.2rem;
}

.contact-info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-info-content p, .contact-info-content a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--accent);
}

.contact-form-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.form-control {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--accent);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

.social-contact {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--accent);
    transition: all 0.3s ease;
}

.social-contact a:hover {
    background-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 5rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* CTA Section (both pages) */
.cta {
    padding: 6rem 0;
    background-color: var(--primary);
    color: #fff;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer (both pages) */
.footer {
    padding: 4rem 0 2rem;
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-title {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Homepage and Features Page Styles (if applicable) */
.hero {
    position: relative;
    padding: 6rem 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6c757d;
}

.hero-image {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.features, .feature-section {
    padding: 5rem 0;
}

.feature-section:nth-child(even) {
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.feature-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 2.5rem; /* Chose larger size for consistency with feature-section */
    margin-bottom: 1rem;
    position: relative;
}

.feature-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    bottom: -10px;
    left: 0;
}

.feature-text {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.feature-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.feature-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
}

.feature-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

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

.feature-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.testimonials {
    padding: 6rem 0;
    background-color: #f8f9fa;
}

.testimonial-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    position: relative;
    margin-top: 3rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    margin-top: 2.5rem;
    font-style: italic;
    color: #6c757d;
}

.testimonial-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-position {
    font-size: 0.9rem;
    color: var(--accent);
}

/* Media Queries */
@media (max-width: 991.98px) {
    .page-header {
        padding: 5rem 0 3rem;
    }
    .page-title {
        font-size: 2.5rem;
    }
    .pricing-card, .contact-card {
        margin-bottom: 2rem;
    }
    .hero, .features, .testimonials, .cta, .feature-section {
        padding: 4rem 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-image, .feature-img {
        margin-top: 2rem;
    }
    .feature-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .page-title {
        font-size: 2rem;
    }
    .pricing-card-price {
        font-size: 2.5rem;
    }
    .contact-form-title, .section-title, .cta-title, .feature-title {
        font-size: 1.75rem;
    }
    .map-container {
        height: 250px;
        margin-top: 2rem;
    }
    .hero-title {
        font-size: 2rem;
    }
}




/* Global Styles */
:root {
    --primary: #2c3e50;
    --secondary: #34495e;
    --accent: #e67e22;
    --light: #f8f9fa;
    --dark: #212529;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Login Section */
.login-section {
    padding: 8rem 0 5rem;
}

.login-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.login-header {
    background-color: var(--primary);
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.login-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

.login-body {
    padding: 2rem;
}

.form-control {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--accent);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-check-label {
    font-size: 0.9rem;
}

.forgot-password {
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: #d35400;
    text-decoration: underline;
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.login-divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.login-divider-text {
    padding: 0 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-login-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-login-btn i {
    margin-right: 0.5rem;
}

.social-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.social-login-btn.google:hover {
    color: #DB4437;
}

.social-login-btn.facebook:hover {
    color: #4267B2;
}

.register-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.register-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-link a:hover {
    color: #d35400;
    text-decoration: underline;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-title {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 991.98px) {
    .login-section {
        padding: 6rem 0 3rem;
    }
}

@media (max-width: 767.98px) {
    .login-title {
        font-size: 1.75rem;
    }
    .login-body {
        padding: 1rem;
    }
}


/* Global Styles */
:root {
    --primary: #2c3e50;
    --secondary: #34495e;
    --accent: #e67e22;
    --light: #f8f9fa;
    --dark: #212529;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-brand i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

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

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

/* Buttons */
.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d35400;
    border-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
    color: var(--accent);
    border-color: var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Register Section */
.register-section {
    padding: 8rem 0 5rem;
}

.register-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #fff;
}

.register-header {
    background-color: var(--primary);
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.register-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.register-subtitle {
    font-size: 1rem;
    opacity: 0.8;
}

.register-body {
    padding: 2rem;
}

.form-control {
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--accent);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-text {
    font-size: 0.85rem;
    color: #6c757d;
}

.form-check-label {
    font-size: 0.9rem;
}

.register-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.register-divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.register-divider-text {
    padding: 0 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.social-register {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-register-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-register-btn i {
    margin-right: 0.5rem;
}

.social-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.social-register-btn.google:hover {
    color: #DB4437;
}

.social-register-btn.facebook:hover {
    color: #4267B2;
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.login-link a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-link a:hover {
    color: #d35400;
    text-decoration: underline;
}

.plan-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.plan-option {
    flex: 1;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.plan-option.selected {
    border-color: var(--accent);
    background-color: rgba(230, 126, 34, 0.05);
}

.plan-option.selected .plan-name {
    color: var(--accent);
}

.plan-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.plan-option.selected .plan-icon {
    color: var(--accent);
}

.plan-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-period {
    font-size: 0.8rem;
    color: #6c757d;
}

.plan-popular {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-title {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Media Queries */
@media (max-width: 991.98px) {
    .register-section {
        padding: 6rem 0 3rem;
    }
    
    .plan-selector {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .register-title {
        font-size: 1.75rem;
    }
}