/* 
* Daniela Calantone - Microfisioterapia
* Paleta de cores: Verde e Rosa
*/

:root {
    --primary: #4caf50;      /* Verde principal */
    --primary-dark: #388e3c; /* Verde escuro */
    --primary-light: #c8e6c9; /* Verde claro */
    --secondary: #ff4081;    /* Rosa principal */
    --secondary-dark: #c60055; /* Rosa escuro */
    --secondary-light: #ff80ab; /* Rosa claro */
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border: #e0e0e0;
    --light: #f5f5f5;
    --dark: #333333;
    --gray: #f9f9f9;
    --text: #555555;
}

/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(to bottom right, var(--primary-light), var(--secondary-light));
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.section-padding {
    padding: 100px 0;
}

.title-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin-top: 20px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-secondary {
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-secondary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-link:hover {
    color: var(--secondary);
}

.btn-link:hover i {
    transform: translateX(5px);
}

.bg-light {
    background-color: rgba(255, 255, 255, 0.95) !important;
}

/* Sections com fundo transparente */
section:not(.bg-light) {
    background-color: rgba(255, 255, 255, 0.92);
}

/* Navbar e Footer com fundo branco sólido */
.navbar, .footer {
    background-color: var(--white) !important;
}

/* Ajuste nas cards para manter o fundo branco sólido */
.info-card, .treatment-card, .testimonial-content, .contact-info, .contact-form {
    background-color: #fff;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.navbar .brand-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
}

.navbar .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 10px 15px !important;
    position: relative;
    transition: color 0.3s ease;
}

.navbar .nav-link.active, 
.navbar .nav-link:hover {
    color: var(--secondary);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: width 0.3s ease;
    border-radius: 3px;
}

.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
    width: 70%;
}

.navbar .nav-link.active {
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 70px;
    overflow: hidden;
    background-color: #fff;
    min-height: 80vh; /* Garante altura mínima para o hero */
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    opacity: 0.3;
    z-index: 0;
}

.hero-section .row {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-section h1 {
    color: var(--dark);
    line-height: 1.3;
}

.hero-section h1 span {
    color: var(--primary);
}

.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    max-width: 70%;
    height: auto;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Sobre Section */
.therapist-image {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.experience-badge .years {
    font-size: 32px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

/* Microfisioterapia Section */
.info-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 32px;
    color: var(--primary);
}

/* Tratamentos Section */
.treatment-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.treatment-card .card-img {
    position: relative;
    overflow: hidden;
}

.treatment-card .card-img img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.treatment-card:hover .card-img img {
    transform: scale(1.1);
}

.treatment-card .card-body {
    padding: 25px;
}

/* Depoimentos Section */
.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-item {
    flex: 1 0 calc(33.333% - 30px);
    min-width: 280px;
}

.testimonial-content {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-10px);
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 72px;
    line-height: 0;
    color: var(--primary-light);
    font-family: 'Georgia', serif;
    opacity: 0.3;
}

.rating i {
    color: #ffc107;
    margin-right: 2px;
}

.client-info {
    margin-top: 20px;
    position: relative;
    padding-top: 20px;
}

.client-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.client-info h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.client-info span {
    color: var(--text);
    font-size: 14px;
}

/* FAQ Section */
.accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background-color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark);
    padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border);
}

.accordion-button::after {
    background-size: 16px;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 20px 25px;
    background-color: #fff;
    color: var(--text);
}

