@import url('https://fonts.googleapis.com/css2?family=Anek+Kannada:wght@400;700&display=swap');

body,
html {
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: 'Merriweather', serif;
    background-color: #FFFFFF66;
    /* Fundo neutro mais suave */
    color: #333;
    /* Texto escuro para contraste */
}

.intro-text,
.plans-section,
.discover-presets,
.portfolio-section,
.donation-section {
    text-align: center;
    /* Centraliza o texto em todas as seções */
}

.presets-section {
    padding: 20px;
    text-align: center;
}

.filter-item {
    margin-bottom: 30px;
}

.slider-container {
    width: 100%;
    position: relative;
    height: auto;
    max-width: 600px;
    margin: 0 auto;
}

.titleoffilter h4 {
    font-style: 'Inter', sans-serif;
    font-size: 20px;
    margin-top: 100px;
}

.slider-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.slider-container .before-image,
.slider-container .after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-container .after-image {
    clip-path: inset(0 50% 0 0);
    z-index: 1;
    transition: none;
}

.slider {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 30px;
    height: 30px;
    background-color: transparent;
    /* Make the center transparent */
    border: 3px solid rgba(255, 255, 255, 0.9);
    /* White border for the arc */
    border-radius: 50%;
    /* Keep it circular */
    cursor: ew-resize;
    transform: translate(-50%, -50%);
    /* Center horizontally and vertically */
    touch-action: none;
}

/* Increase visibility of "Antes" and "Depois" labels */
.before-label,
.after-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    /* Increase font size */
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    /* Stronger shadow for better visibility */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.slider-container:hover .before-label,
.slider-container:hover .after-label {
    opacity: 1;
}

.before-label {
    left: 15px;
    /* Adjust position */
}

.after-label {
    right: 15px;
    /* Adjust position */
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #007bff;
    border-color: #007bff;
}

.custom-control-label::before {
    border-radius: 0.25rem;
}

/* Centralize o PayPal */
/* Centralize o PayPal */
.paypal-section {
    display: flex;
    align-items: flex-start; /* Alinha os itens ao topo */
    text-align: left;
    margin: 40px auto;
    max-width: 800px;
    background-color: #FFFFFF66;
    padding: 20px;
    border-radius: 10px;
}

.paypal-section img {
    width: 1000px; /* Ajuste o tamanho conforme necessário */
    border-radius: 10px;
    margin-left:-650px;
}

.paypal-content {
    display: flex;
    flex-direction: column; /* Mantém os elementos empilhados */
    align-items: flex-start; /* Alinha tudo à esquerda */
    text-align: left;
    margin-left: 20px;
    margin-top: 100px;
    width: 100%; /* Ocupa toda a largura disponível */
}



.paypal-section p{
    font-style: 'Inter', sans-serif;
    font-size: 20px;
    color: #829BA3;
    
}

.paypal-section span{
    color: #A11F1E;
}

.paypal-section h1{
    font-style: 'Anek Kannada', sans-serif;
    font-size: 40px;
    color: #1c1c1c;
    font-weight: bold;
}

.text-content {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    flex: 1; /* Allow the text content to take up the remaining space */
}

.paypal-section h2 {
    font-style: 'Inter', sans-serif;
    color:#1C1C1C;
    margin-bottom: 20px;
    font-weight: lighter;
    font-size: 20px;
}

.paypal-section select {
    font-size: 16px;
    padding: 10px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
}