/* Contato Section */
.contact-info {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-item .icon i {
    font-size: 20px;
    color: var(--primary);
}

.contact-item .content h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.form-control, .form-select {
    height: 52px;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 15px;
}

.form-control:focus, .form-select:focus {
    box-shadow: none;
    border-color: var(--primary);
}

textarea.form-control {
    height: auto;
}

/* Footer */
.footer {
    background-color: #fff;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-info p {
    color: var(--text);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.social-icon i {
    font-size: 18px;
    color: var(--text);
    transition: all 0.3s ease;
}

.social-icon:hover i {
    color: white;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter-form .input-group {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.newsletter-form .form-control {
    height: 50px;
    padding-left: 20px;
    border: none;
    border-radius: 30px 0 0 30px;
}

.newsletter-form .btn {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 0 30px 30px 0;
    padding: 0 20px;
}

.copyright {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text);
    opacity: 0.8;
}

hr {
    margin: 40px 0;
    color: var(--border);
    opacity: 0.5;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    font-size: 20px;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.fade-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

.btn-primary {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.hero-section h1 {
    animation: fadeInUp 1s ease;
}

.hero-section p.lead {
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero-section .btn {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.hero-image img {
    animation: pulse 5s infinite;
}

.experience-badge {
    animation: pulse 3s infinite;
}

.title-line {
    position: relative;
    overflow: hidden;
}

.title-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: gradient 3s ease infinite;
}

/* Efeito de Hover no Tratamento */
.treatment-card .card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: all 0.5s ease;
}

.treatment-card:hover .card-img::after {
    opacity: 1;
}

/* Efeito de Digitação para o Hero */
.typed-cursor {
    opacity: 1;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Botão Flutuante */
.floating-btn {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Gradientes Animados */
.gradient-border {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary-light), var(--secondary-light));
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
    border-radius: 16px;
}

/* Efeito de Carregamento */
.loading-effect {
    position: relative;
    overflow: hidden;
}

.loading-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, 
                              transparent, 
                              rgba(255, 255, 255, 0.2), 
                              transparent);
    transform: skewX(-25deg);
    animation: loading 2s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }
    .navbar .nav-link {
        padding: 8px 10px !important;
    }
    .hero-section::before {
        right: -300px;
    }
    .testimonial-item {
        flex: 1 0 calc(50% - 30px);
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }
    .hero-section {
        min-height: auto;
        padding: 100px 0 50px;
    }
    .hero-image {
        margin-top: 40px;
        padding: 0 25%;
    }
    .hero-image img {
        max-height: 280px;
    }
    .experience-badge {
        right: 20px;
    }
    .title-line {
        margin: 20px auto;
    }
    .testimonial-item {
        flex: 1 0 100%;
    }
    .contact-info, .contact-form {
        padding: 30px;
    }
    .therapist-image {
        max-width: 65%;
        margin: 0 auto 50px;
    }
}

@media (max-width: 575.98px) {
    .section-padding {
        padding: 50px 0;
    }
    .navbar .brand-name {
        font-size: 20px;
    }
    .navbar .brand-subtitle {
        font-size: 10px;
    }
    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -40px auto 30px;
        max-width: 150px;
    }
}

/* Seção Formação - Timeline */
.timeline {
    position: relative;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.timeline-item {
    position: relative;
    padding-left: 45px;
    margin-bottom: 30px;
    border-left: 2px solid var(--primary);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item .date {
    position: absolute;
    left: -20px;
    top: 0;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.timeline-item .content {
    padding: 15px;
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.timeline-item .content h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 18px;
}

.timeline-item .content p {
    margin-bottom: 10px;
    color: var(--text-medium);
}

.timeline-item .badge {
    background-color: var(--secondary) !important;
}

/* Certificações */
.certifications-card {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}

.certification-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.certification-list li {
    display: flex;
    margin-bottom: 20px;
    background: var(--white);
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.certification-list li:last-child {
    margin-bottom: 0;
}

.certification-list li i {
    color: var(--primary);
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.certification-list li div {
    flex: 1;
}

.certification-list h5 {
    margin-bottom: 5px;
    color: var(--primary-dark);
    font-size: 17px;
}

.certification-list p {
    margin-bottom: 0;
    color: var(--text-medium);
    font-size: 14px;
}

/* Novos Depoimentos */
.testimonial-carousel {
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-item {
    margin: 0 15px;
}

.testimonial-content {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    margin-bottom: 20px;
}

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 45px;
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: var(--white) transparent;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
    color: var(--text-medium);
}

.rating i {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-left: 20px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
    border: 3px solid var(--primary);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 0;
    color: var(--primary-dark);
    font-weight: 600;
}

.author-info span {
    color: var(--text-light);
    font-size: 14px;
}

/* Cartão de Horários */
.hours-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--primary);
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.hours-card h4 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-size: 22px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.hours-card h4 i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 24px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 10px;
    border-bottom: 1px dashed var(--border);
    transition: background-color 0.2s ease;
}

.hours-list li:hover {
    background-color: rgba(76, 175, 80, 0.05);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    font-weight: 500;
    color: var(--text-medium);
}

.hours-list li span:last-child {
    font-weight: 700;
    color: var(--primary-dark);
    background-color: rgba(76, 175, 80, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Cartão de Formulário de Contato */
.contact-form-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--secondary);
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.contact-form-card h4 {
    color: var(--secondary-dark);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.contact-form-card p {
    color: var(--text-medium);
    margin-bottom: 25px;
    font-size: 15px;
}

.contact-form-card .form-control {
    padding: 12px 20px;
    height: auto;
    border-radius: 10px;
    border: 1px solid var(--border);
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    font-size: 15px;
    box-shadow: none;
}

.contact-form-card .form-control:focus {
    border-color: var(--secondary);
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form-card .form-control:hover {
    background-color: #f5f5f5;
}

.contact-form-card textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form-card .btn-primary {
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

.contact-form-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.contact-form-card .btn-primary:hover::before {
    left: 100%;
}

/* Cartões de Contato */
.contact-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    color: var(--white);
    font-size: 30px;
}

.contact-card h4 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.contact-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* Cartão do Mapa */
.map-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--primary);
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.map-card h4 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-size: 22px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.map-card h4 i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 24px;
}

.map-container {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
} 