.paypal-section input[type="image"] {
    width: 200px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .filter-item {
        width: 100%;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination a {
    color: #333;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #ddd;
    margin: 0 4px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.pagination a:hover {
    background-color: #ddd;
}

.pagination a.active {
    background-color: #333;
    color: white;
    border: 1px solid #333;
}

.main-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-style: italic;
    font-size: 2rem;
    text-align: center;
    padding: 0 20px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0);
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
}

.image-overlay::before,
.image-overlay::after {
    content: '"';
    font-size: 3rem;
    color: black;
    position: absolute;
}

.image-overlay::before {
    top: -10%;
    left: -10%;
}

.image-overlay::after {
    bottom: -10%;
    right: -10%;
}

.author-text {
    font-size: 1.25rem;
    color: #555;
    font-weight: 300;
    margin-top: 1.5rem;
}

.container-fluid {
    padding: 0;
}

.plans-section {
    padding: 20px;
    display: flex;
    justify-content: center;
    /* Centraliza horizontalmente */
    align-items: center;
    /* Centraliza verticalmente */
    min-height: 100vh;
    /* Faz com que a seção ocupe a altura total da janela */
    flex-direction: column;
    /* Faz com que os itens se empilhem verticalmente */
}

.plans-section .row {
    justify-content: center;
    /* Centraliza os planos na linha */
}

.plans-section h2,
.plans-section p {
    text-align: center;
    /* Centraliza o título e o texto */
}


.plans-section hr {
    border-top: 2px solid #ddd;
    margin: 30px 0;
}



.donation-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.donation-section h2 {
    margin-bottom: 20px;
}

.preset-image-overlay {
    position: absolute;
    top: -30px;
    right: -30px;
    max-width: 200px;
}

.img-thumbnail {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border: 2px solid #ddd;
}

.main-preset-image {
    max-width: 400px;
    border-radius: 15px;
    border: none;
}

.main-content {
    flex: 1;
}

@media (max-width: 768px) {

    /* Ajustes para telas menores */
    .navbar-nav {
        flex-direction: column;
    }

    .navbar-nav .nav-item {
        margin: 5px 0;
    }

    .plans-section {
        padding: 10px;
    }

    .preset-image-overlay {
        max-width: 100px;
        top: -15px;
        right: -15px;
    }

    .main-preset-image {
        max-width: 100%;
        margin-bottom: 20px;
    }
}


/* Estilo para os links dos títulos */
h2 a {
    text-decoration: none;
    color: #000;
}

h2 a:hover {
    color: #6c757d;
    /* Cinza quando o cursor passa sobre o link */
}

/* Center the content box on smaller screens */
/* Center the div on smaller screens */
@media (max-width: 768px) {
    .centered-div-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        /* Full viewport height */
        text-align: center;
    }

    .centered-div-container div {
        width: 100%;
        max-width: 400px;
        /* Adjust as needed */
        padding: 20px;
    }
}

.centered-div-container img {
    width: 700px;
    height: 500px;
    align-items: center;
}

.form-control {
    background-color: #D7DFE2;
    color: #1C1C1C;
    border-radius: 20px;
    padding: 50px;
    box-sizing: border-box;
}
.paypal-content button {
    background: #829BA3;
    color: #fff;
    border: none;
    padding: 12px 18px;
    height: 35px;
    width: 267px;
    cursor: pointer;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: background 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none;
    font-family: 'Anek Kannada', sans-serif;
    text-align: center;
    line-height: 10px;
    margin-top: 50px;
}
.paypal-content button:hover {
    background: #000;
}

.contact {
    display: flex;
    flex-direction: column;
    padding: 100px 20px;
    margin-bottom: -570px;
    align-items: flex-start;
}

.contact h2 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #829BA3;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
    padding-left: 15%;
}

.contact p {
    font-family: 'Anek Kannada', sans-serif;
    font-size: 52px;
    font-weight: bold;
    color: #1c1c1c;
    margin: 0;
    line-height: 1.2;
    text-align: left;
    padding-left: 15%;
}

.contact h1 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #1c1c1c;
    line-height: 1.8;
    max-width: 600px;
    margin: -7% 0 -10px 60%;
    text-align: left;
    line-height: 1.2;
}

.contact-btn {
    font-family: 'Inter', sans-serif;
    font-size: 23px;
    font-weight: bold;
    color: #1c1c1c;
    line-height: 1.8;
    max-width: 600px;
    margin: 2% 0 0px 60%;
    text-align: left;
}


.highlight {
    color: #d32f2f;
    font-family: 'Inter', sans-serif;
}

.intro {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 100px;
    margin-bottom: 30px;
}

.intro > * {
    margin-bottom: -30px !important;
}

.intro h2 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    color: #829BA3;
}

.intro h1 {
    font-size: 35px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.finalbut button {
    background: #829BA3;
    color: #fff;
    border: none;
    padding: 12px 18px;
    height: 35px;
    width: 267px;
    cursor: pointer;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: background 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none;
    font-family: 'Anek Kannada', sans-serif;
    text-align: center;
    line-height: 10px;
    margin-top: 50px;
}

.finalbut button:hover {
    background: #000;
}

@media (max-width: 1280px) { 

    .paypal-section{
        display: center;
        max-width: 300px;
    }

    .paypal-section img {
        width: 800px;
    }
    


}
/* Para tablets grandes e laptops */
@media (max-width: 1024px) { 
    .paypal-section {
        display: flex;
        flex-direction: row; /* or column on mobile */
        justify-content: center;
        align-items: center;
        text-align: left;
        gap: 2rem; /* spacing between image and text */
        max-width: 100%; /* allow it to expand */
        padding: 2rem;
        margin: 0 auto;
        margin-left:500px;
        flex-wrap: wrap; /* ensures it wraps on smaller screens */
    }
    
    .paypal-section img {
        width: 200px;
        width: 100%;
        height: auto;
    }
    
    .paypal-content {
        max-width: 500px;
        text-align: center; /* centers text & buttons */
    }
    .paypal-section h2{
        text-align: left;
        font-size:15px;
    }
    .paypal-section p,h1{
        font-size: 20px ;
    }
    
.paypal-content select.form-control {
    width: 100%; /* Full width to match other block elements */
    max-width: 100%; /* Prevent overflow */
    margin: 1rem 0; /* Optional: space around */
    padding: 0.5rem;
    box-sizing: border-box; /* Includes padding in width */
    display: block; /* Ensures it behaves like h1/h2 */
}

}

.paypal-content select.form-control {
    width: 100%; /* Full width to match other block elements */
    max-width: 100%; /* Prevent overflow */
    margin: 1rem 0; /* Optional: space around */
    padding: 0.5rem;
    box-sizing: border-box; /* Includes padding in width */
    display: block; /* Ensures it behaves like h1/h2 */
}


/* Para tablets pequenos */
@media (max-width: 768px) {
    .paypal-section img {
        width: 400px;
        height: auto;
    }
    .paypal-section h2{
        text-align: left;
        font-size:10px;
    }
    .paypal-section p{
        font-size: 15px ;
    }
    .paypal-section h2{
        text-align: left;
        font-size:15px;
    }
    .paypal-section h1{
        font-size: 25px ;
    }
}
@media (max-width: 600px) {
@media (max-width: 600px) {
  body, html {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    width: 100% !important;
  }

  .paypal-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 auto !important;
    padding: 1rem !important;
    box-sizing: border-box !important;
    text-align: center !important;
    overflow: hidden !important;
  }

  .paypal-section img {
    width: 200px !important;
    height: auto !important;
    margin: 0 auto 1rem auto !important;
    display: block !important;
  }

  .paypal-content {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .paypal-content * {
    text-align: center !important;
    margin: 0 auto !important;
    display: block;
  }

  .form-control {
    width: 100% !important;
    max-width: 400px;
    margin: 1rem auto !important;
    padding: 0.75rem 1rem;
    font-size: 16px;
    border-radius: 20px;
    border: 1px solid #ccc;
    background-color: #e3e8ee;
  }

  .paypal-content button {
    padding: 0.75rem 1.5rem;
    font-size: 16px;
    border-radius: 20px;
    background-color: #5f7987;
    color: #fff;
    border: none;
    margin: 1rem auto;
    font-weight: bold;
    cursor: pointer;
    display: block;
  }
}


}



/* Para telemóveis pequenos */
@media (max-width: 480px) {
   

}

/* Para dispositivos muito pequenos (ex: relógios inteligentes) */
@media (max-width: 320px) { 
    /* Ajustes específicos */

}

